-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot-control-multiple.py
524 lines (373 loc) · 21.6 KB
/
bot-control-multiple.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
import cv2
import asyncio
import logging
import paddlehub as hub
from typing import Optional, Union
from wechaty_puppet import FileBox, ScanStatus # type: ignore
from wechaty import Wechaty, Contact
from wechaty.user import Message, Room, contact
logging.basicConfig(level=logging.INFO)
log = logging.getLogger(__name__)
# 定义paddlehub模型
model_anime = hub.Module(name='animegan_v2_shinkai_33', use_gpu=True)
model_art = hub.Module(name="stylepro_artistic")
# 将图片转换为动漫风格
def img_to_anime(img_name, img_path):
# 图片名保持不变
img_new_name = img_name
# 图片路径改变
img_new_path = './images-new/' + img_new_name
# 模型预测
result = model_anime.style_transfer(images=[cv2.imread(img_path)])
# 将新图片存储到新路径
cv2.imwrite(img_new_path, result[0])
return img_new_path
# 将第一张图片转换为第二张图片的风格
def img_to_art(img_name, img_path, img_art_path):
# 图片名保持不变
img_new_name = img_name
# 图片路径改变
img_new_path = './images-new/' + img_new_name
# 模型预测
result = model_art.style_transfer(images=[{'content': cv2.imread(img_path),'styles': [cv2.imread(img_art_path)]}])
# 将新图片存储到新路径
cv2.imwrite(img_new_path, result[0]['data'])
return img_new_path
class MyBot(Wechaty):
"""
listen wechaty event with inherited functions, which is more friendly for
oop developer
"""
def __init__(self):
super().__init__()
# 主人的contact
self.host_contact = None
# 所有好友的contact
self.friend_contacts = None
# 群聊的room
self.rooms = None
# 好友的权限以及功能
self.friend_allow = {}
# 群聊的权限以及功能
self.room_allow = {}
# 好友的图像信息
self.img = {}
# 群聊的图像信息
self.room_img = {}
async def on_message(self, msg: Message):
"""
listen for message event
"""
from_contact = msg.talker()
text = msg.text()
type = msg.type()
room = msg.room()
# 不处理群消息
if room is None:
# 识别主人
if text == '你好我的机器人' and self.host_contact is None:
# 记录主人的contact
self.host_contact = from_contact
# 列举所有好友的contact
friend_contacts = await self.Contact.find_all()
# 列举所有群
self.rooms = await self.Room.find_all()
# 过滤一些contact
self.friend_contacts = [contact for contact in friend_contacts if len(contact.contact_id) > 50]
# 初始化好友权限
self.friend_allow = {contact: [False, None] for contact in self.friend_contacts}
# 初始化群聊权限
self.room_allow = {room: [False, None] for room in self.rooms}
# [flag, img, img_name, img_path, img_new_name, img_new_path]
# 初始化好友的图像信息
self.img = {contact: [True, None, None, None, None, None] for contact in self.friend_contacts}
# 初始化群聊的图像信息
self.room_img = {room: [True, None, None, None, None, None] for room in self.rooms}
# 对主人开启权限
self.friend_allow[self.host_contact] = [True, None]
# 给主人发消息
conversation = self.host_contact
await conversation.ready()
await conversation.say('你好亲爱的主人,机器人目前的功能有:\n1 将图片转换为动漫风格\n2 收到两张图片,将第一张图片转换为第二张图片的风格并返回\n3 对好友开启机器人\n4 对好友关闭机器人\n5 对群聊开启机器人\n6 对群聊关闭机器人\n主人回复相应数字即可开启对应功能')
# 如果是主人的消息
if from_contact == self.host_contact:
conversation = self.host_contact
await conversation.ready()
if self.friend_allow[self.host_contact][1] == 3:
# 关闭功能
self.friend_allow[self.host_contact][1] = None
# 获取好友备注或昵称
friend_name = text
# 记录是否找到好友
is_find = False
# 查找好友
for contact in self.friend_contacts:
if friend_name == contact.payload.alias or friend_name == contact.name:
# 找到
is_find = True
# 对好友开启权限
self.friend_allow[contact] = [True, None]
# 给好友发消息
conversation_friend = contact
await conversation_friend.ready()
await conversation_friend.say('这是自动回复:你好,我是机器人,我的主人是Lovely-Pig,主人对你开启了机器人的功能')
await conversation_friend.say('这是自动回复:机器人目前的功能有:\n1 将图片转换为动漫风格\n2 收到两张图片,将第一张图片转换为第二张图片的风格并返回\n回复相应数字即可开启对应功能')
break
# 给主人反馈
if is_find:
await conversation.say(f'亲爱的主人,已对{friend_name}开启机器人功能')
if not is_find:
await conversation.say(f'亲爱的主人,{friend_name}不在您的好友列表里,“对好友开启机器人”功能已关闭')
if self.friend_allow[self.host_contact][1] == 4:
# 关闭功能
self.friend_allow[self.host_contact][1] = None
# 获取好友备注或昵称
friend_name = text
# 记录是否找到好友
is_find = False
# 查找好友
for contact in self.friend_contacts:
if friend_name == contact.payload.alias or friend_name == contact.name:
# 找到
is_find = True
# 对好友关闭权限
self.friend_allow[contact] = [False, None]
# 给好友发消息
conversation_friend = contact
await conversation_friend.ready()
await conversation_friend.say('这是自动回复:你好,我是机器人,我的主人是Lovely-Pig,主人对你关闭了机器人的功能')
break
# 给主人反馈
if is_find:
await conversation.say(f'亲爱的主人,已对{friend_name}关闭机器人功能')
if not is_find:
await conversation.say(f'亲爱的主人,{friend_name}不在您的好友列表里,“对好友关闭机器人”功能已关闭')
if self.friend_allow[self.host_contact][1] == 5:
# 关闭功能
self.friend_allow[self.host_contact][1] = None
# 获取群聊名称
room_name = text
# 记录是否找到群聊
is_find = False
# 查找群聊
for room in self.rooms:
if room_name == await room.topic():
# 找到
is_find = True
# 对群聊开启权限
self.room_allow[room] = [True, None]
# 给群聊发消息
conversation_room = room
await conversation_room.ready()
await conversation_room.say('这是自动回复:你们好,我是机器人,我的主人是Lovely-Pig,主人对群开启了机器人的功能')
await conversation_room.say('这是自动回复:机器人目前的功能有:\n1 将图片转换为动漫风格\n2 收到两张图片,将第一张图片转换为第二张图片的风格并返回\n回复相应数字即可开启对应功能')
break
# 给主人反馈
if is_find:
await conversation.say(f'亲爱的主人,已对{room_name}开启机器人功能')
if not is_find:
await conversation.say(f'亲爱的主人,{room_name}不在您的群聊列表里,“对群聊开启机器人”功能已关闭')
if self.friend_allow[self.host_contact][1] == 6:
# 关闭功能
self.friend_allow[self.host_contact][1] = None
# 获取群聊名称
room_name = text
# 记录是否找到群聊
is_find = False
# 查找群聊
for room in self.rooms:
if room_name == await room.topic():
# 找到
is_find = True
# 对群聊开启权限
self.room_allow[room] = [False, None]
# 给群聊发消息
conversation_room = room
await conversation_room.ready()
await conversation_room.say('这是自动回复:你们好,我是机器人,我的主人是Lovely-Pig,主人对群关闭了机器人的功能')
break
# 给主人反馈
if is_find:
await conversation.say(f'亲爱的主人,已对{room_name}关闭机器人功能')
if not is_find:
await conversation.say(f'亲爱的主人,{room_name}不在您的群聊列表里,“对群聊关闭机器人”功能已关闭')
if text == '1':
self.friend_allow[self.host_contact][1] = 1
await conversation.say('亲爱的主人,您已开启“将图片转换为动漫风格”功能,请发给我一张图片')
if text == '2':
self.friend_allow[self.host_contact][1] = 2
self.img[self.host_contact][1] = 0
await conversation.say('亲爱的主人,您已开启“收到两张图片,将第一张图片转换为第二张图片的风格并返回”功能,请发给我第一张图片')
if text == '3':
self.friend_allow[self.host_contact][1] = 3
await conversation.say('亲爱的主人,您已开启“对好友开启机器人”功能,请指明是哪一个好友')
if text == '4':
self.friend_allow[self.host_contact][1] = 4
await conversation.say('亲爱的主人,您已开启“对好友关闭机器人”功能,请指明是哪一个好友')
if text == '5':
self.friend_allow[self.host_contact][1] = 5
await conversation.say('亲爱的主人,您已开启“对群聊开启机器人”功能,请指明是哪一个群')
if text == '6':
self.friend_allow[self.host_contact][1] = 6
await conversation.say('亲爱的主人,您已开启“对群聊关闭机器人”功能,请指明是哪一个群')
# 好友的消息
if from_contact in self.friend_contacts and from_contact != self.host_contact:
# 如果好友有权限
if self.friend_allow[from_contact][0]:
conversation = from_contact
await conversation.ready()
if text == '1':
self.friend_allow[from_contact][1] = 1
await conversation.say('这是自动回复:你已开启“将图片转换为动漫风格”功能,请发给我一张图片')
if text == '2':
self.friend_allow[from_contact][1] = 2
self.img[from_contact][1] = 0
await conversation.say('这是自动回复:你已开启“收到两张图片,将第一张图片转换为第二张图片的风格并返回”功能,请发给我第一张图片')
# 如果消息类型是图片
if type == Message.Type.MESSAGE_TYPE_IMAGE:
# 如果有权限
if from_contact in self.friend_contacts and self.friend_allow[from_contact][0]:
# 判断功能
if self.friend_allow[from_contact][1] == 1:
# 关闭功能
self.friend_allow[from_contact][1] = None
conversation = from_contact
await conversation.ready()
await conversation.say('这是自动回复:正在飞速处理中...')
# 将msg转换为file_box
file_box = await msg.to_file_box()
# 获取图片名
img_name = file_box.name
# 图片保存的路径
img_path = './images/' + img_name
# 将图片保存到文件中
await file_box.to_file(file_path=img_path, overwrite=True)
# 调用函数,获取图片新路径
img_new_path = img_to_anime(img_name, img_path)
# 从文件中加载图片到file_box
file_box_new = FileBox.from_file(img_new_path)
await conversation.say(file_box_new)
if self.friend_allow[from_contact][1] == 2:
# 记录是否收到第二张图片
self.img[from_contact][0] = not self.img[from_contact][0]
# 如果功能是开启的
if self.img[from_contact][1] == 0:
# 设置为已收到一张图片
self.img[from_contact][1] = 1
# 将msg转换为file_box
file_box = await msg.to_file_box()
# 获取图片名
self.img[from_contact][2] = file_box.name
# 图片保存的路径
self.img[from_contact][3] = './images/' + self.img[from_contact][2]
# 将图片保存到文件中
await file_box.to_file(file_path=self.img[from_contact][3], overwrite=True)
conversation = from_contact
await conversation.ready()
await conversation.say('这是自动回复:请发给我第二张图片')
# 判断是否是第二张图片
if self.img[from_contact][1] == 1 and self.img[from_contact][0]:
# 关闭功能
self.img[from_contact][1] = None
conversation = from_contact
await conversation.ready()
await conversation.say('这是自动回复:正在飞速处理中...')
# 将msg转换为file_box
file_box_art = await msg.to_file_box()
# 获取图片名
self.img[from_contact][4] = file_box_art.name
# 图片保存的路径
self.img[from_contact][5] = './images/' + self.img[from_contact][4]
# 将图片保存到文件中
await file_box_art.to_file(file_path=self.img[from_contact][5], overwrite=True)
# 调用函数,获取图片新路径
img_new_path = img_to_art(self.img[from_contact][2], self.img[from_contact][3], self.img[from_contact][5])
# 从文件中加载图片到file_box
file_box_new = FileBox.from_file(img_new_path)
await conversation.say(file_box_new)
# 如果群聊有权限
if room is not None and self.room_allow[room][0]:
conversation = room
await conversation.ready()
if text == '1':
self.room_allow[room][1] = 1
await conversation.say('这是自动回复:已开启“将图片转换为动漫风格”功能,请发给我一张图片')
if text == '2':
self.room_allow[room][1] = 2
self.room_img[room][1] = 0
await conversation.say('这是自动回复:已开启“收到两张图片,将第一张图片转换为第二张图片的风格并返回”功能,请发给我第一张图片')
# 如果消息类型是图片
if type == Message.Type.MESSAGE_TYPE_IMAGE:
# 判断功能
if self.room_allow[room][1] == 1:
# 关闭功能
self.room_allow[room][1] = None
conversation = room
await conversation.ready()
await conversation.say('这是自动回复:正在飞速处理中...')
# 将msg转换为file_box
file_box = await msg.to_file_box()
# 获取图片名
img_name = file_box.name
# 图片保存的路径
img_path = './images/' + img_name
# 将图片保存到文件中
await file_box.to_file(file_path=img_path, overwrite=True)
# 调用函数,获取图片新路径
img_new_path = img_to_anime(img_name, img_path)
# 从文件中加载图片到file_box
file_box_new = FileBox.from_file(img_new_path)
await conversation.say(file_box_new)
if self.room_allow[room][1] == 2:
# 记录是否收到第二张图片
self.room_img[room][0] = not self.room_img[room][0]
# 如果功能是开启的
if self.room_img[room][1] == 0:
# 设置为已收到一张图片
self.room_img[room][1] = 1
# 将msg转换为file_box
file_box = await msg.to_file_box()
# 获取图片名
self.room_img[room][2] = file_box.name
# 图片保存的路径
self.room_img[room][3] = './images/' + self.room_img[room][2]
# 将图片保存到文件中
await file_box.to_file(file_path=self.room_img[room][3], overwrite=True)
conversation = room
await conversation.ready()
await conversation.say('这是自动回复:请发给我第二张图片')
# 判断是否是第二张图片
if self.room_img[room][1] == 1 and self.room_img[room][0]:
# 关闭功能
self.room_img[room][1] = None
conversation = room
await conversation.ready()
await conversation.say('这是自动回复:正在飞速处理中...')
# 将msg转换为file_box
file_box_art = await msg.to_file_box()
# 获取图片名
self.room_img[room][4] = file_box_art.name
# 图片保存的路径
self.room_img[room][5] = './images/' + self.room_img[room][4]
# 将图片保存到文件中
await file_box_art.to_file(file_path=self.room_img[room][5], overwrite=True)
# 调用函数,获取图片新路径
img_new_path = img_to_art(self.room_img[room][2], self.room_img[room][3], self.room_img[room][5])
# 从文件中加载图片到file_box
file_box_new = FileBox.from_file(img_new_path)
await conversation.say(file_box_new)
async def on_login(self, contact: Contact):
print(f'user: {contact} has login')
async def on_scan(self, status: ScanStatus, qr_code: Optional[str] = None,
data: Optional[str] = None):
contact = self.Contact.load(self.contact_id)
print(f'user <{contact}> scan status: {status.name} , '
f'qr_code: {qr_code}')
bot: Optional[MyBot] = None
async def main():
"""doc"""
# pylint: disable=W0603
global bot
bot = MyBot()
await bot.start()
asyncio.run(main())