bots: Move contrib_bots to api/bots*.
This will make it convenient to include these bots in Zulip API releases on pypi. Fix #5009.
This commit is contained in:
parent
7531c4fb26
commit
894adb1e43
110 changed files with 36 additions and 27 deletions
0
bots/incrementor/__init__.py
Normal file
0
bots/incrementor/__init__.py
Normal file
30
bots/incrementor/incrementor.py
Normal file
30
bots/incrementor/incrementor.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
# See readme.md for instructions on running this code.
|
||||
|
||||
|
||||
class IncrementorHandler(object):
|
||||
|
||||
def __init__(self):
|
||||
self.number = 0
|
||||
self.message_id = None
|
||||
|
||||
def usage(self):
|
||||
return '''
|
||||
This is a boilerplate bot that makes use of the
|
||||
update_message function. For the first @-mention, it initially
|
||||
replies with one message containing a `1`. Every time the bot
|
||||
is @-mentioned, this number will be incremented in the same message.
|
||||
'''
|
||||
|
||||
def handle_message(self, message, client, state_handler):
|
||||
self.number += 1
|
||||
if self.message_id is None:
|
||||
result = client.send_reply(message, str(self.number))
|
||||
self.message_id = result['id']
|
||||
else:
|
||||
client.update_message(dict(
|
||||
message_id=self.message_id,
|
||||
content=str(self.number),
|
||||
))
|
||||
|
||||
|
||||
handler_class = IncrementorHandler
|
6
bots/incrementor/readme.md
Normal file
6
bots/incrementor/readme.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Incrementor bot
|
||||
|
||||
This is a boilerplate bot that makes use of the
|
||||
update_message function. For the first @-mention, it initially
|
||||
replies with one message containing a `1`. Every time the bot
|
||||
is @-mentioned, this number will be incremented in the same message.
|
Loading…
Add table
Add a link
Reference in a new issue