-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialogue.py
294 lines (277 loc) · 13.7 KB
/
dialogue.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
#--------------------------------------------------------------------------------#
# File name:dialogue.py #
# Author:Kumo #
# Last edit time(Y-m-d):2018-06-08 #
# Description:To analyse the text sent by users and search for data in need, #
# finally an easy-to-read answer will be returned. #
#--------------------------------------------------------------------------------#
import config
def dialogue(user, word):
from lateinfo import tools, db2, hook
import json
res = ''
try:
category = tools.wordAnalyse(word)
# query for all trains that are monitored
if category == 1:
schdb = db2.schDb()
res =u''
for everyGroup in range(8):
trainList =[]
res += str(everyGroup)
res += u'\u7EC4:\n'
status, schall = schdb.querySchByGroup(everyGroup)
if status:
for everyTrain in schall:
if everyTrain['trainNum'] not in trainList:
trainList.append(everyTrain['trainNum'])
res +=' & '.join(trainList)
res +=u'\n'
else:
res +=u'\u7A7A\n'
# trainAll = []
# for every in schall:
# if every['trainNum'] not in trainAll:
# trainStr=every['trainNum']
# trainAll.append(trainStr)
# query for information of EMU
elif category in [2,13]:
res = hook.processEmuno(word[len(word)-4:len(word)])
# query for lating inforamtion of a train with its telecode
elif category == 4:
resdb = db2.resDb()
stadb = db2.staDb()
staTele = word[len(word)-3:len(word)]
resqueryStatus, traindata = resdb.getRes(word[0:len(word)-3], staTele, 15)
if resqueryStatus:
days = []
staqueryStatus, staData = stadb.searchByTele(staTele)
if staqueryStatus:
res = u'\u8f66\u6b21\uff1a'+traindata[0]["trainNum"] + u'\u0020\u5230\u7ad9\uff1a'+ staData['staCn'] + u'\u0020\u5e94\u5230\uff1a'+tools.int2str(traindata[0]['schTime'])
for every in traindata:
date = every["resTime"].strftime('%Y-%m-%d')
if len(days) and date == days[-1]:
pass
else:
res = res + u'\n\u65e5\u671f\uff1a'+date + u'\u0020\u5b9e\u5230\uff1a'+tools.int2str(every['actTime'])
days.append(date)
# if len(days) >=5:
# break
res = res + u'\n\u6570\u636e\u603b\u91cf\uff1a'+str(len(days))
else:
res = u'\u6570\u636e\u5e93\u5185\u6ca1\u6709\u8be5\u7ad9\u7684\u6570\u636e\uff1f'
else:
res = u'\u6b63\u665a\u70b9\u67e5\u8be2\uff1a\u7ad9\u70b9\u5728\u6570\u636e\u5e93\u627e\u4e0d\u5230'
# query for EMU category and sequence of D &G &C trains
elif category in [3,14]:
from emuinfo import emudb
if category ==3:
word = str.upper(word[6:len(word)])
else:
word = str.upper(word[2:len(word)])
myemudb = emudb.emuinfoDb()
myseqdb =emudb.emuseqDb()
status, emudata = myemudb.queryData(word)
if status:
# print 'status1'
if emudata['haveData'] ==1:
statusq =0
if emudata['sequence']:
statusq, seqdata = myseqdb.queryBySeqnum(emudata['sequence'])
# print 'havedata'
with open('emuinfo/stamap2.json', 'r') as fi:
stamap = json.load(fi)
with open('emuinfo/depmap.json', 'r') as fi:
depmap = json.load(fi)
stadb = db2.staDb()
status1, startSta = stadb.searchByTele(stamap[emudata['startSta']-1])
status2, endSta = stadb.searchByTele(stamap[emudata['endSta']-1])
# print stamap[emudata['startSta']-1], stamap[emudata['endSta']-1]
if status1 and status2:
res = u'\u8f66\u6b21\uff1a'+emudata['trainNo']+u'\n\u8f66\u578b\uff1a'+emudata['emuType']+u'\n\u59cb\u53d1\uff1a'+startSta['staCn']+u'\n\u7ec8\u5230\uff1a'+endSta['staCn']+u'\n\u52a8\u8f66\u6bb5\uff1a'+depmap[emudata['vehicleDep']-1]+u'\n\u5ba2\u8fd0\u6bb5\uff1a'+depmap[emudata['staffDep']-1]
else:
res = u'\u914d\u5c5e\u67e5\u8be2\uff1a\u7ad9\u70b9\u5728\u6570\u636e\u5e93\u627e\u4e0d\u5230'
if len(emudata['remark']):
res =res +u'\n\u5907\u6CE8\uFF1A' +emudata['remark']
# have sequence data
if statusq:
seqStr =''
for every in seqdata['seqTrains']:
seqStr =seqStr +every+'-'
res =res +u'\n\u4EA4\u8DEF\uFF1A' +seqStr[0:-1]
else:
res =res +u'\n\u4EA4\u8DEF\uFF1A\u672A\u67E5\u5230'
elif emudata['haveData'] ==2:
res =u'\u8f66\u6b21\uff1a' + emudata['trainNo'] +'\n' +emudata['remark']
else:
res = u'\u8f66\u6b21\uff1a'+emudata['trainNo']+u'\u5b58\u5728\uff0c\u4f46\u65e0\u6570\u636e'
else:
res = u'\u8f66\u6b21\u4e0d\u5b58\u5728\uff0c\u4e5f\u65e0\u6570\u636e'
# query for telecode of a station by pinyin
elif category in [5,15]:
if category ==5:
word = str.lower(word[6:len(word)])
else:
word = str.lower(word[2:len(word)])
stadb = db2.staDb()
staqueryStatus, staData = stadb.searchByPy(word)
if staqueryStatus:
res = u'\u67e5\u8be2\u7ed3\u679c\uff1a'
for every in staData:
res = res + u'\n\u7ad9\u540d\uff1a' + every['staCn'] + u'\u0020\u7535\u62a5\u7801\uff1a' + every['staTele']
else:
res = u'\u6ca1\u6709\u67e5\u5230\u76f8\u5173\u8f66\u7ad9\uff01'
# query for time table of a train that are monitored with Chinese!
elif category in [6,16]:
if category ==6:
word = str.upper(word[6:len(word)])
else:
word = str.upper(word[2:len(word)])
schqueryStatus, schList = db2.schDb().querySch(word)
if schqueryStatus:
stadb = db2.staDb()
res = u'\u67e5\u8be2\u7ed3\u679c\uff1a'
for every in schList:
staqueryStatus, staCn = stadb.searchByTele(every['arrSta'])
if staqueryStatus:
res = res + u'\n\u7ad9\u70b9\uff1a' + staCn['staCn'] + u'\u0020\u5230\u65f6\uff1a' + tools.int2str(every['arrTime'])
else:
res = res + u'\n\u7ad9\u70b9\uff1a' + every['arrSta'] + u'\u0020\u5230\u65f6\uff1a' + tools.int2str(every['arrTime'])
else:
res = u'\u6ca1\u6709\u8be5\u8f66\u6b21\u7684\u505c\u7ad9\u548c\u6b63\u665a\u70b9\u6570\u636e'
# query for lating inforamtion of a train with the station name with Chinese!
elif category in range(7,11):
staqueryStatus, sta = db2.staDb().searchByCn(word[category-5:len(word)].decode('utf8'))
if staqueryStatus:
resqueryStatus, traindata = db2.resDb().getRes(str.upper(word[0:category-5]), sta['staTele'], 16)
if resqueryStatus:
days = []
res = u'\u8f66\u6b21\uff1a'+traindata[0]["trainNum"] + u'\u0020\u5230\u7ad9\uff1a'+ sta['staCn'] + u'\u0020\u5e94\u5230\uff1a'+tools.int2str(traindata[0]['schTime'])
for every in traindata:
date = every["resTime"].strftime('%Y-%m-%d')
if len(days) and date == days[-1]:
pass
else:
res = res + u'\n\u65e5\u671f\uff1a'+date + u'\u0020\u5b9e\u5230\uff1a'+tools.int2str(every['actTime'])
days.append(date)
# if len(days) >=5:
# break
res = res + u'\n\u6570\u636e\u603b\u91cf\uff1a'+str(len(days))
else:
res = u'\u8be5\u8f66\u4e0d\u505c\u9760\u672c\u7ad9\u6216\u65e0\u6570\u636e'
else:
res = u'\u8be5\u7ad9\u53ef\u80fd\u4e0d\u5b58\u5728'
# ask for user's identify
elif category == 11:
userqueryStatus, userInfo = db2.userDb().findByName(user)
if userqueryStatus:
res = u'\u60A8\u7684\u8EAB\u4EFD\uFF1A' + userInfo['userIdentify'] + ' id : ' +str(userInfo['userId'])
else:
res = u'\u6CA1\u6709\u60A8\u7684\u7528\u6237\u6570\u636E\uFF01'
# query for timetable of a train (online)
elif category in [12,18]:
if category ==12:
word = str.upper(word[6:len(word)])
else:
word = str.upper(word[2:len(word)])
res = hook.getTrainArrival(word)
# add train arrival to schdb
elif category ==19:
userdb =db2.userDb()
userqueryStatus, userInfo = userdb.findByName(user)
if userqueryStatus:
res =u'\u6DFB\u52A0\u7ED3\u679C\uFF1A'
wordSpl =word.split('-')
trainNum = str.upper(wordSpl[0][2:])
if len(wordSpl) ==2:
groupNum = int(wordSpl[1])
else:
groupNum =2
trainSch =hook.trainData()
trainSch.setTrainNum(trainNum)
stadb =db2.staDb()
schdb =db2.schDb()
if trainSch.getTrainStrcode() in [0,2]:
res =u'\u6CA1\u6709\u8BE5\u8F66\u6B21\u4FE1\u606F\uFF01'
else:
schData =trainSch.getTrainTimetable()
for every in schData[0]:
if every['station_no'] =='01':
pass
else:
staQuery, staData =stadb.searchByCn(every['station_name'])
schdb.saveSch(trainNum, staData['staTele'], tools.str2int(every['arrive_time']), groupNum)
res =res +u'\n'+ every['station_name'] +every['arrive_time']
else:
res =u'\u6CA1\u6709\u60A8\u7684\u7528\u6237\u4FE1\u606F\uFF01'
elif category ==20:
userdb =db2.userDb()
userqueryStatus, userInfo = userdb.findByName(user)
# res =u'\u6DFB\u52A0\u7ED3\u679C\uFF1A'
if userqueryStatus:
schdb =db2.schDb()
deleteNum =schdb.deleteSch(str.upper(word[2:]))
res =u'\u5220\u9664\u6570\u91CF\uFF1A' +str(deleteNum)
else:
res =u'\u5BF9\u4E0D\u8D77\uFF0C\u60A8\u4E0D\u662F\u6307\u5B9A\u7528\u6237'
elif category ==21:
res =u'\u611F\u8C22\u60A8\u7684\u7559\u8A00\uFF0C\u6211\u4EEC\u4F1A\u5C3D\u5FEB\u56DE\u590D'
# an error occurs
elif category == 99:
res = 'tools error'
else:
res = u'\u683c\u5f0f\u6709\u8bef'
except Exception,Argument:
print Argument
res = 'dialogue error'
diadb = diaDb()
res = res.encode('utf8')
diadb.write(user, word, res)
return res
# the database of every text
class diaDb(object):
def __init__(self, address=config.databaseIp, port=config.databasePort):
from pymongo import MongoClient
self.__diaset = MongoClient(address, port).diadb.diaset
print 'diadb init done'
def write(self, user, word, reply):
import datetime
self.__diaset.insert_one({"time":datetime.datetime.now(), "user":user, "word":word, "reply":reply})
return 1
def read(self, startTime, endTime):
res = self.__diaset.find({"time": {"$gt":startTime ,"$lt":endTime}})
if res.count():
return 1, res
else:
return 0, []
def delete(self, user):
if user == '':
deleteObj = self.__diaset.delete_many({})
return deleteObj.deleted_count
else:
deleteObj = self.__diaset.delete_many({})
return deleteObj.deleted_count
def all(self):
res = self.__diaset.find({})
if res.count():
return 1, res
else:
return 0, []
# to save all the data in diaDb in json
def saveDiaData():
import json
import datetime
myset = diaDb()
status, res = myset.all()
diaList = []
now = datetime.datetime.now()
if status:
for every in res:
diaList.append({"time":every['time'].strftime('%Y-%m-%d-%H-%M-%S'), "user":every['user'], "word":every['word'], "reply":every['reply']})
with open('dia'+now.strftime('%Y%m%d')+'.json', 'w') as fo:
json.dump(diaList, fo)
print 'diaDb output Done'
else:
print 'diaDb No Data'
if __name__ == "__main__":
saveDiaData()