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
|
2023-12-30 18:05:53 +08:00
|
|
|
|
2023-12-23 15:25:02 +08:00
|
|
|
from PyQt5.QtCore import pyqtSignal, QThread
|
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
|
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
|
|
|
|
2023-11-15 23:53:39 +08:00
|
|
|
class Output(QThread):
|
|
|
|
"""
|
|
|
|
发送信息线程
|
|
|
|
"""
|
|
|
|
progressSignal = pyqtSignal(int)
|
|
|
|
rangeSignal = pyqtSignal(int)
|
|
|
|
okSignal = pyqtSignal(int)
|
|
|
|
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
|
2023-11-15 23:53:39 +08:00
|
|
|
|
2023-12-10 18:55:17 +08:00
|
|
|
def __init__(self, contact, type_=DOCX, message_types={}, parent=None):
|
2023-11-15 23:53:39 +08:00
|
|
|
super().__init__(parent)
|
2023-11-27 21:23:26 +08:00
|
|
|
self.Child0 = None
|
2023-11-21 22:23:23 +08:00
|
|
|
self.last_timestamp = 0
|
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-27 21:23:26 +08:00
|
|
|
self.ta_username = contact.wxid if contact else ''
|
2023-11-15 23:53:39 +08:00
|
|
|
self.msg_id = 0
|
|
|
|
self.output_type = 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
|
|
|
|
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
|
|
|
|
filename = filename[0]
|
|
|
|
# columns = ["用户名", "消息内容", "发送时间", "发送状态", "消息类型", "isSend", "msgId"]
|
2023-12-09 22:48:15 +08:00
|
|
|
columns = ['UserName', 'Alias', 'Type', 'Remark', 'NickName', 'PYInitial', 'RemarkPYInitial', 'smallHeadImgUrl',
|
|
|
|
'bigHeadImgUrl']
|
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)
|
|
|
|
# 写入数据
|
|
|
|
writer.writerows(contacts)
|
|
|
|
self.okSignal.emit(1)
|
|
|
|
|
2023-11-22 00:22:50 +08:00
|
|
|
def run(self):
|
|
|
|
if self.output_type == self.DOCX:
|
2024-01-02 22:33:46 +08:00
|
|
|
self.Child = DocxExporter(self.contact, type_=self.output_type, message_types=self.message_types)
|
2023-12-27 22:57:47 +08:00
|
|
|
self.Child.progressSignal.connect(self.progress)
|
|
|
|
self.Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
self.Child.okSignal.connect(self.okSignal)
|
|
|
|
self.Child.start()
|
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:
|
|
|
|
self.Child = TxtExporter(self.contact, type_=self.output_type, message_types=self.message_types)
|
|
|
|
self.Child.progressSignal.connect(self.progress)
|
|
|
|
self.Child.rangeSignal.connect(self.rangeSignal)
|
|
|
|
self.Child.okSignal.connect(self.okSignal)
|
|
|
|
self.Child.start()
|
|
|
|
elif self.output_type == self.CSV:
|
|
|
|
self.Child = CSVExporter(self.contact, type_=self.output_type, message_types=self.message_types)
|
2023-12-02 22:02:17 +08:00
|
|
|
self.Child.progressSignal.connect(self.progress)
|
|
|
|
self.Child.rangeSignal.connect(self.rangeSignal)
|
2023-12-23 17:09:35 +08:00
|
|
|
self.Child.okSignal.connect(self.okSignal)
|
|
|
|
self.Child.start()
|
|
|
|
elif self.output_type == self.HTML:
|
2024-01-02 22:33:46 +08:00
|
|
|
self.Child = HtmlExporter(self.contact, type_=self.output_type, message_types=self.message_types)
|
|
|
|
self.Child.progressSignal.connect(self.progress)
|
2023-12-23 17:09:35 +08:00
|
|
|
self.Child.rangeSignal.connect(self.rangeSignal)
|
2023-12-22 22:42:24 +08:00
|
|
|
self.Child.okSignal.connect(self.count_finish_num)
|
2023-12-02 22:02:17 +08:00
|
|
|
self.Child.start()
|
2023-12-23 17:09:35 +08:00
|
|
|
if self.message_types.get(34):
|
|
|
|
# 语音消息单独的线程
|
|
|
|
self.total_num += 1
|
|
|
|
self.output_media = OutputMedia(self.contact)
|
|
|
|
self.output_media.okSingal.connect(self.count_finish_num)
|
|
|
|
self.output_media.progressSignal.connect(self.progressSignal)
|
|
|
|
self.output_media.start()
|
|
|
|
if self.message_types.get(47):
|
|
|
|
# emoji消息单独的线程
|
|
|
|
self.total_num += 1
|
|
|
|
self.output_emoji = OutputEmoji(self.contact)
|
|
|
|
self.output_emoji.okSingal.connect(self.count_finish_num)
|
|
|
|
self.output_emoji.progressSignal.connect(self.progressSignal)
|
|
|
|
self.output_emoji.start()
|
|
|
|
if self.message_types.get(3):
|
2023-12-27 22:57:47 +08:00
|
|
|
# 图片消息单独的线程
|
2023-12-23 17:09:35 +08:00
|
|
|
self.total_num += 1
|
|
|
|
self.output_image = OutputImage(self.contact)
|
|
|
|
self.output_image.okSingal.connect(self.count_finish_num)
|
|
|
|
self.output_image.progressSignal.connect(self.progressSignal)
|
|
|
|
self.output_image.start()
|
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
|
|
|
# 所有子线程都完成之后就发送完成信号
|
2023-12-22 22:42:24 +08:00
|
|
|
self.okSignal.emit(1)
|
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)
|
|
|
|
|
|
|
|
def __init__(self, contact):
|
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 34)
|
|
|
|
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)
|
|
|
|
|
|
|
|
def __init__(self, contact):
|
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
origin_docx_path = f"{os.path.abspath('.')}/data/聊天记录/{self.contact.remark}"
|
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 47)
|
|
|
|
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)
|
|
|
|
|
|
|
|
def __init__(self, contact):
|
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
self.child_thread_num = 2
|
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}"
|
2023-12-27 22:57:47 +08:00
|
|
|
messages = msg_db.get_messages_by_type(self.contact.wxid, 3)
|
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)
|
|
|
|
|
|
|
|
def __init__(self, contact, messages):
|
|
|
|
super().__init__()
|
|
|
|
self.contact = contact
|
|
|
|
self.messages = messages
|
|
|
|
|
|
|
|
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
|