-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.py
524 lines (466 loc) · 18.8 KB
/
app.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
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
import os
import sys
import json
import base64
import signal
import threading
import contextlib
from datetime import datetime
from json import JSONDecodeError
from urllib.request import urlopen, Request, HTTPError
import sentry_sdk
from slack_bolt import App
from pydantic import ValidationError
from cachetools import cached, TTLCache
from slack_bolt.adapter.socket_mode import SocketModeHandler
from middleware.laas import jira_summary_generator
from middleware.laas.heuristic import outside_slack_jira_user_map
from middleware.laas.jira_operator import JiraOperator
from middleware.laas.jira_fields_schema import Issue, get_format_instructions
from middleware.laas.mimetype import get_mime_type_from_url, is_supported_mime_type
if os.getenv('DEBUG', False):
from dotenv import load_dotenv
load_dotenv()
# Initializes your app with your bot token and socket mode handler
app = App(token=os.environ['SLACK_BOT_TOKEN'])
slack_handler = SocketModeHandler(app_token=os.environ['SLACK_APP_TOKEN'], app=app)
class SlackCollection:
# FIXME:
workspace = 'wantedx.slack.com'
loading_emoji = 'loading'
class PICollection:
# FIXME:
workspace = 'wantedlab.atlassian.net'
project = 'PI'
trigger_emoji = 'pi_jira_gen'
laas_jira_hash = '8008b106b08d86b0af7a55d0ad18ca058aab88fc7e7a5945eedee7f16827d21e'
class SlackOperator:
def __init__(self, event, say, trigger_emoji):
self.event = event
self.say = say
self.item_ts = event['item']['ts']
self.item_channel = event['item']['channel']
self.item_user = event['item_user']
self.reaction_user = event['user']
self.emoji = trigger_emoji
# after set_conversation_data
self.thread_ts = None
self.messages = None
self.file_data = None
self.user_map = {
x['id']: {'real_name': x['real_name'], 'email': x['profile'].get('email')}
for x in get_all_slack_user_list() if not x['deleted']
}
def set_conversation_data(self):
"""
스레드의 모든 메시지를 가져와 정제합니다
https://laas.wanted.co.kr/docs/guide/api/api-preset#%EC%B6%94%EA%B0%80-%EB%A9%94%EC%8B%9C%EC%A7%80%EC%97%90-%EC%9D%B4%EB%AF%B8%EC%A7%80%EB%A5%BC-%ED%8F%AC%ED%95%A8%ED%95%9C-%ED%98%B8%EC%B6%9C
"""
messages = []
file_data = []
conversations = app.client.conversations_replies(
channel=self.item_channel,
ts=self.item_ts,
)
self.thread_ts = conversations["messages"][0].get("thread_ts")
# 모든 대화 메시지를 가져옵니다
for message in conversations["messages"]:
# Process each message in the thread
message_dt = datetime.fromtimestamp(float(message['ts'])).isoformat()
user_name = self.user_map.get(message['user'], {'real_name': 'Unknown'})['real_name']
text = f'{message_dt} {user_name}: """{message.get("text", "")}"""'
images = []
# conversation 에 대한 모든 첨부파일을 복제합니다.
for file in message.get('files', []):
private_file_url = file['url_private']
# 슬랙 파일 다운로드
headers = {'Authorization': f'Bearer {os.environ["SLACK_BOT_TOKEN"]}'}
req = Request(private_file_url, headers=headers)
try:
response = urlopen(req)
except HTTPError:
continue
content = response.read()
file_data.append(content)
# MIME 타입 확인
mime_type = response.getheader('Content-Type') or get_mime_type_from_url(private_file_url)
# 지원되는 형식인지 확인
if not is_supported_mime_type(mime_type):
# raise ValueError(f"Unsupported MIME type: {mime_type}")
continue
# Non-animated GIF인지 확인 (GIF에만 적용)
if mime_type == "image/gif" and b"NETSCAPE2.0" in content:
# raise ValueError("Animated GIFs are not supported.")
continue
# Base64 인코딩 수행
base64_image = base64.b64encode(content).decode('utf-8')
# 웹에서 사용할 수 있는 형식으로 반환
if base64_image:
images.append({
"type": "image_url",
"image_url": {"url": f"data:{mime_type};base64,{base64_image}"},
})
if images:
messages.append({
"role": "user",
"content": [{"type": "text", "text": text}, *images]
})
else:
messages.append({
"role": "user",
"content": text,
})
self.messages = messages
self.file_data = file_data
return True
@property
def link(self):
return f'https://{SlackCollection.workspace}/archives/{self.item_channel}/p{self.item_ts.replace(".", "")}{f"?thread_ts={self.thread_ts}" if self.thread_ts else ""}'
def check_gpt_response(self, hash, params, messages):
"""
GPT 응답이 올바른지 확인합니다.
이 단계는 LaaS 서버의 응답을 잘 받았는지 확인하는 단계입니다
"""
try:
gpt_response = jira_summary_generator(hash, params, messages)
except Exception as e:
self.say(
channel=self.reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": f'LaaS 서버에 요청하는 도중에 실패했습니다. 잠시 후 다시 시도해주세요. 동일한 문제가 계속 발생하면 관리자에게 문의해주세요.'
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f'Error Message: ```{e}``',
},
{
"type": "mrkdwn",
"text": f'<{self.link}|스레드 바로가기>',
}
]
}
],
)
raise e
try:
return gpt_response.json()['choices'][0]['message']['content']
except KeyError as e:
self.say(
channel=self.reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": f'Jira 이슈 생성에 실패했습니다.'
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f'너무 많은 글자수가 스레드에 있진 않은지 확인해 보세요.\nError Message: ```{gpt_response}```',
},
{
"type": "mrkdwn",
"text": f'<{self.link}|스레드 바로가기>',
}
]
}
],
)
raise e
def validate_gpt_response_json(self, gpt_response, say):
"""
GPT 응답이 올바른 JSON 형식인지 확인합니다.
이 단계는 요구사항에 맞게 JSON 응답을 받았는지 확인하는 단계입니다
"""
try:
gpt_metadata = json.loads(gpt_response)
return gpt_metadata
except JSONDecodeError as e:
say(
channel=self.reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": f'Jira 이슈 생성에 실패했습니다.'
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": gpt_response,
},
{
"type": "mrkdwn",
"text": f'GPT 가 생성한 내용을 지라로 전달할 수 없어서 실패했습니다. 지라를 생성하기에 앞서 스레드 요약이 충분한지 확인해보세요.',
},
{
"type": "mrkdwn",
"text": f'<{self.link}|스레드 바로가기>',
}
]
}
],
)
raise e
@cached(cache=TTLCache(maxsize=1, ttl=60 * 60 * 24))
def get_all_slack_user_list():
return app.client.users_list()['members']
@app.event("team_join")
def onboarding(event, say):
"""
워크스페이스에 누군가 새로 들어올 때마다 캐시 초기화
"""
get_all_slack_user_list.cache_clear()
def check_emoji(event, say, emoji):
"""
이미 스레드에 이모지, 즉 생성된 이슈가 있는지 확인합니다.
"""
item_channel = event['item']['channel']
item_ts = event['item']['ts']
reaction_user = event['user']
reactions = app.client.reactions_get(
channel=item_channel,
timestamp=item_ts,
)
jira_gen_count = sum(
d['count'] for d in reactions['message']['reactions']
if d['name'] == emoji
)
if jira_gen_count > 1:
say(
channel=reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": f'이미 지라 이슈가 생성되었습니다.'
},
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f'이미 :{emoji}: 이모지가 있어서 지라 이슈를 생성할 수 없습니다.'
' 히스토리가 이미 지라 티켓으로 저장되었으니 어사인을 변경하시거나, 스레드에서 논의를 지속하거나, 이모지를 모두 지우고 다시 시도해보세요.'
},
]
}
],
)
return True
return False
@contextlib.contextmanager
def loading_reaction(event):
"""
GPT를 처리하는 동안 UX를 위해
스레드에 loading 이모지를 추가합니다.
"""
channel = event['item']['channel']
item_ts = event['item']['ts']
try:
# Respond with an emoji directly to the thread
app.client.reactions_add(
channel=channel,
name=SlackCollection.loading_emoji,
timestamp=item_ts,
)
finally:
...
try:
yield
finally:
try:
# Remove thumbsup reaction
app.client.reactions_remove(
channel=channel,
name=SlackCollection.loading_emoji,
timestamp=item_ts,
)
finally:
...
def laas_jira(event, say, collection: PICollection):
"""
GPT 호출에 시간이 걸리기 때문에 스레드에서 처리합니다.
Lambda 에서 호출할 경우 FaaS를 사용하는 것이 좋습니다.
https://slack.dev/bolt-python/concepts#lazy-listeners
"""
# 성능을 위해 loading_reaction 의존성을 제거합니다.
with loading_reaction(event):
if check_emoji(event, say, collection.trigger_emoji):
return
slack = SlackOperator(event, say, collection.trigger_emoji)
if not slack.set_conversation_data():
return
gpt_response = slack.check_gpt_response(
collection.laas_jira_hash,
{'schema': get_format_instructions(Issue)},
slack.messages,
)
gpt_metadata = slack.validate_gpt_response_json(gpt_response, say)
reporter_email = slack.user_map.get(slack.item_user, {}).get('email') or outside_slack_jira_user_map(slack.item_user)
assignee_email = slack.user_map.get(slack.reaction_user, {}).get('email') or outside_slack_jira_user_map(slack.reaction_user)
try:
issue = Issue.model_validate(gpt_metadata)
except ValidationError as e:
slack.say(
channel=slack.reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Jira 이슈 생성에 실패했습니다."
}
},
{
"type": "section",
"text": {
"type": "plain_text",
"text": "이슈 타입별로 필수적인 필드가 있습니다. 필수 필드가 누락되지 않았는지 확인해보세요",
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f"<{slack.link}|스레드 바로가기>"
}
]
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f"Error Message: ```{str(e)}```"
}
]
},
]
)
raise e
jira = JiraOperator()
refined_fields = issue.refined_fields(
jira.get_user_id_from_email(reporter_email),
jira.get_user_id_from_email(assignee_email),
slack.link,
)
try:
jira_response = jira.safe_create_issues(refined_fields, slack.file_data)
except Exception as e:
slack.say(
channel=slack.reaction_user,
blocks=[
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Jira 이슈 생성에 실패했습니다."
}
},
{
"type": "section",
"text": {
"type": "plain_text",
"text": "Jira 설정이 변경되거나, 개발 오류일 수 있습니다.",
}
},
{
"type": "section",
"text": {
"type": "plain_text",
"text": "혹은 Jira 서버 오류로 인해 이슈 생성에 실패할 수 있습니다. 이런 경우 잠시 후 다시 시도해보세요.",
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f"<{slack.link}|스레드 바로가기>"
}
]
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": f"Error Message: ```{str(e)}```"
}
]
},
]
)
raise e
say(
channel=slack.item_channel,
blocks=issue.refined_blocks(jira_response, slack.item_user, slack.reaction_user, collection.workspace),
# 스레드가 없으면 스레드를 생성합니다.
thread_ts=slack.thread_ts or slack.item_ts,
)
@app.event("reaction_added")
def reaction(event, say):
"""
이모지에 따라 트리거되는 작업을 정의합니다.
"""
match event['reaction']:
case PICollection.trigger_emoji:
t = threading.Thread(target=laas_jira, args=(event, say, PICollection), daemon=False)
t.start()
def os_term_handler(signum, frame):
"""
이 함수는 운영 체제 시그널에 대한 핸들러입니다. 애플리케이션이 종료 시그널(SIGTERM)을 받으면 at_exit_handler() 함수를 호출합니다.
AWS 콘솔에서 ECS 중지 버튼을 클릭한 경우는 SIGTERM 을 호출합니다.
SIGTERM 이후 30초 동안 프로세스가 종료되지 않으면 SIGKILL 을 호출합니다.
try - finally 로직을 타지 않습니다.
"""
signame = signal.Signals(signum).name
print(f'SIGNAL received: {signame} ({signum})')
print('Frame:', frame)
# 진행 중인 모든 non-daemon thread를 종료합니다.
for thread in threading.enumerate():
if thread is threading.main_thread() or thread.daemon:
continue
print(f'Terminating thread: {thread.name}, daemon: {thread.daemon}')
thread.join()
else:
print('All non-daemon threads terminated')
# main thread인 slack_handler 를 종료합니다.
slack_handler.close()
sys.exit(128 + signum)
# Start your app
if __name__ == "__main__":
signal.signal(signal.SIGINT, os_term_handler)
signal.signal(signal.SIGTERM, os_term_handler)
# Sentry 등 초기화 코드가 있다면 여기에 작성합니다.
sentry_sdk.init(
dsn=os.environ['SENTRY_DSN'],
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
# We recommend adjusting this value in production.
traces_sample_rate=1.0,
server_name='wanted_jira_bolt',
# 세션 추적은 하지 않는다.
auto_session_tracking=False,
)
slack_handler.start()