This repository was archived by the owner on Feb 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbot.py
132 lines (107 loc) · 3.86 KB
/
chatbot.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
import pyrebase
from app.model.message import Message
from app.service.chatbot import ChatbotEngine
engine = ChatbotEngine()
import time
config = {
"apiKey": "apiKey",
"authDomain": "guhaebom.firebaseapp.com",
"databaseURL": "https://guhaebom.firebaseio.com",
"storageBucket": "guhaebom.appspot.com",
"serviceAccount": "guhaebom-firebase-admin.json",
}
firebase = pyrebase.initialize_app(config)
# Get a reference to the auth service
auth = firebase.auth()
# Log the user in
# user = auth.sign_in_with_email_and_password("[email protected]", "tlfwkd5203!")
# Get a reference to the database service
db = firebase.database()
def ignore_first_call(fn):
called = False
def wrapper(*args, **kwargs):
nonlocal called
if called:
return fn(*args, **kwargs)
else:
called = True
return None
return wrapper
@ignore_first_call
def job_stream_handler(message):
print("-----------1 data--------------")
print(message["data"])
if message["data"] is None:
return
# isYou가 true인 경우에만 수행(사용자 인 경우)
if message["data"]["isYou"] == "true":
result, chat_type, add_process = engine.process(Message(message["data"]['sender'], message["data"]['message']))
now = time.localtime()
s = "%02d:%02d" % (now.tm_hour, now.tm_min)
data = {
"isYou": "false",
"timestamp": s,
"type": chat_type,
"sender": "구해봇",
"message": result
}
# Pass the user's idToken to the push method
results = db.child("job").push(data)
print("-----------push 결과--------------")
print(results)
if add_process:
print("-----------worker에 확정메시지전달--------------")
data = {
"isYou": "false",
"timestamp": s,
"type": "1",
"sender": "구해봇",
"message": "[구인, 3] 3명의 지원자가 신청하였습니다."
}
results = db.child("worker").push(data)
print("-----------push 결과--------------")
print(results)
@ignore_first_call
def worker_stream_handler(message):
print("-----------input2 data--------------")
print(message["data"])
if message["data"] is None:
return
if message["data"]["isYou"] == "true":
result, chat_type, add_process = engine.process(Message(message["data"]['sender'], message["data"]['message']))
now = time.localtime()
s = "%02d:%02d" % (now.tm_hour, now.tm_min)
data = {
"isYou": "false",
"timestamp": s,
"type": chat_type,
"sender": "구해봇",
"message": result
}
# Pass the user's idToken to the push method
results = db.child("worker").push(data)
print("-----------push 결과--------------")
print(results)
if add_process:
print("-----------job에 신청메시지 전달--------------")
data = {
"isYou": "false",
"timestamp": s,
"type": "1",
"sender": "구해봇",
"message": "신청하신 업무가 확정 완료 되었습니다. 감사합니다."
}
results = db.child("job").push(data)
print("-----------push 결과--------------")
print(results)
my_stream = db.child("job").stream(job_stream_handler)
my_stream2 = db.child("worker").stream(worker_stream_handler)
while True:
data = input("[{}] Type exit to disconnect: ".format('?'))
if data.strip().lower() == 'exit':
print('Stop Stream Handler')
if my_stream:
my_stream.close()
elif my_stream2:
my_stream2.close()
break