-
Notifications
You must be signed in to change notification settings - Fork 0
/
SlackKafkaProducer.py
85 lines (67 loc) · 2.65 KB
/
SlackKafkaProducer.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
import json
import os
import time
from config import Config
from confluent_kafka import Producer
from slack import WebClient
from slack.errors import SlackApiError
# Bot User OAuth Access Token
# used scopes: channels:history, channels:read, chat:write, im:history, mpim:history, users:read
token = os.environ["SLACK_BOT_TOKEN"]
# Slack API 초기화
sc = WebClient(token)
# Kafka Producer 만들기 "localhost:9092"
settings = {"bootstrap.servers": Config.MY_SERVER}
p = Producer(settings)
def acked(err, msg): # callback
if err is not None:
print("Failed to deliver message: {0}: {1}".format(msg.value(), err.str()))
else:
print("Message produced: {0}".format(msg.value())) # binary
channel = "C01FVD0QD42" # 아래 sc.conversations_list로 id를 확인
# channel_name = "일반"
# try:
# sc_response = sc.conversations_list(channel=channel)
# # for channel in sc_response["channels"]:
# # print(channel["name"])
# # if channel["name"] == channel_name:
# # channel_id = channel["id"]
# except SlackApiError as e:
# assert e.response["ok"] is False
# print("\t** FAILED: %s" % e.response["error"])
posts = {} # 켤 때마다 중복 메시지 받음, 파일에 저장하는 형식으로 하면 더 나음.
# 매 5초마다 메시지를 계속 읽어옴.
# ratelimited 에러가 발생하면, 시간대를 늘려야 함.
try:
time.sleep(5)
while True:
try:
sc_response = sc.conversations_history(channel=channel)
for msg in sc_response["messages"]:
if msg["ts"] not in posts: # 없는 메시지
posts[msg["ts"]] = True
if "bug" in msg["text"].lower(): # bug를 포함한 글임
print("Someone posted a bug...")
name = sc.users_info(user=msg["user"])["user"][
"name"
] # user id를 name으로 변환
data = {"USER": name, "TEXT": msg["text"]}
# 데이터 Consumer에게 전송
p.produce(
Config.SLACK_TOPID_ID,
value=json.dumps(data),
callback=acked,
)
p.poll(0.5)
else:
# 파일에 저장할 수도
continue
except SlackApiError as e:
assert e.response["ok"] is False
print("\t** FAILED: %s" % e.response["error"])
except Exception as e:
print(type(e))
print(dir(e))
finally:
print("Exiting...")
p.flush(100)