-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmiddleware.py
422 lines (373 loc) · 10.3 KB
/
middleware.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
import requests
import sys
# 本地服务的请求
def get_local_service_response(path,params):
print("网络请求")
url = "http://localhost:9999/otto"+path
response = requests.get(url, params)
print(response.text)
return response
# 获取发送者ID
def getSenderID():
return sys.argv[1]
# 推送消息
def push(imType,groupCode,userID,title,content):
path="/push"
params={
"imType":imType,
"groupCode":groupCode,
"userID":userID,
"title":title,
"content":content
}
get_local_service_response(path,params)
# 获取机器人名称
def name():
path="/name"
params={}
response=get_local_service_response(path,params)
return response.text
# 获取机器id
def machineId():
path="/machineId"
params={}
response=get_local_service_response(path,params)
return response.text
# 获取autMan版本
def version():
path="/version"
params={}
response=get_local_service_response(path,params)
return response.text
# 获取数据库数据
def get(key):
path="/get"
params={
"key":key
}
response=get_local_service_response(path,params)
return response.text
# 设置数据库数据
def set(key,value):
path="/set"
params={
"key":key,
"value":value
}
response=get_local_service_response(path,params)
return response.text
# 删除数据库数据
def delete(key):
path="/delete"
params={
"key":key
}
response=get_local_service_response(path,params)
return response.text
# 获取指定数据库指定key的值
def bucketGet(bucket,key):
path="/bucketGet"
params={
"bucket":bucket,
"key":key
}
response=get_local_service_response(path,params)
return response.text
# 设置指定数据库指定key的值
def bucketSet(bucket,key,value):
path="/bucketSet"
params={
"bucket":bucket,
"key":key,
"value":value
}
response=get_local_service_response(path,params)
return response.text
# 删除指定数据库指定key的值
def bucketDelete(bucket,key):
path="/bucketDelete"
params={
"bucket":bucket,
"key":key
}
response=get_local_service_response(path,params)
return response.text
# 获取指定数据库的所有什为value的keys
def bucketKeys(bucket,value):
path="/bucketKeys"
params={
"bucket":bucket,
"value":value
}
response=get_local_service_response(path,params)
# 使用逗号分隔字符串
return response.text.split(",")
# 获取指定数据库的所有的key集合
def bucketAllKeys(bucket):
path="/bucketAllKeys"
params={
"bucket":bucket
}
response=get_local_service_response(path,params)
# 使用逗号分隔字符串
return response.text.split(",")
# 通知管理员
def notifyMasters(content,imtypes):
path="/notifyMasters"
params={
"content":content,
"imtypes":",".join(imtypes),
}
get_local_service_response(path,params)
# 当前系统咖啡码激活状态
def coffee():
path="/coffee"
params={}
response=get_local_service_response(path,params)
return response.text=="true"
# 京东、淘宝、拼多多转链推广
def spread(msg):
path="/spread"
params={
"msg":msg
}
response=get_local_service_response(path,params)
return response.text
class Sender:
# 类的构造函数
def __init__(self, senderID):
self.senderID = senderID
# 获取发送者渠道
def getImtype(self):
path="/getImtype"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取发送者ID
def getUserID(self):
path="/getUserID"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取发送者昵称
def getUserName(self):
path="/getUserName"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取发送者头像
def getUserAvatarUrl(self):
path="/getUserAvatarUrl"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取发送者群号
def getChatID(self):
path="/getChatID"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取发送者群名称
def getChatName(self):
path="/getChatName"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 是否管理员
def isAdmin(self):
path="/isAdmin"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text=="true"
# 获取消息
def getMessage(self):
path="/getMessage"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 获取消息ID
def getMessageID(self):
path="/getMessageID"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text
# 撤回消息
def recallMessage(self,messageid):
path="/recallMessage"
params={
"senderid":self.senderID,
"messageid":messageid
}
get_local_service_response(path,params)
# 获取匹配的文本参数
def param(self,i):
path="/param"
params={
"senderid":self.senderID,
"index":i
}
response=get_local_service_response(path,params)
return response.text
# 回复文本消息
def reply(self,text):
path="/sendText"
params={
"senderid":self.senderID,
"text":text
}
get_local_service_response(path,params)
# 回复图片消息
def replyImage(self,imageUrl):
path="/sendImage"
params={
"senderid":self.senderID,
"imageurl":imageUrl
}
get_local_service_response(path,params)
# 回复语音消息
def replyVoice(self,voiceUrl):
path="/sendVoice"
params={
"senderid":self.senderID,
"voiceurl":voiceUrl
}
get_local_service_response(path,params)
# 回复视频消息
def replyVideo(self,videoUrl):
path="/sendVideo"
params={
"senderid":self.senderID,
"videourl":videoUrl
}
get_local_service_response(path,params)
# 等待用户输入,timeout为超时时间,单位为毫秒
def listen(self,timeout):
path="/listen"
params={
"senderid":self.senderID,
"timeout":timeout
}
response=get_local_service_response(path,params)
return response.text
# 修改用户内容重新送往机器人消息处理通道
def breakIn(self,content):
path="/breakIn"
params={
"senderid":self.senderID,
"content":content
}
get_local_service_response(path,params)
# 等待支付
def waitPay(self,exitcode,timeout):
path="/waitPay"
params={
"senderid":self.senderID,
"exitcode":exitcode,
"timeout":timeout # 超时时间,单位为毫秒
}
response=get_local_service_response(path,params)
return response.text
# 系统是否处于等待支付状态
def atWaitPay(self):
path="/atWaitPay"
params={
"senderid":self.senderID
}
response=get_local_service_response(path,params)
return response.text=="true"
# 添加好友至群聊
def groupInviteIn(self,friend,group):
path="/groupInviteIn"
params={
"senderid":self.senderID,
"friend":friend,
"group":group,
}
get_local_service_response(path,params)
# 群聊踢人
def groupKick(self,userid):
path="/groupKick"
params={
"senderid":self.senderID,
"userid":userid,
}
get_local_service_response(path,params)
# 群聊禁言
def groupBan(self,userid,timeout):
path="/groupBan"
params={
"senderid":self.senderID,
"userid":userid,
"timeout":timeout,
}
get_local_service_response(path,params)
# 群聊解除禁言
def groupUnban(self,userid):
path="/groupUnban"
params={
"senderid":self.senderID,
"userid":userid,
}
get_local_service_response(path,params)
# 群聊全员禁言
def groupWholeBan(self):
path="/groupWholeBan"
params={
"senderid":self.senderID,
}
get_local_service_response(path,params)
# 群聊全员解禁
def groupWholeUnban(self):
path="/groupWholeUnban"
params={
"senderid":self.senderID,
}
get_local_service_response(path,params)
# 群聊内发送公告
def groupNoticeSend(self,notice):
path="/groupNoticeSend"
params={
"senderid":self.senderID,
"notice":notice,
}
get_local_service_response(path,params)
# 获取当前处理流程的插件名
def getPluginName(self):
path="/getPluginName"
params={
"senderid":self.senderID,
}
response=get_local_service_response(path,params)
return response.text
# 获取当前处理流程的插件版本
def getPluginVersion(self):
path="/getPluginVersion"
params={
"senderid":self.senderID,
}
response=get_local_service_response(path,params)
return response.text
# 定时指令的相关操作
class Cron:
# 构造函数
def __init__(self, cronID):
self.cronID = cronID
# 获取cronID