-
Notifications
You must be signed in to change notification settings - Fork 21
/
ChatCheck.py
215 lines (201 loc) · 8.58 KB
/
ChatCheck.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
import json
import os
import pickle
import time
from wsgiref.simple_server import server_version
import requests
import simuse
from ChatClass import Version, json_dump, json_load, pickle_dump, pickle_load
def getallconfig():
config = json_load('config.clc')
return config
def checkversion():
url = 'http://124.222.165.166:19630/Update'
try:
res = requests.request('get', url=url, timeout=20)
res = json.loads(res.text)
except:
return None
now_version = int(Version().replace('.', ''))
server_version = int(res['version'].replace('.', ''))
if server_version > now_version:
return 1, res['version'], Version()
else:
return 0, Version()
def clcheck(filename, data, fromchat):
question_num = 0
answer_num = 0
allanswerlist = []
cldict = pickle_load('WordStock/' + filename)
for i in cldict:
question_num += 1
questioninfo = cldict[i]
answerlist = questioninfo['answer']
allanswerlist.extend(answerlist)
try:
for i in allanswerlist:
answer_num += 1
except:
pass
config = getallconfig()
Tagdict = config['tag']
group = filename[:-3]
try:
print('词库', group, '收集到问题', question_num, '个', ' 答案', answer_num, '个',
'Tag:{}'.format(' '.join(Tagdict[group])))
except:
print('词库', group, '收集到问题', question_num, '个', ' 答案', answer_num, '个')
if fromchat != 0:
nodedict = {
'senderId': data['qq'],
'time': int(time.time()),
'senderName': 'ChatLearning',
'messageChain': [{
'type': 'Plain',
'text': ''
}]
}
messagechain = nodedict['messageChain']
messagedict = messagechain[0]
try:
messagedict['text'] = '词库' + str(group) + '收集到问题' + str(
question_num) + '个' + ' 答案' + str(
answer_num) + '个' + '\nTag:{}'.format(' '.join(
Tagdict[group]))
except:
messagedict['text'] = '词库' + str(group) + '收集到问题' + str(
question_num) + '个' + ' 答案' + str(answer_num) + '个'
return nodedict
#simuse.Send_Message(data, fromchat, 2, '群'+str(group)+'收集到问题'+str(question_num)+'个'+' 答案'+str(answer_num)+'个', 1)
#time.sleep(1)
def main(data, fromchat):
filelist = os.listdir('WordStock')
cllist = []
nodelist = []
for i in filelist:
if i[-3:] == '.cl':
#print(i)
cllist.append(i)
#print(cllist)
for i in cllist:
try:
nodedict = clcheck(i, data, fromchat)
nodelist.append(nodedict.copy())
except:
pass
config = getallconfig()
learningtip = '记录功能:{}'
if config['learning'] == 1:
learningtip = learningtip.format('开启')
else:
learningtip = learningtip.format('关闭')
replytip = '回复功能:{}'
if config['reply'] == 1:
replytip = replytip.format('开启')
else:
replytip = replytip.format('关闭')
# voicereplytip = '文字转语音回复功能:{}'
# if config['voicereply'] == 1:
# voicereplytip = voicereplytip.format('开启')
# else:
# voicereplytip = voicereplytip.format('关闭')
golbetip = '全局模式:{}'
if config['sendmode'] == 1:
golbetip = golbetip.format('开启')
else:
golbetip = golbetip.format('关闭')
cosmatchtip = '问题余弦相似度计算:{}'
if config['cosmatch'] == 1:
cosmatchtip = cosmatchtip.format('开启')
else:
cosmatchtip = cosmatchtip.format('关闭')
atreplytip = '艾特回复:{}'
if config['atreply'] == 1:
atreplytip = atreplytip.format('开启')
else:
atreplytip = atreplytip.format('关闭')
replychancetip = '回复触发概率:{}%'.format(config['replychance'])
replywaittip = '回复等待时间:{:g}±{:g}秒'.format(config['replywait'][0],
config['replywait'][1])
replycdtip = '回复冷却时间:{}秒'.format(config['replycd'])
cosmatchingtip = '余弦相似度匹配率阈值:{}'.format(config['cosmatching'])
# voicereplychancetip = '语音回复触发概率:{}%'.format(config['voicereplychance'])
# try:
# synthesizertip = '训练集:{}'.format(config['synthesizer'])
# except:
# synthesizertip = '训练集:无'
mergetimetip = '总词库合成间隔:{}秒'.format(config['mergetime'])
intervaltip = '词库链间隔:{}秒'.format(config['interval'])
blackfreqtip = '黑名单容错次数:{}次'.format(config['blackfreq'])
tempmessagenumtip = '单个群最大消息缓存数:{}条'.format(config['tempmessagenum'])
botname = ''
for k in config['botname']:
botname+= k+' '
botnametip = f'bot昵称设定: {botname}'
replylengthtip = f'回复答案最大长度限制: {config["replylength"]}个字数'
typefreqtip = '回复阈值设定:\n'
singlereplytip = '指定群回复触发概率:\n'
# singlevoicereplytip = '指定群回复概率(语音):\n'
typefreqdict = config['typefreq']
replydict = config['singlereplychance']
# voicereplydict = config['singlevoicereplychance']
if replydict == {}:
singlereplytip = ''
# if voicereplydict == {}:
# singlevoicereplytip = ''
if typefreqdict == {}:
typefreqtip = ''
for i in typefreqdict:
typefreqtip = typefreqtip + '{}:{}次\n'.format(i, typefreqdict[i])
for i in replydict:
singlereplytip = singlereplytip + '群{}:{}%\n'.format(i, replydict[i])
# for i in voicereplydict:
# singlevoicereplytip = singlevoicereplytip + '群{}:{}%\n'.format(
# i, voicereplydict[i])
# check_version = checkversion()
# if check_version[0] == 1:
# versiontip = "已连接至ChatLearning服务器\n检测到有新版本:{}\n当前版本:{}".format(
# check_version[1], check_version[2])
# elif check_version[0] == 0:
# versiontip = "已连接至ChatLearning服务器\n当前已是最新版本:{}".format(
# check_version[1])
# else:
# versiontip = "未连接至ChatLearning服务器"
situation = learningtip + '\n' + replytip + '\n' + golbetip + '\n' +cosmatchtip+'\n'+atreplytip+'\n'+ replychancetip + '\n' + replywaittip + '\n' + replycdtip + '\n' +cosmatchingtip+ '\n' + mergetimetip + '\n' + intervaltip + '\n' + blackfreqtip + '\n' + tempmessagenumtip + '\n' + botnametip + '\n' + replylengthtip
# situation = learningtip + '\n' + replytip + '\n' + voicereplytip + '\n' + golbetip + '\n' +cosmatchtip+'\n'+atreplytip+'\n'+ replychancetip + '\n' + replywaittip + '\n' + replycdtip + '\n' +cosmatchingtip+'\n'+ voicereplychancetip + '\n' + synthesizertip + '\n' + mergetimetip + '\n' + intervaltip + '\n' + blackfreqtip + '\n' + tempmessagenumtip + '\n' + botnametip + '\n' + replylengthtip
situationchain = [{'type': 'Plain', 'text': situation}]
typefreq_message = [{'type': 'Plain', 'text': typefreqtip}]
siglereply_message = [{'type': 'Plain', 'text': singlereplytip}]
# singlevoicereply_message = [{'type': 'Plain', 'text': singlevoicereplytip}]
# version_message = [{'type': 'Plain', 'text': versiontip}]
situationnodedict = {
'senderId': data['qq'],
'time': int(time.time()),
'senderName': 'ChatLearning',
'messageChain': [{
'type': 'Plain',
'text': ''
}]
}
situationnodedict['messageChain'] = situationchain
nodelist.append(situationnodedict.copy())
situationnodedict['messageChain'] = typefreq_message
nodelist.append(situationnodedict.copy())
situationnodedict['messageChain'] = siglereply_message
nodelist.append(situationnodedict.copy())
# situationnodedict['messageChain'] = singlevoicereply_message
# nodelist.append(situationnodedict.copy())
# situationnodedict['messageChain'] = version_message
# nodelist.append(situationnodedict.copy())
if fromchat != 0:
sendmessagechain = [{'type': 'Forward', 'nodeList': ''}]
sendmessagedict = sendmessagechain[0]
sendmessagedict['nodeList'] = nodelist
simuse.Send_Message_Chain(data, fromchat, 2, sendmessagechain)
# print(
# situation, '\n' + typefreqtip + '\n' + singlereplytip + '\n' +
# singlevoicereplytip + '\n' + versiontip)
print(
situation, '\n' + typefreqtip + '\n' + singlereplytip)
return None
#os.system('pause')