forked from eelzon/morgenbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
morgenbot.py
336 lines (276 loc) · 10.5 KB
/
morgenbot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
import os
import re
import sys
import traceback
import json
import datetime
import time
import random
import urllib2
from slacker import Slacker
from flask import Flask, request
app = Flask(__name__)
curdir = os.path.dirname(os.path.abspath(__file__))
os.chdir(curdir)
slack = Slacker(os.getenv('TOKEN'))
username = os.getenv('USERNAME', 'morgenbot')
icon_emoji = os.getenv('ICON_EMOJI', ':coffee:')
channel = os.getenv('CHANNEL', '#standup')
ignore_users = os.getenv('IGNORE_USERS', '[]')
init_greeting = os.getenv('INIT_GREETING', 'Good morning!')
start_message = os.getenv('START_MESSAGE', 'What did you work on yesterday? What are you working on today? What, if any, are your blockers?')
giphy = True if os.getenv('GIPHY', 'false').lower() == 'true' else False
commands = ['standup','start','cancel','next','skip','table','left','ignore','heed','ignoring','help']
users = []
topics = []
time = []
in_progress = False
current_user = ''
absent_users = []
def post_message(text, attachments=[]):
slack.chat.post_message(channel = channel,
text = text,
username = username,
parse = 'full',
link_names = 1,
attachments = attachments,
icon_emoji = icon_emoji)
def get_user(id):
user = slack.users.info(id).body
return user['user']['name']
def get_channel(id):
channel = slack.channels.info(id).body
return channel['channel']['name']
def init():
global users
global topics
global time
global in_progress
if len(users) != 0:
post_message('Looks like we have a standup already in process.')
return
users = standup_users()
topics = []
time = []
in_progress = True
post_message('%s, @channel! Please type !start when you are ready to stand up.' % init_greeting)
def start():
global time
if len(time) != 0:
post_message('But we\'ve already started!')
return
time.append(datetime.datetime.now())
post_message('Let\'s get started! %s\nWhen you\'re done, please type !next' % start_message)
next()
def cancel():
tabled()
post_message('Standup is cancelled. Bye!')
reset()
def done():
global time
time.append(datetime.datetime.now())
standup_time()
tabled()
post_message('Bye!')
reset()
def reset():
global users
global topics
global time
global in_progress
global current_user
del users[:]
del topics[:]
del time[:]
in_progress = False
current_user = ''
def standup_users():
global ignore_users
global absent_users
ignore_users_array = eval(ignore_users)
channel_id = '';
channel_name = channel.replace('#', '') # for some reason we skip the # in this API call
all_channels = slack.channels.list(1) # 1 means we skip any archived rooms
for one_channel in all_channels.body['channels']:
if one_channel['name'] == channel_name:
channel_id = one_channel['id']
standup_room = slack.channels.info(channel_id).body['channel']
standup_users = standup_room['members']
active_users = []
for user_id in standup_users:
user_name = slack.users.info(user_id).body['user']['name']
is_deleted = slack.users.info(user_id).body['user']['deleted']
if not is_deleted and user_name not in ignore_users_array and user_name not in absent_users:
active_users.append(user_name)
# don't forget to shuffle so we don't go in the same order every day!
random.shuffle(active_users)
return active_users
def next():
global users
global current_user
if len(users) == 0:
done()
else:
current_user = users.pop()
post_message('@%s, you\'re up' % current_user)
def standup_time():
if len(time) != 2: return
seconds = (time[1] - time[0]).total_seconds()
minutes = seconds / 60
post_message('That\'s everyone! Standup took us %d minutes.' % minutes)
def left():
if len(users) == 0:
post_message('That\'s everyone!')
else:
post_message('Here\'s who\'s left: @' + ', @'.join(users))
def ignore(user):
global ignore_users
global absent_users
active_users = standup_users()
if user == '':
post_message('Who should I ignore?')
return
user = user[1:]
if user not in active_users and user not in ignore_users and user not in absent_users:
post_message('I don\'t recognize that user.')
elif user in ignore_users or user in absent_users:
post_message('I\'m already ignoring that user.')
elif user in active_users:
absent_users.append(user)
post_message('I won\'t call on @%s again until I am told to using !heed <username>.' % user)
def heed(user):
global ignore_users
global absent_users
active_users = standup_users()
if user == '':
post_message('Who should I heed?')
return
user = user[1:]
if user not in active_users and user not in ignore_users and user not in absent_users:
post_message('I don\'t recognize that user.')
elif user in ignore_users:
post_message('We never call on that user. Try asking my admin to heed that username.')
elif user in active_users:
post_message('I\'m not ignoring that user.')
elif user in absent_users:
absent_users.remove(user)
post_message('I\'ll start calling on @%s again at the next standup.' % user)
def ignoring():
global ignore_users
global absent_users
if len(ignore_users) == 0 and len(absent_users) == 0:
post_message('We\'re not ignoring anyone.')
return
if len(ignore_users) != 0:
post_message('Here\'s who we never call on: ' + ignore_users)
if len(absent_users) != 0:
post_message('Here\'s who we\'re ignoring for now: ' + ', '.join(absent_users))
def skip():
post_message('Skipping @%s.' % current_user)
next()
def table(topic_user, topic):
global topics
channels = re.findall(r"<#(.*?)>", topic)
users = re.findall(r"<@(.*?)>", topic)
for channel in channels:
channel_name = get_channel(channel)
topic = topic.replace('<#%s>' % channel, '#%s' % channel_name)
for user in users:
user_name = get_user(user)
topic = topic.replace('<@%s>' % user, '@%s' % user_name)
post_message('@%s: Tabled.' % topic_user)
topics.append(str(topic))
def tabled():
if len(topics) == 0: return
post_message('Tabled topics:')
for topic in topics:
post_message('-%s' % topic)
def giphy(text):
url = 'http://api.giphy.com/v1/gifs/search?q=%s&api_key=dc6zaTOxFJmzC&limit=1' % urllib2.quote(text.encode("utf8"))
response = urllib2.urlopen(url)
data = json.loads(response.read())
if len(data['data']) == 0:
post_message('Not sure what "%s" is.' % text)
else:
attachments = [{
'fallback': text,
'title': text,
'title_link': data['data'][0]['url'],
'image_url': data['data'][0]['images']['fixed_height']['url']
}]
post_message('Not sure what "%s" is.' % text, json.dumps(attachments))
def help(topic=''):
if topic == '':
post_message('My commands are !standup, !start, !cancel, !next, !skip, !table, !left, !ignore, !heed, and !ignoring.\nAsk me "!help <command> to learn what they do.')
return
topic = topic[1:]
if topic == 'standup' or topic == '!standup':
post_message('Type !standup to initiate a new standup')
elif topic == 'start' or topic == '!start':
post_message('Type !start to get started with standup once everyone is ready')
elif topic == 'cancel' or topic == '!cancel':
post_message('Type !cancel if you\'d like to stop the standup entirely.')
elif topic == 'next' or topic == '!next':
post_message('Type !next to call on the next person when you\'re done standing up')
elif topic == 'skip' or topic == '!skip':
post_message('Type !skip to skip someone who isn\'t standing up that day')
elif topic == 'table' or topic == '!table':
post_message('Type !table <topic> to save a topic for later discussion. I\'ll list these for you when standup is over.')
elif topic == 'left' or topic == '!left':
post_message('Type !left to find out who is left in the standup')
elif topic == 'ignore' or topic == '!ignore':
post_message('Type !ignore <username> to temporarily skip a user during standup for a while')
elif topic == 'heed' or topic == '!heed':
post_message('Type !heed <username> to add an ignored user back, starting with the next standup')
elif topic == 'ignoring' or topic == '!ignoring':
post_message('Type !ignoring to find out who we\'re skipping over for standups')
else:
post_message('Not sure what "%s" is.' % topic)
if giphy:
post_message('/giphy %s' % topic)
@app.route("/", methods=['POST'])
def main():
# ignore message we sent
msguser = request.form.get("user_name", "").strip()
if msguser == username or msguser.lower() == "slackbot": return
text = request.form.get("text", "")
# ignore if it doesn't start with !
match = re.findall(r"!(\S+)", text)
if not match: return
command = match[0]
args = text.replace("!%s" % command, '')
command = command.lower()
if command not in commands:
if giphy:
giphy(text[1:])
else:
post_message('Not sure what "%s" is.' % command)
return json.dumps({ })
elif not in_progress and command != 'standup' and command != 'help' and command != 'ignore' and command != 'heed' and command != 'ignoring':
post_message('Looks like standup hasn\'t started yet. Type !standup.')
return json.dumps({ })
if command == 'standup':
init()
elif command == 'start':
start()
elif command == 'cancel':
cancel()
elif command == 'next':
next()
elif command == 'skip':
skip()
elif command == 'table':
table(msguser, args)
elif command == 'left':
left()
elif command == 'ignore':
ignore(args)
elif command == 'heed':
heed(args)
elif command == 'ignoring':
ignoring()
elif command == 'help':
help(args)
return json.dumps({ })
if __name__ == "__main__":
app.run(debug=True)