-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.py
More file actions
525 lines (481 loc) · 13.7 KB
/
app.py
File metadata and controls
525 lines (481 loc) · 13.7 KB
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
"""
Authors: Will Escamilla, Zack Edwards, Grace Miguel, Viviane Farnung
This is the main code for our slack bot
"""
import os
import random
import data
import datetime
import time
from slack_bolt import App, logger
from slack_bolt.oauth.internals import get_or_create_default_installation_store
from slack_sdk import WebClient
from slack_sdk.errors import SlackApiError
import requests
users = data.users_database
userClass = data.user
#our database
link = 'https://sheetdb.io/api/v1/7a4208wp8ee6d'
# Initializes your app with your bot token and signing secret
#what is a signing secret?
app = App(
token=os.environ.get("SLACK_BOT_TOKEN"),
signing_secret=os.environ.get("SLACK_SIGNING_SECRET")
)
# Listens to incoming messages that contain "hello"
"""
This function returns a default message for various inputs
"""
@app.message("!distract me")
def default_message(message, say):
# say() sends a message to the channel where the event was triggered
say(
{
"attachments": [
{
"color": "#f2c744",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Distraction Time!"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Please select a distraction <@{message['user']}>:*"
}
},
{
"type": "divider"
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Joke"
},
"action_id": "wants_joke"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Website"
},
"action_id": "wants_web"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Video"
},
"action_id": "wants_video"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Quote"
},
"action_id": "wants_quote"
}
]
}
],
}
]
}
)
@app.message("stress")
def stress_message(message, say):
say(
{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Time for a Break"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Hi <@{message['user']}>* :wave:"
}
},
{
"type": "context",
"elements": [
{
"type": "plain_text",
"text": "You seem to be a tad stressed. Stretch your legs and go for a walk!",
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "You seem a tad stressed. You're working so hard, it's time you take a break. May I suggest one of the following:"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "• Go for a walk \n • Meditate \n • Talk to a friend"
}
}
]
}
)
@app.message("!distract web")
def web_message(message, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'link':
answer = i['content']
break
say(
{
"attachments": [
{
"color": "#572dd6",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Relax on the web",
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Hey <@{message['user']}>!* You've been working so hard, here is a website to get your mind off work: {answer} "
}
}
]
}
]
}
)
@app.message("!distract joke")
def joke_message(message, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'joke':
answer = i['content']
break
say(
{
"attachments": [
{
"color": "#09610c",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Joke's on you!"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Hey <@{message['user']}>!* Here's the joke you requested: {answer}"
}
}
]
}
]
}
)
@app.message("!distract quote")
def quote_message(message, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'quote':
answer = i['content']
break
say(
{
"attachments": [
{
"color": "#f09d30",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Words of Wisdom",
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Hey <@{message['user']}>!* :herb: You've been working so hard, here is a quote to ease your mind: {answer}"
}
}
]
}
]
}
)
@app.message("!distract video")
def video_message(message, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link = link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'video':
answer = i['content']
break
say(
{
"attachments": [
{
"color": "#0000FF",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Grab Some Popcorn",
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"Hey <@{message['user']}>! :herb: You've been working so hard, here is a video to cool your eyeballs: {answer}"
}
}
]
}
]
}
)
@app.message("!distract exercise")
def exercise_message(message, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'exercise':
answer = i['content']
break
say(
{
"attachments": [
{
"color": "#4B0082",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Get Active",
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": f"*Hey <@{message['user']}>!* :herb: You've been working so hard, here is a exercise to keep the blood flowing: {answer}"
}
}
]
}
]
}
)
@ app.action("wants_joke")
def joke_requested(body, ack, say):
# Acknowledge the action
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'joke':
answer = i['content']
break
reply=f"*Okay <@{body['user']['id']}>, here's your joke:* " + answer
ack()
say(
{
"attachments": [
{
"color": "#f2c744",
"text": reply
}
]
}
)
@ app.action("wants_web")
def web_requested(body, ack, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'link':
answer = i['content']
break
#acknowledge the answer
reply=f"*Okay <@{body['user']['id']}>, here's your link:* " + answer
ack()
say(
{
"attachments":[
{
"color": "#f2c744",
"text": reply
}
]
}
)
@ app.action("wants_video")
def video_requested(body, ack, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'video':
answer = i['content']
break
#acknowledge the answer
reply=f"*Okay <@{body['user']['id']}>, here's your video:* " + answer
ack()
say(
{
"attachments":[
{
"color": "#f2c744",
"text": reply
}
]
}
)
@ app.action("wants_quote")
def quote_requested(body, ack, say):
r = requests.get(link).json()
number = random.randint(0,len(r)-10)
new_link=link+'?limit=10&offset='+str(number)
rows = requests.get(new_link).json()
for i in rows:
if i['type'] == 'quote':
answer = i['content']
break
#acknowledge the answer
reply=f"*Okay <@{body['user']['id']}>, here's your quote:* " + answer
ack()
say(
{
"attachments":[
{
"color": "#f2c744",
"text": reply
}
]
}
)
'''this is to send a scheduled message'''
@app.message("wake me up")
def say_hello(client, message):
# Unix Epoch time for September 30, 2020 11:59:59 PM
when_september_ends = time.time()+2
print(when_september_ends)
channel_id = message["channel"]
client.chat_scheduleMessage(
channel=channel_id,
post_at=when_september_ends,
text=" this is a scheduled message for 2 seconds after I send 'wake me up'"
)
when_september_ends = time.time()
@app.message("!set timer")
def waited_distraction(client, message):
today = datetime.datetime.now()
timestamp = (today - datetime.datetime(1970, 1, 1)).total_seconds()
timestamp+=14500 #this is one hour in the future
print(timestamp)
channel_id = message["channel"]
result = app.client.chat_scheduleMessage(
channel = channel_id,
text = "It's time to take a break",
post_at = timestamp
)
# #counts numbers of messages per user
# @app.message()
# def message_counter(message, say):
# conversations_history = []
# channel_id = "C01SKLL61DZ"
# try:
# # Call the conversations.history method using the WebClient
# # conversations.history returns the first 100 messages by default
# # These results are paginated, see: https://api.slack.com/methods/conversations.history$pagination
# result = client.conversations_history(channel=channel_id)
# conversation_history = result["messages"]
# # Print results
# logger.info("{} messages found in {}".format(len(conversation_history), id))
# except SlackApiError as e:
# logger.error("Error creating conversation: {}".format(e))
# for x in users:
# if message["user"] in x:
# current_user = message["user"]
# print(current_user)
# current_user.messageCount+1
# break
# if [x == len(users)-1] and message["user"] not in users:
# user = userClass(message["user"], 1)
# current_user = user
# if(current_user.messageCount >= 5):
# say(
# {
# "blocks" : [
# {
# "type": "header",
# "text": {
# "type": "plain_text",
# "text": "Stop talking so much!"
# }
# },
# {
# "type": "section",
# "text": {
# "type": "mrkdown",
# "text": f" Hey @<{message['user']}, your message count is {current_user.messageCount}. This is too much, you gotta chill out."
# }
# }
# ]
# }
# )
# Start your app
if __name__ == "__main__":
app.start(port=int(os.environ.get("PORT", 3000)))