forked from LTEnjoy/easyChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_auto_wechat.py
387 lines (312 loc) · 14.2 KB
/
ui_auto_wechat.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
import time
import uiautomation as auto
import subprocess
import numpy as np
import pyperclip
import os
import pyautogui
from PIL import ImageGrab
from clipboard import setClipboardFiles
from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QMimeData, QUrl
from typing import List
from wechat_locale import WeChatLocale
# 鼠标移动到控件上
def move(element):
x, y = element.GetPosition()
auto.SetCursorPos(x, y)
# 鼠标快速点击控件
def click(element):
x, y = element.GetPosition()
auto.Click(x, y)
# 鼠标右键点击控件
def right_click(element):
x, y = element.GetPosition()
auto.RightClick(x, y)
# 鼠标快速点击两下控件
def double_click(element):
x, y = element.GetPosition()
auto.SetCursorPos(x, y)
element.DoubleClick()
# 微信的控件介绍。注意"depth"是直接调用auto进行控件搜索的深度(见函数内部代码示例)
# 以群名“测试”为例:
# 左侧聊天列表“测试”群 Name: '测试' ControlType: ListItemControl depth: 10
# 左侧聊天列表“测试”群 Name: '测试' ControlType: ButtonControl depth: 12
# 进入“测试”群界面之后上方的群名 Name: '测试' ControlType: ButtonControl depth: 14
# “测试”群界面的内容框 Name: '消息' ControlType: ListControl depth: 12
# 聊天界面的聊天记录按钮 Name: '聊天记录' ControlType: ButtonControl depth: 14
# 聊天记录界面的图片按钮 Name: '图片与视频' ControlType: TabItemControl depth: 6
# 聊天记录复制图片按钮 Name: '复制' ControlType: MenuItemControl depth: 5
class WeChat:
def __init__(self, path, locale="zh-CN"):
# 微信打开路径
self.path = path
# 用于复制内容到剪切板
self.app = QApplication([])
# 自动回复的联系人列表
self.auto_reply_contacts = []
# 自动回复的内容
self.auto_reply_msg = "[自动回复]您好,我现在正在忙,稍后会主动联系您,感谢理解。"
self.lc = WeChatLocale(locale)
# 打开微信客户端
def open_wechat(self):
subprocess.Popen(self.path)
# 搜寻微信客户端控件
def get_wechat(self):
return auto.WindowControl(Depth=1, Name=self.lc.weixin)
# 防止微信长时间挂机导致掉线
def prevent_offline(self):
self.open_wechat()
self.get_wechat()
search_box = auto.EditControl(Depth=8, Name=self.lc.search)
click(search_box)
# 搜索指定用户
def get_contact(self, name):
self.open_wechat()
self.get_wechat()
search_box = auto.EditControl(Depth=8, Name=self.lc.search)
click(search_box)
pyperclip.copy(name)
auto.SendKeys("{Ctrl}v")
# 等待客户端搜索联系人
time.sleep(0.1)
search_box.SendKeys("{enter}")
# 鼠标移动到发送按钮处点击发送消息
def press_enter(self):
# 获取发送按钮
send_button = auto.ButtonControl(Depth=15, Name=self.lc.send)
click(send_button)
# 在指定群聊中@他人(若@所有人需具备@所有人权限)
def at(self, name, at_name):
self.get_contact(name)
# 如果at_name为空则代表@所有人
if at_name == "":
auto.SendKeys("@{UP}{enter}")
self.press_enter()
else:
auto.SendKeys(f"@{at_name}")
# 按下回车键确认要at的人
auto.SendKeys("{enter}")
self.press_enter()
# 搜索指定用户名的联系人发送信息
def send_msg(self, name, text):
self.get_contact(name)
pyperclip.copy(text)
auto.SendKeys("{Ctrl}v")
self.press_enter()
# 搜索指定用户名的联系人发送文件
def send_file(self, name: str, path: str):
"""
Args:
name: 指定用户名的名称,输入搜索框后出现的第一个人
path: 发送文件的本地地址
"""
# 粘贴文件发送给用户
self.get_contact(name)
# 将文件复制到剪切板
setClipboardFiles([path])
auto.SendKeys("{Ctrl}v")
self.press_enter()
# 获取所有通讯录中所有联系人
def find_all_contacts(self):
self.open_wechat()
self.get_wechat()
# 获取通讯录管理界面
click(auto.ButtonControl(Name=self.lc.contacts))
list_control = auto.ListControl(Name=self.lc.contact)
scroll_pattern = list_control.GetScrollPattern()
scroll_pattern.SetScrollPercent(-1, 0)
contacts_menu = list_control.ButtonControl(Name=self.lc.manage_contacts)
click(contacts_menu)
# 切换到通讯录管理界面
contacts_window = auto.GetForegroundControl()
list_control = contacts_window.ListControl()
scroll_pattern = list_control.GetScrollPattern()
# 读取用户
contacts = []
# 如果不存在滑轮则直接读取
if scroll_pattern is None:
for contact in contacts_window.ListControl().GetChildren():
# 获取用户的昵称以及备注
name = contact.TextControl().Name
note = contact.ButtonControl(foundIndex=2).Name
# 有备注的用备注,没有备注的用昵称
if note == "":
contacts.append(name)
else:
contacts.append(note)
else:
for percent in np.arange(0, 1.002, 0.001):
scroll_pattern.SetScrollPercent(-1, percent)
for contact in contacts_window.ListControl().GetChildren():
# 获取用户的昵称以及备注
name = contact.TextControl().Name
note = contact.ButtonControl(foundIndex=2).Name
# 有备注的用备注,没有备注的用昵称
if note == "":
contacts.append(name)
else:
contacts.append(note)
# 返回去重过后的联系人列表
return list(set(contacts))
# 检测微信是否收到新消息
def check_new_msg(self):
self.open_wechat()
self.get_wechat()
# 获取左侧聊天按钮
chat_btn = auto.ButtonControl(Name=self.lc.chats)
double_click(chat_btn)
# 持续点击聊天按钮,直到获取完全部新消息
item = auto.ListItemControl(Depth=10)
prev_name = item.ButtonControl().Name
while True:
# 判断该联系人是否有新消息
pane_control = item.PaneControl()
if len(pane_control.GetChildren()) == 3:
print(f"{item.ButtonControl().Name} 有新消息")
# 判断该联系人是否需要自动回复
if item.ButtonControl().Name in self.auto_reply_contacts:
print(f"自动回复 {item.ButtonControl().Name}")
self._auto_reply(item, self.auto_reply_msg)
click(item)
# 跳转到下一个新消息
double_click(chat_btn)
item = auto.ListItemControl(Depth=10)
# 已经完成遍历,退出循环
if prev_name == item.ButtonControl().Name:
break
prev_name = item.ButtonControl().Name
# 设置自动回复的联系人
def set_auto_reply(self, contacts):
# contacts是一个列表
self.auto_reply_contacts = contacts
# 自动回复
def _auto_reply(self, element, text):
click(element)
pyperclip.copy(text)
auto.SendKeys("{Ctrl}v")
self.press_enter()
# 识别聊天内容的类型
# 0:用户发送 1:时间信息 2:红包信息 3:”查看更多消息“标志 4:撤回消息
def _detect_type(self, list_item_control: auto.ListItemControl) -> int:
value = None
# 判断内容框是否为时间框,如果是时间框则子控件不是PaneControl
if not isinstance(list_item_control.GetFirstChildControl(), auto.PaneControl):
value = 1
else:
cnt = 0
for child in list_item_control.PaneControl().GetChildren():
cnt += len(child.GetChildren())
# 判断是否为用户发送的信息
if cnt > 0:
value = 0
# 判断是否为“查看更多消息”
elif list_item_control.Name == "查看更多消息":
value = 3
# 或者是红包信息
elif "红包" in list_item_control.Name:
value = 2
# 或者是撤回消息
elif "撤回了一条消息" in list_item_control.Name:
value = 4
if value is None:
raise ValueError("无法识别该控件类型")
return value
# 获取聊天窗口
def _get_chat_frame(self, name: str):
self.get_contact(name)
return auto.ListControl(Name=self.lc.message)
def save_dialog_pictures(self, name: str, num: int, save_dir: str) -> None:
"""
保存指定聊天记录中的图片。图片的名字代表图片在聊天记录中的顺序,从1开始代表最新的图片。
Args:
name: 聊天窗口的名字
num: 保存的最大数量(从最新图片开始保存)
save_dir: 保存的目录
"""
# 进入图片聊天记录界面
self.get_contact(name)
click(auto.ButtonControl(Name=self.lc.chat_history, Depth=14))
click(auto.TabItemControl(Name=self.lc.photos_n_videos, Depth=6))
# 图片栏控件
list_control = auto.ListControl(Name=self.lc.photos_n_videos, Depth=6)
# 如果图片数量 < num,则继续往上翻直到满足条件或无法上翻为止
move(list_control.GetLastChildControl())
pictures = set()
cnt = 0
while cnt < num:
ori_cnt = cnt
for list_item_control in list_control.GetChildren()[::-1]:
# 如果标签不是图片则跳过
if len(list_item_control.GetFirstChildControl().GetChildren()) == 3:
continue
if cnt < num:
# 复制图片到剪切板
right_click(list_item_control)
menu = auto.ListControl(Depth=4)
copy = menu.GetFirstChildControl()
# 如果图片已经被清理则跳过
if copy.Name != self.lc.copy:
continue
else:
click(auto.MenuItemControl(Name=self.lc.copy, Depth=5))
# 获取图片路径防止重复存储
pic_hash = ImageGrab.grabclipboard()[0]
# 获取后缀
suffix = pic_hash.split(".")[-1]
# 保存图片
if pic_hash not in pictures:
cnt += 1
pictures.add(pic_hash)
save_path = os.path.join(save_dir, f"{cnt}.{suffix}")
os.system(f"copy \"{pic_hash}\" \"{save_path}\"")
# 上滑
pyautogui.scroll(300)
# 如果无法上滑则退出
if ori_cnt == cnt:
break
# 获取指定聊天窗口的聊天记录
def get_dialogs(self, name: str, n_msg: int) -> List:
"""
Args:
name: 聊天窗口的姓名
n_msg: 获取聊天记录的最大数量(从最后一条往上算)
Return:
dialogs: 聊天记录列表,内部元素为三元组(信息类型,发送人,发送内容)
"""
list_control = self._get_chat_frame(name)
scroll_pattern = list_control.GetScrollPattern()
# 如果聊天记录数量 < n_msg,则继续往上翻直到满足条件或无法上翻为止
while len(list_control.GetChildren()) < n_msg:
# 将聊天记录翻到“查看更多消息”
scroll_pattern.SetScrollPercent(-1, 0)
# 如果无法上翻则退出
first_item = list_control.GetFirstChildControl()
if self._detect_type(first_item) != 3:
break
# 否则点击“查看更多消息”
else:
click(first_item)
cnt = 0
dialogs = []
value_to_info = {0: '用户发送', 1: '时间信息', 2: '红包信息', 3: '"查看更多消息"标志', 4: '撤回消息', 5: "System Notification"}
# 从下往上依次记录聊天内容。
for list_item_control in list_control.GetChildren()[::-1]:
v = self._detect_type(list_item_control)
msg = list_item_control.Name
name = list_item_control.ButtonControl().Name if v == 0 else ''
cnt += 1
dialogs.append((value_to_info[v], name, msg))
# 如果达到n_msg则退出
if cnt == n_msg:
break
# 将聊天记录列表翻转
dialogs = dialogs[::-1]
return dialogs
if __name__ == '__main__':
# 测试
path = "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
wechat = WeChat(path, locale="zh-CN")
name = "文件传输助手"
msg = "你好"
wechat.send_msg(name, msg)