forked from wfsyre/tribe-workout-bots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
slack_api.py
166 lines (146 loc) · 4.76 KB
/
slack_api.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
import os
import requests
from slackclient import SlackClient
def send_message(msg, channel="#bot-beta-testing", url='', bot_name='Workout-Bot V.1'):
slack_token = os.getenv('BOT_OAUTH_ACCESS_TOKEN')
sc = SlackClient(slack_token)
if url == '':
sc.api_call("chat.postMessage", channel=channel, text=msg, username=bot_name)
else:
sc.api_call("chat.postMessage", channel=channel, text=msg, username=bot_name, icon_url=url)
def send_debug_message(msg, bot_name='im dumb'):
send_message(msg, channel="#bot-debug", bot_name=bot_name)
def send_tribe_message(msg, channel="#bot-beta-testing", bot_name="Workout-Bot V.1"):
send_message(msg, channel, bot_name=bot_name)
def send_calendar_message(msg):
send_message(msg, channel="#bot-beta-testing", bot_name='Workout-Bot V.1')
def get_group_info():
url = "https://slack.com/api/users.list?token=" + os.getenv('BOT_OAUTH_ACCESS_TOKEN')
json = requests.get(url).json()
return json
def get_emojis():
url = 'https://slack.com/api/emoji.list?token=' + os.getenv('OAUTH_ACCESS_TOKEN')
json = requests.get(url).json()
return json
def open_im(user_id):
url = "https://slack.com/api/im.open?token=" + os.getenv('BOT_OAUTH_ACCESS_TOKEN') + "&user=" + user_id
json = requests.get(url).json()
return json
def create_poll(channel_id, title, options, ts, anon):
slack_token = os.getenv('BOT_OAUTH_ACCESS_TOKEN')
sc = SlackClient(slack_token)
actions = []
block = [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*" + title + "*"
},
"accessory": {
"type": "button",
"text": {
"type": "plain_text",
"text": "Delete Poll",
"emoji": True
},
"value": str(ts),
"action_id": "deletePoll:" + str(ts),
"style": "danger"
}
},
{
"type": "divider"
}
]
for i in range(0, len(options)):
block.append({
"type": "section",
"text": {
"type": "mrkdwn",
"text": options[i]
},
"accessory": {
"type": "button",
"text": {
"type": "plain_text",
"text": "Vote",
"emoji": True
},
"value": str(ts),
"action_id": "votePoll:" + str(i) + ":" + str(anon)
}
})
block.append({
"type": "divider"
})
block.append({
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "DM me the current results",
"emoji": True
},
"action_id": "dmPoll:" + str(ts),
"style": "primary"
},
{
"type": "button",
"text": {
"type": "plain_text",
"text": "Remind the slackers",
"emoji": True
},
"action_id": "remindPoll:" + str(ts),
"style": "danger"
}
]
})
print(block)
sc.api_call("chat.postMessage", channel=channel_id, blocks=block)
def send_categories(title, channel_id, categories):
slack_token = os.getenv('BOT_OAUTH_ACCESS_TOKEN')
sc = SlackClient(slack_token)
block = [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*" + title + "*"
}
}
]
for category in categories:
if len(categories[category]) > 0:
block.append({"type": "divider"})
block.append({
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*" + category + "*"
}
})
names = ""
for i in range(len(categories[category])):
names += str(i + 1) + ") " + categories[category][i] + "\n"
block.append({
"type": "section",
"text": {
"type": "plain_text",
"text": names
}
})
else:
block.append({"type": "divider"})
block.append({
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*" + category + "*"
}
})
print(block)
sc.api_call("chat.postMessage", channel=channel_id, blocks=block)