-
Notifications
You must be signed in to change notification settings - Fork 0
/
trello.py
388 lines (296 loc) · 6.88 KB
/
trello.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
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
import os
import json
import requests
from twilio.rest import Client
from twilio.base.exceptions import TwilioRestException
from dotenv import load_dotenv
load_dotenv()
TRELLO_API_KEY = os.getenv("TRELLO_API_KEY")
TRELLO_TOKEN = os.getenv("TRELLO_TOKEN")
TRELLO_BOARD = os.getenv("TRELLO_BOARD_ID")
TWILIO_ACCOUNT_SID = os.getenv("TWILIO_ACCOUNT_SID")
TWILIO_AUTH_TOKEN = os.getenv("TWILIO_AUTH_TOKEN")
TWILIO_SYNC_SERVICE = os.getenv("TWILIO_SYNC_SID")
TWILIO_SYNC_MAP = os.getenv("TWILIO_SYNC_MAP_SID")
def get_list_id(list_name, board_id=None):
"""
Get the ID of the list name provided.
"""
if board_id:
url = f"https://api.trello.com/1/boards/{board_id}/lists"
else:
url = f"https://api.trello.com/1/boards/{TRELLO_BOARD}/lists"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
params=query
)
all_lists = json.loads(response.text)
for l in all_lists:
if l["name"] == list_name:
return l["id"]
return None
def get_label_id(label_name):
url = f"https://api.trello.com/1/boards/{TRELLO_BOARD}/labels"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
params=query
)
all_labels = json.loads(response.text)
for l in all_labels:
if l["name"] == label_name:
return l["id"]
return None
def get_field_id(field_name):
url = f"https://api.trello.com/1/boards/{TRELLO_BOARD}/customFields"
headers = {
"Accept": "application/json"
}
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
headers=headers,
params=query
)
all_fields = json.loads(response.text)
for l in all_fields:
if l["name"] == field_name:
return l["id"]
return None
def add_label_to_card(card_id, label_id):
"""
Adds a label to a card.
"""
url = f"https://api.trello.com/1/cards/{card_id}/idLabels"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'value': label_id
}
response = requests.request(
"POST",
url,
params=query
)
return response
def check_if_card_exists(phone_number):
"""
"""
card_id = get_trello_card_id(phone_number)
if card_id:
return True
else:
return False
def get_trello_card_id(phone_number):
"""
Gets the Trello Card ID for a phone number.
"""
client = Client(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN)
try:
response = client.sync \
.services(TWILIO_SYNC_SERVICE) \
.sync_maps(TWILIO_SYNC_MAP) \
.sync_map_items(phone_number) \
.fetch()
except TwilioRestException:
return None
return response
def get_card(card_id):
"""
Get a specific Trello card.
"""
url = f"https://api.trello.com/1/cards/{card_id}"
headers = {
"Accept": "application/json"
}
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
headers=headers,
params=query
)
return json.dumps(json.loads(response.text))
def remove_customer_from_sync_map(phone_number):
"""
Removes the Sync Map item for the customer.
"""
client = Client(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN)
sync_map_item = client.sync \
.services(TWILIO_SYNC_SERVICE) \
.sync_maps(TWILIO_SYNC_MAP) \
.sync_map_items(phone_number) \
.delete()
return sync_map_item
def get_cards_in_list(trello_list):
"""
Return all the cards for a specific Trello list.
"""
try:
list_id = get_list_id(trello_list)
assert list_id
except AssertionError:
msg = f"Could not find list: {trello_list}."
raise AssertionError(msg)
url = f"https://api.trello.com/1/lists/{list_id}/cards"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
params=query
)
return json.loads(response.text)
def add_customer_to_sync_map(phone_number, card_id):
"""
Adds a new customer entry to the Sync Map.
"""
client = Client(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN)
# Check if phone number exists in map.
try:
sync_map_item = client.sync \
.services(TWILIO_SYNC_SERVICE) \
.sync_maps(TWILIO_SYNC_MAP) \
.sync_map_items \
.create(key=phone_number, data={
"trello_card_id": card_id
})
except TwilioRestException as e:
sync_map_item = client.sync \
.services(TWILIO_SYNC_SERVICE) \
.sync_maps(TWILIO_SYNC_MAP) \
.sync_map_items(phone_number) \
.update(data={"trello_card_id": card_id})
return sync_map_item
def create_card_in_waitlist(title, desc, phone_number):
"""
Create a new customer card in the waitlist.
"""
url = "https://api.trello.com/1/cards"
trello_waitlist_id = get_list_id("Waitlist")
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'idList': trello_waitlist_id,
'name': title,
'desc': desc
}
response = requests.request(
"POST",
url,
params=query
)
card_id = json.loads(response.text)["id"]
# Create the Sync Map entry for phone number.
sync_item = add_customer_to_sync_map(phone_number, card_id)
return response
def update_card_description(card_id, desc):
url = f"https://api.trello.com/1/cards/{card_id}"
headers = {
"Accept": "application/json"
}
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'desc': desc
}
response = requests.request(
"PUT",
url,
headers=headers,
params=query
)
return response
def update_card_list(card_id, new_list):
"""
Assign a card to a new list.
"""
url = f"https://api.trello.com/1/cards/{card_id}"
headers = {
"Accept": "application/json"
}
try:
new_list_id = get_list_id(new_list)
assert new_list_id
except AssertionError:
msg = f"Could not find list: {new_list}"
raise AssertionError(msg)
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'idList': new_list_id
}
response = requests.request(
"PUT",
url,
headers=headers,
json=query
)
return response
def get_lists_on_board():
"""
Get all the of the lists on a board.
"""
url = f"https://api.trello.com/1/boards/{TRELLO_BOARD}/lists"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN
}
response = requests.request(
"GET",
url,
params=query
)
return response.text
def add_card_comment(card_id, comment_text):
url = f"https://api.trello.com/1/cards/{card_id}/actions/comments"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'text': comment_text
}
response = requests.request(
"POST",
url,
params=query
)
def update_custom_fields(card_id, field_name, value):
try:
custom_field_id = get_field_id(field_name)
assert custom_field_id
except AssertionError:
msg = f"Could not find field name: {field_name}"
raise AssertionError(msg)
url = f"https://api.trello.com/1/cards/{card_id}/customField/{custom_field_id}/item"
query = {
'key': TRELLO_API_KEY,
'token': TRELLO_TOKEN,
'modelType': 'card',
'value': {
'text': value
}
}
response = requests.request(
"PUT",
url,
json=query
)
return response