2023-11-25 00:40:09 +08:00
|
|
|
import csv
|
2023-11-15 23:53:39 +08:00
|
|
|
import os
|
2023-12-23 15:25:02 +08:00
|
|
|
import traceback
|
2024-01-06 13:04:55 +08:00
|
|
|
from typing import List
|
2023-12-30 18:05:53 +08:00
|
|
|
|
2024-01-19 18:37:56 +08:00
|
|
|
from PyQt5.QtCore import pyqtSignal, QThread, QObject
|
2023-12-07 20:35:51 +08:00
|
|
|
from PyQt5.QtWidgets import QFileDialog
|
2023-11-16 22:39:59 +08:00
|
|
|
|
2024-01-02 22:33:46 +08:00
|
|
|
from app.DataBase.exporter_csv import CSVExporter
|
|
|
|
from app.DataBase.exporter_docx import DocxExporter
|
|
|
|
from app.DataBase.exporter_html import HtmlExporter
|
|
|
|
from app.DataBase.exporter_txt import TxtExporter
|
2024-01-04 20:18:07 +08:00
|
|
|
from app.DataBase.hard_link import decodeExtraBuf
|
2023-12-06 15:34:56 +08:00
|
|
|
from .package_msg import PackageMsg
|
2023-12-30 18:05:53 +08:00
|
|
|
from ..DataBase import media_msg_db, hard_link_db, micro_msg_db, msg_db
|
2023-12-23 15:25:02 +08:00
|
|
|
from ..log import logger
|
2023-12-30 19:26:24 +08:00
|
|
|
from ..person import Me
|
2024-01-02 22:33:46 +08:00
|
|
|
from ..util.image import get_image
|
2023-11-28 21:51:49 +08:00
|
|
|
|
2023-12-03 00:03:00 +08:00
|
|
|
os.makedirs('./data/聊天记录', exist_ok=True)
|
2023-11-20 22:30:31 +08:00
|
|
|
|
2024-01-04 20:18:07 +08:00
|
|
|
|
2024-01-19 18:37:56 +08:00
|
|
|
class Output(QObject):
|
2023-11-15 23:53:39 +08:00
|
|
|
"""
|
|
|
|
发送信息线程
|
|
|
|
"""
|
2024-01-04 20:18:07 +08:00
|
|
|
startSignal = pyqtSignal(int)
|
2023-11-15 23:53:39 +08:00
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
rangeSignal = pyqtSignal(int)
|
|
|
|
okSignal = pyqtSignal(int)
|
2024-01-06 13:04:55 +08:00
|
|
|
batchOkSignal = pyqtSignal(int)
|
|
|
|
nowContact = pyqtSignal(str)
|
2023-11-15 23:53:39 +08:00
|
|
|
i = 1
|
|
|
|
CSV = 0
|
|
|
|
DOCX = 1
|
|
|
|
HTML = 2
|
2023-11-27 21:23:26 +08:00
|
|
|
CSV_ALL = 3
|
2023-12-07 20:35:51 +08:00
|
|
|
CONTACT_CSV = 4
|
2023-12-10 19:36:08 +08:00
|
|
|
TXT = 5
|
2024-01-06 13:04:55 +08:00
|
|
|
Batch = 10086
|
2023-11-15 23:53:39 +08:00
|
|
|
|
2024-01-09 23:55:39 +08:00
|
|
|
def __init__(self, contact, type_=DOCX, message_types={}, sub_type=[], time_range=None,parent=None):
|
2023-11-15 23:53:39 +08:00
|
|
|
super().__init__(parent)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children = []
|
2023-11-21 22:23:23 +08:00
|
|
|
self.last_timestamp = 0
|
2024-01-06 13:04:55 +08:00
|
|
|
self.sub_type = sub_type
|
2024-01-09 23:55:39 +08:00
|
|
|
self.time_range = time_range
|
2023-12-10 18:55:17 +08:00
|
|
|
self.message_types = message_types
|
2023-11-15 23:53:39 +08:00
|
|
|
self.sec = 2 # 默认1000秒
|
2023-11-16 22:39:59 +08:00
|
|
|
self.contact = contact
|
2023-11-15 23:53:39 +08:00
|
|
|
self.msg_id = 0
|
2024-01-06 13:04:55 +08:00
|
|
|
self.output_type: int | List[int] = type_
|
2023-12-23 17:09:35 +08:00
|
|
|
self.total_num = 1
|
2023-11-16 22:39:59 +08:00
|
|
|
self.num = 0
|
2023-11-15 23:53:39 +08:00
|
|
|
|
2023-11-22 00:22:50 +08:00
|
|
|
def progress(self, value):
|
|
|
|
self.progressSignal.emit(value)
|
|
|
|
|
2023-12-30 18:05:53 +08:00
|
|
|
def output_image(self):
|
|
|
|
"""
|
|
|
|
导出全部图片
|
|
|
|
@return:
|
|
|
|
"""
|
|
|
|
return
|
2024-01-02 00:39:45 +08:00
|
|
|
|
2023-12-30 18:05:53 +08:00
|
|
|
def output_emoji(self):
|
|
|
|
"""
|
|
|
|
导出全部表情包
|
|
|
|
@return:
|
|
|
|
"""
|
|
|
|
return
|
2024-01-02 00:39:45 +08:00
|
|
|
|
2023-11-27 21:23:26 +08:00
|
|
|
def to_csv_all(self):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
导出全部聊天记录到CSV
|
|
|
|
@return:
|
|
|
|
"""
|
2023-11-27 21:23:26 +08:00
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/"
|
2023-12-03 00:03:00 +08:00
|
|
|
os.makedirs(origin_docx_path, exist_ok=True)
|
2023-12-09 22:48:15 +08:00
|
|
|
filename = QFileDialog.getSaveFileName(None, "save file", os.path.join(os.getcwd(), 'messages.csv'),
|
|
|
|
"csv files (*.csv);;all files(*.*)")
|
|
|
|
if not filename[0]:
|
2023-12-07 20:35:51 +08:00
|
|
|
return
|
2024-01-04 20:18:07 +08:00
|
|
|
self.startSignal.emit(1)
|
2023-12-07 20:35:51 +08:00
|
|
|
filename = filename[0]
|
2023-11-27 21:23:26 +08:00
|
|
|
# columns = ["用户名", "消息内容", "发送时间", "发送状态", "消息类型", "isSend", "msgId"]
|
|
|
|
columns = ['localId', 'TalkerId', 'Type', 'SubType',
|
|
|
|
'IsSender', 'CreateTime', 'Status', 'StrContent',
|
2023-12-06 15:34:56 +08:00
|
|
|
'StrTime', 'Remark', 'NickName', 'Sender']
|
2023-12-07 20:35:51 +08:00
|
|
|
|
2023-12-06 15:34:56 +08:00
|
|
|
packagemsg = PackageMsg()
|
|
|
|
messages = packagemsg.get_package_message_all()
|
2023-11-27 21:23:26 +08:00
|
|
|
# 写入CSV文件
|
2023-12-26 23:49:53 +08:00
|
|
|
with open(filename, mode='w', newline='', encoding='utf-8-sig') as file:
|
2023-11-27 21:23:26 +08:00
|
|
|
writer = csv.writer(file)
|
|
|
|
writer.writerow(columns)
|
|
|
|
# 写入数据
|
|
|
|
writer.writerows(messages)
|
|
|
|
self.okSignal.emit(1)
|
|
|
|
|
2023-12-07 20:35:51 +08:00
|
|
|
def contact_to_csv(self):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
导出联系人到CSV
|
|
|
|
@return:
|
|
|
|
"""
|
2023-12-09 22:48:15 +08:00
|
|
|
filename = QFileDialog.getSaveFileName(None, "save file", os.path.join(os.getcwd(), 'contacts.csv'),
|
|
|
|
"csv files (*.csv);;all files(*.*)")
|
|
|
|
if not filename[0]:
|
2023-12-07 20:35:51 +08:00
|
|
|
return
|
2024-01-04 20:18:07 +08:00
|
|
|
self.startSignal.emit(1)
|
2023-12-07 20:35:51 +08:00
|
|
|
filename = filename[0]
|
|
|
|
# columns = ["用户名", "消息内容", "发送时间", "发送状态", "消息类型", "isSend", "msgId"]
|
2023-12-09 22:48:15 +08:00
|
|
|
columns = ['UserName', 'Alias', 'Type', 'Remark', 'NickName', 'PYInitial', 'RemarkPYInitial', 'smallHeadImgUrl',
|
2024-01-04 20:18:07 +08:00
|
|
|
'bigHeadImgUrl', 'label', 'gender', 'telephone', 'signature', 'country/region', 'province', 'city']
|
2023-12-07 20:35:51 +08:00
|
|
|
contacts = micro_msg_db.get_contact()
|
|
|
|
# 写入CSV文件
|
2023-12-26 23:49:53 +08:00
|
|
|
with open(filename, mode='w', newline='', encoding='utf-8-sig') as file:
|
2023-12-07 20:35:51 +08:00
|
|
|
writer = csv.writer(file)
|
|
|
|
writer.writerow(columns)
|
|
|
|
# 写入数据
|
2024-01-04 20:18:07 +08:00
|
|
|
# writer.writerows(contacts)
|
|
|
|
for contact in contacts:
|
|
|
|
detail = decodeExtraBuf(contact[9])
|
|
|
|
gender_code = detail.get('gender')
|
|
|
|
if gender_code == 0:
|
|
|
|
gender = '未知'
|
|
|
|
elif gender_code == 1:
|
|
|
|
gender = '男'
|
|
|
|
else:
|
|
|
|
gender = '女'
|
2024-01-06 13:04:55 +08:00
|
|
|
writer.writerow([*contact[:9], contact[10], gender, detail.get('telephone'), detail.get('signature'),
|
|
|
|
*detail.get('region')])
|
2024-01-04 20:18:07 +08:00
|
|
|
|
2023-12-07 20:35:51 +08:00
|
|
|
self.okSignal.emit(1)
|
|
|
|
|
2024-01-06 13:04:55 +08:00
|
|
|
def batch_export(self):
|
|
|
|
print('开始批量导出')
|
|
|
|
print(self.sub_type, self.message_types)
|
|
|
|
print(len(self.contact))
|
|
|
|
print([contact.remark for contact in self.contact])
|
|
|
|
self.batch_num_total = len(self.contact)*len(self.sub_type)
|
|
|
|
self.batch_num = 0
|
|
|
|
self.rangeSignal.emit(self.batch_num_total)
|
|
|
|
for contact in self.contact:
|
|
|
|
# print('联系人', contact.remark)
|
|
|
|
for type_ in self.sub_type:
|
|
|
|
# print('导出类型', type_)
|
|
|
|
if type_ == self.DOCX:
|
|
|
|
self.to_docx(contact, self.message_types,True)
|
|
|
|
elif type_ == self.TXT:
|
|
|
|
# print('批量导出txt')
|
|
|
|
self.to_txt(contact, self.message_types,True)
|
|
|
|
elif type_ == self.CSV:
|
|
|
|
self.to_csv(contact, self.message_types,True)
|
|
|
|
elif type_ == self.HTML:
|
|
|
|
self.to_html(contact, self.message_types,True)
|
|
|
|
|
|
|
|
def batch_finish_one(self, num):
|
|
|
|
self.nowContact.emit(self.contact[self.batch_num//len(self.sub_type)].remark)
|
|
|
|
self.batch_num += 1
|
|
|
|
if self.batch_num == self.batch_num_total:
|
|
|
|
self.okSignal.emit(1)
|
|
|
|
|
|
|
|
def to_docx(self, contact, message_types, is_batch=False):
|
2024-01-09 23:55:39 +08:00
|
|
|
Child = DocxExporter(contact, type_=self.DOCX, message_types=message_types,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(Child)
|
|
|
|
Child.progressSignal.connect(self.progress)
|
|
|
|
if not is_batch:
|
|
|
|
Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
Child.okSignal.connect(self.okSignal if not is_batch else self.batch_finish_one)
|
|
|
|
Child.start()
|
|
|
|
|
|
|
|
def to_txt(self, contact, message_types, is_batch=False):
|
2024-01-09 23:55:39 +08:00
|
|
|
Child = TxtExporter(contact, type_=self.TXT, message_types=message_types,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(Child)
|
|
|
|
Child.progressSignal.connect(self.progress)
|
|
|
|
if not is_batch:
|
|
|
|
Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
Child.okSignal.connect(self.okSignal if not is_batch else self.batch_finish_one)
|
|
|
|
Child.start()
|
|
|
|
|
|
|
|
def to_html(self, contact, message_types, is_batch=False):
|
2024-01-09 23:55:39 +08:00
|
|
|
Child = HtmlExporter(contact, type_=self.output_type, message_types=message_types,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(Child)
|
|
|
|
Child.progressSignal.connect(self.progress)
|
|
|
|
if not is_batch:
|
|
|
|
Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
Child.okSignal.connect(self.count_finish_num)
|
|
|
|
Child.start()
|
|
|
|
self.total_num = 1
|
|
|
|
if message_types.get(34):
|
|
|
|
# 语音消息单独的线程
|
|
|
|
self.total_num += 1
|
2024-01-09 23:55:39 +08:00
|
|
|
output_media = OutputMedia(contact,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(output_media)
|
|
|
|
output_media.okSingal.connect(self.count_finish_num)
|
|
|
|
output_media.progressSignal.connect(self.progressSignal)
|
|
|
|
output_media.start()
|
|
|
|
if message_types.get(47):
|
|
|
|
# emoji消息单独的线程
|
|
|
|
self.total_num += 1
|
2024-01-09 23:55:39 +08:00
|
|
|
output_emoji = OutputEmoji(contact,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(output_emoji)
|
|
|
|
output_emoji.okSingal.connect(self.count_finish_num)
|
|
|
|
output_emoji.progressSignal.connect(self.progressSignal)
|
|
|
|
output_emoji.start()
|
|
|
|
if message_types.get(3):
|
|
|
|
# 图片消息单独的线程
|
|
|
|
self.total_num += 1
|
2024-01-09 23:55:39 +08:00
|
|
|
output_image = OutputImage(contact,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(output_image)
|
|
|
|
output_image.okSingal.connect(self.count_finish_num)
|
|
|
|
output_image.progressSignal.connect(self.progressSignal)
|
|
|
|
output_image.start()
|
|
|
|
|
|
|
|
def to_csv(self, contact, message_types, is_batch=False):
|
2024-01-09 23:55:39 +08:00
|
|
|
Child = CSVExporter(contact, type_=self.CSV, message_types=message_types,time_range=self.time_range)
|
2024-01-06 13:04:55 +08:00
|
|
|
self.children.append(Child)
|
|
|
|
Child.progressSignal.connect(self.progress)
|
|
|
|
if not is_batch:
|
|
|
|
Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
Child.okSignal.connect(self.okSignal if not is_batch else self.batch_finish_one)
|
|
|
|
Child.start()
|
|
|
|
|
2024-01-19 18:37:56 +08:00
|
|
|
def start(self):
|
2023-11-22 00:22:50 +08:00
|
|
|
if self.output_type == self.DOCX:
|
2024-01-06 13:04:55 +08:00
|
|
|
self.to_docx(self.contact, self.message_types)
|
2023-11-27 21:23:26 +08:00
|
|
|
elif self.output_type == self.CSV_ALL:
|
|
|
|
self.to_csv_all()
|
2023-12-07 20:35:51 +08:00
|
|
|
elif self.output_type == self.CONTACT_CSV:
|
|
|
|
self.contact_to_csv()
|
2024-01-02 22:33:46 +08:00
|
|
|
elif self.output_type == self.TXT:
|
2024-01-06 13:04:55 +08:00
|
|
|
self.to_txt(self.contact, self.message_types)
|
2024-01-02 22:33:46 +08:00
|
|
|
elif self.output_type == self.CSV:
|
2024-01-06 13:04:55 +08:00
|
|
|
self.to_csv(self.contact, self.message_types)
|
2023-12-23 17:09:35 +08:00
|
|
|
elif self.output_type == self.HTML:
|
2024-01-06 13:04:55 +08:00
|
|
|
self.to_html(self.contact, self.message_types)
|
|
|
|
elif self.output_type == self.Batch:
|
|
|
|
self.batch_export()
|
2023-12-22 22:42:24 +08:00
|
|
|
|
|
|
|
def count_finish_num(self, num):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
记录子线程完成个数
|
|
|
|
@param num:
|
|
|
|
@return:
|
|
|
|
"""
|
2023-12-22 22:42:24 +08:00
|
|
|
self.num += 1
|
|
|
|
if self.num == self.total_num:
|
2023-12-30 18:05:53 +08:00
|
|
|
# 所有子线程都完成之后就发送完成信号
|
2024-01-06 13:04:55 +08:00
|
|
|
if self.output_type == self.Batch:
|
|
|
|
self.batch_finish_one(1)
|
|
|
|
else:
|
|
|
|
self.okSignal.emit(1)
|
|
|
|
self.num = 0
|
2023-11-27 21:23:26 +08:00
|
|
|
|
|
|
|
def cancel(self):
|
|
|
|
self.requestInterruption()
|
2023-11-22 00:22:50 +08:00
|
|
|
|
|
|
|
|
2023-12-22 22:42:24 +08:00
|
|
|
class OutputMedia(QThread):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
导出语音消息
|
|
|
|
"""
|
2023-12-22 22:42:24 +08:00
|
|
|
okSingal = pyqtSignal(int)
|
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
|
2024-01-09 23:55:39 +08:00
|
|
|
def __init__(self, contact,time_range=None):
|
2023-12-22 22:42:24 +08:00
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
2024-01-09 23:55:39 +08:00
|
|
|
self.time_range = time_range
|
2023-12-22 22:42:24 +08:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
2024-01-09 23:55:39 +08:00
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 34,time_range=self.time_range)
|
2023-12-22 22:42:24 +08:00
|
|
|
for message in messages:
|
|
|
|
is_send = message[4]
|
|
|
|
msgSvrId = message[9]
|
2023-12-23 15:25:02 +08:00
|
|
|
try:
|
|
|
|
audio_path = media_msg_db.get_audio(msgSvrId, output_path=origin_docx_path + "/voice")
|
|
|
|
except:
|
|
|
|
logger.error(traceback.format_exc())
|
2023-12-23 17:09:35 +08:00
|
|
|
finally:
|
|
|
|
self.progressSignal.emit(1)
|
2023-12-22 22:42:24 +08:00
|
|
|
self.okSingal.emit(34)
|
|
|
|
|
|
|
|
|
|
|
|
class OutputEmoji(QThread):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
导出表情包
|
|
|
|
"""
|
2023-12-22 22:42:24 +08:00
|
|
|
okSingal = pyqtSignal(int)
|
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
|
2024-01-09 23:55:39 +08:00
|
|
|
def __init__(self, contact,time_range=None):
|
2023-12-22 22:42:24 +08:00
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
2024-01-09 23:55:39 +08:00
|
|
|
self.time_range = time_range
|
2023-12-22 22:42:24 +08:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
2024-01-09 23:55:39 +08:00
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 47,time_range=self.time_range)
|
2023-12-22 22:42:24 +08:00
|
|
|
for message in messages:
|
|
|
|
str_content = message[7]
|
2023-12-23 15:25:02 +08:00
|
|
|
try:
|
2023-12-24 22:27:49 +08:00
|
|
|
pass
|
|
|
|
# emoji_path = get_emoji(str_content, thumb=True, output_path=origin_docx_path + '/emoji')
|
2023-12-23 15:25:02 +08:00
|
|
|
except:
|
|
|
|
logger.error(traceback.format_exc())
|
2023-12-23 17:09:35 +08:00
|
|
|
finally:
|
|
|
|
self.progressSignal.emit(1)
|
|
|
|
self.okSingal.emit(47)
|
|
|
|
|
|
|
|
|
|
|
|
class OutputImage(QThread):
|
2023-12-30 18:05:53 +08:00
|
|
|
"""
|
|
|
|
导出图片
|
|
|
|
"""
|
2023-12-23 17:09:35 +08:00
|
|
|
okSingal = pyqtSignal(int)
|
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
|
2024-01-09 23:55:39 +08:00
|
|
|
def __init__(self, contact,time_range):
|
2023-12-23 17:09:35 +08:00
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
self.child_thread_num = 2
|
2024-01-09 23:55:39 +08:00
|
|
|
self.time_range =time_range
|
2023-12-27 22:57:47 +08:00
|
|
|
self.child_threads = [0] * (self.child_thread_num + 1)
|
2023-12-23 17:09:35 +08:00
|
|
|
self.num = 0
|
|
|
|
|
|
|
|
def count1(self, num):
|
|
|
|
self.num += 1
|
|
|
|
print('图片导出完成一个')
|
|
|
|
if self.num == self.child_thread_num:
|
|
|
|
self.okSingal.emit(47)
|
|
|
|
print('图片导出完成')
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
2024-01-09 23:55:39 +08:00
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 3,time_range=self.time_range)
|
2023-12-23 17:09:35 +08:00
|
|
|
for message in messages:
|
|
|
|
str_content = message[7]
|
|
|
|
BytesExtra = message[10]
|
|
|
|
timestamp = message[5]
|
|
|
|
try:
|
|
|
|
image_path = hard_link_db.get_image(str_content, BytesExtra, thumb=False)
|
2023-12-30 19:26:24 +08:00
|
|
|
if not os.path.exists(os.path.join(Me().wx_dir, image_path)):
|
2023-12-23 17:09:35 +08:00
|
|
|
image_thumb_path = hard_link_db.get_image(str_content, BytesExtra, thumb=True)
|
2023-12-30 19:26:24 +08:00
|
|
|
if not os.path.exists(os.path.join(Me().wx_dir, image_thumb_path)):
|
2023-12-23 17:09:35 +08:00
|
|
|
continue
|
|
|
|
image_path = image_thumb_path
|
|
|
|
image_path = get_image(image_path, base_path=f'/data/聊天记录/{self.contact.remark}/image')
|
|
|
|
try:
|
|
|
|
os.utime(origin_docx_path + image_path[1:], (timestamp, timestamp))
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
logger.error(traceback.format_exc())
|
|
|
|
finally:
|
|
|
|
self.progressSignal.emit(1)
|
|
|
|
self.okSingal.emit(47)
|
|
|
|
|
|
|
|
|
|
|
|
class OutputImageChild(QThread):
|
|
|
|
okSingal = pyqtSignal(int)
|
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
|
2024-01-09 23:55:39 +08:00
|
|
|
def __init__(self, contact, messages,time_range):
|
2023-12-23 17:09:35 +08:00
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
self.messages = messages
|
2024-01-09 23:55:39 +08:00
|
|
|
self.time_range = time_range
|
2023-12-23 17:09:35 +08:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
|
|
|
for message in self.messages:
|
|
|
|
str_content = message[7]
|
|
|
|
BytesExtra = message[10]
|
|
|
|
timestamp = message[5]
|
|
|
|
try:
|
|
|
|
image_path = hard_link_db.get_image(str_content, BytesExtra, thumb=False)
|
2023-12-30 19:26:24 +08:00
|
|
|
if not os.path.exists(os.path.join(Me().wx_dir, image_path)):
|
2023-12-23 17:09:35 +08:00
|
|
|
image_thumb_path = hard_link_db.get_image(str_content, BytesExtra, thumb=True)
|
2023-12-30 19:26:24 +08:00
|
|
|
if not os.path.exists(os.path.join(Me().wx_dir, image_thumb_path)):
|
2023-12-23 17:09:35 +08:00
|
|
|
continue
|
|
|
|
image_path = image_thumb_path
|
|
|
|
image_path = get_image(image_path, base_path=f'/data/聊天记录/{self.contact.remark}/image')
|
|
|
|
try:
|
|
|
|
os.utime(origin_docx_path + image_path[1:], (timestamp, timestamp))
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
logger.error(traceback.format_exc())
|
|
|
|
finally:
|
|
|
|
self.progressSignal.emit(1)
|
|
|
|
self.okSingal.emit(47)
|
|
|
|
print('图片子线程完成')
|
2023-12-24 11:21:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2023-12-30 18:05:53 +08:00
|
|
|
pass
|