-
Notifications
You must be signed in to change notification settings - Fork 2
/
chatbot_daemon.py
310 lines (240 loc) · 13.1 KB
/
chatbot_daemon.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
import sys
import ChatBotModel
from connect import connect_database
import folium
from sql_model import *
import os
ROOT_DIR = os.getcwd()
FULL_DIR = os.path.join(ROOT_DIR, '.data')
def proc_help(bot, update):
gang.sendMessage('''사용 방법에 대한 설명입니다.\n
\n
지역코드\n
1:잠실지구, 2:광나루지구, 3:뚝섬지구,\n
4:잠원지구, 5:반포지구, 6:이촌지구,\n
7:여의도지구, 8:양화지구, 9:난지지구,\n
10:망원지구, 11:강서지구\n
\n
종목코드\n
1:Tennis, 2:Soccer, 3:Baseball,\n
4:Gateball, 5:Basketball, 6:Volleyball,\n
7:Badminton, 8:WaterLeisure, 9:Pool,\n
10:InlineSkate, 11:Jokgu\n
\n
입력방법\n
/원하는 지역코드_원하는 종목코드: 원하는 지역에 있는 종목의 시설들의 지도를 보여줍니다.\n
ex) /1_1\n
/시설의 id: 원하는 시설의 전화번호 및 요금을 안내합니다.\n
ex) /19\n
/help: 다시 한번 사용법에 대한 안내를 받습니다.\n
/stop: 사용을 종료합니다.''')
def proc_stop(bot, update):
gang.sendMessage('이용해주셔서 감사합니다.')
def proc_1_1(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=1).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 테니스장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_1 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_1)
map_1_1.save('./templates/map_1_1.html')
gang.sendMessage("<a href='http://13.125.121.105:5000/map_1_1'>MAP Link</a>", parse_mode="HTML")
def proc_1_2(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=2).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 축구장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_2 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_2)
map_1_2.save('./templates/map_1_2.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_2'>MAP Link</a>", parse_mode="HTML")
def proc_1_3(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=3).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 야구장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_3 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_3)
map_1_3.save('./templates/map_1_3.html')
gang.sendMessage("<a href='http://13.125.121.105:5000/map_1_3'>MAP Link</a>", parse_mode="HTML")
def proc_1_4(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=4).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 게이트볼장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_4 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_4)
map_1_4.save('./templates/map_1_4.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_4'>MAP Link</a>", parse_mode="HTML")
def proc_1_5(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=5).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 농구장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_5 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_5)
map_1_5.save('./templates/map_1_5.html')
gang.sendMessage("<a href='http://13.125.121.105:5000/map_1_5'>MAP Link</a>", parse_mode="HTML")
def proc_1_6(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=6).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 배구장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_6 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_6)
map_1_6.save('./templates/map_1_6.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_6'>MAP Link</a>", parse_mode="HTML")
def proc_1_7(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=7).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 배드민턴장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_7 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_7)
map_1_7.save('./templates/map_1_7.html')
gang.sendMessage("<a href='http://13.125.121.105:5000/map_1_7'>MAP Link</a>", parse_mode="HTML")
def proc_1_8(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=8).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 수상레져가 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_8 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_8)
map_1_8.save('./templates/map_1_8.html')
gang.sendMessage("<a href='http://13.125.121.105:5000/map_1_8'>MAP Link</a>", parse_mode="HTML")
def proc_1_9(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=9).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 수영장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_9 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_9)
map_1_9.save('./templates/map_1_9.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_9'>MAP Link</a>", parse_mode="HTML")
def proc_1_10(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=10).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 인라인스케이트장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_10 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_10)
map_1_10.save('./templates/map_1_10.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_10'>MAP Link</a>", parse_mode="HTML")
def proc_1_11(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(region_id=1, category_id=11).all()
if len(temp_data) == 0:
gang.sendMessage("해당되는 잠실지구에는 족구장이 없습니다. 다른 지역을 찾아주세요.")
else:
map_1_11 = folium.Map(location=[temp_data[0].latitude, temp_data[0].longitude], zoom_start=17)
for i in range(len(temp_data)):
folium.Marker([temp_data[i].latitude, temp_data[i].longitude], popup="id:{0}, 이름:{1}".format(temp_data[i].id, temp_data[i].name)).add_to(map_1_11)
map_1_11.save('./templates/map_1_11.html')
gang.sendMessage("<a href='http://13.124.61.113:5000/map1_11'>MAP Link</a>", parse_mode="HTML")
def proc_info_42(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=42).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_63(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=63).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_64(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=64).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_65(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=65).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_66(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=66).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_119(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=119).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_120(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=120).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_168(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=168).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_172(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=72).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
def proc_info_176(bot, update):
session = connect_database()
temp_data = session.query(Information).filter_by(id=176).all()
gang.sendMessage("""시설명:{0}\n
전화번호:{1}\n
요금안내:{2}\n""".format(temp_data[0].name, temp_data[0].tel, temp_data[0].fare))
gang = ChatBotModel.HangangBot()
gang.add_handler('help', proc_help)
gang.add_handler('stop', proc_stop)
#지도 보여주기
gang.add_handler('1_1', proc_1_1)
gang.add_handler('1_2', proc_1_2)
gang.add_handler('1_3', proc_1_3)
gang.add_handler('1_4', proc_1_4)
gang.add_handler('1_5', proc_1_5)
gang.add_handler('1_6', proc_1_6)
gang.add_handler('1_7', proc_1_7)
gang.add_handler('1_8', proc_1_8)
gang.add_handler('1_9', proc_1_9)
gang.add_handler('1_10', proc_1_10)
gang.add_handler('1_11', proc_1_11)
#선택 시설 안내
gang.add_handler('42', proc_info_42)
gang.add_handler('63', proc_info_63)
gang.add_handler('64', proc_info_64)
gang.add_handler('65', proc_info_65)
gang.add_handler('66', proc_info_66)
gang.add_handler('119', proc_info_119)
gang.add_handler('120', proc_info_120)
gang.add_handler('168', proc_info_168)
gang.add_handler('172', proc_info_172)
gang.add_handler('176', proc_info_176)
gang.start()