2023-12-13 22:12:50 +08:00
|
|
|
|
from PyQt5.QtCore import pyqtSignal, QUrl, QThread
|
|
|
|
|
from PyQt5.QtGui import QDesktopServices
|
|
|
|
|
from PyQt5.QtWidgets import QWidget, QMenu, QAction, QToolButton, QMessageBox, QDialog
|
|
|
|
|
|
|
|
|
|
from app.DataBase.output_pc import Output
|
|
|
|
|
from app.ui.Icon import Icon
|
|
|
|
|
from .contactInfoUi import Ui_Form
|
|
|
|
|
from .userinfo import userinfo
|
2023-12-30 19:26:24 +08:00
|
|
|
|
from ...person import Contact, Me
|
2023-12-13 22:12:50 +08:00
|
|
|
|
from .export_dialog import ExportDialog
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ContactInfo(QWidget, Ui_Form):
|
2023-12-30 19:26:24 +08:00
|
|
|
|
"""
|
|
|
|
|
显示联系人信息
|
|
|
|
|
"""
|
2023-12-13 22:12:50 +08:00
|
|
|
|
exitSignal = pyqtSignal()
|
|
|
|
|
urlSignal = pyqtSignal(QUrl)
|
|
|
|
|
|
|
|
|
|
# username = ''
|
|
|
|
|
def __init__(self, contact, parent=None):
|
|
|
|
|
super(ContactInfo, self).__init__(parent)
|
|
|
|
|
self.setupUi(self)
|
2023-12-30 19:26:24 +08:00
|
|
|
|
self.contact: Contact = contact
|
2023-12-13 22:12:50 +08:00
|
|
|
|
self.view_userinfo = userinfo.UserinfoController(self.contact)
|
|
|
|
|
self.btn_back.clicked.connect(self.back)
|
|
|
|
|
self.init_ui()
|
|
|
|
|
|
|
|
|
|
def init_ui(self):
|
|
|
|
|
self.btn_back.setIcon(Icon.Back)
|
|
|
|
|
self.btn_report.setIcon(Icon.Annual_Report_Icon)
|
|
|
|
|
self.btn_analysis.setIcon(Icon.Analysis_Icon)
|
|
|
|
|
self.btn_emotion.setIcon(Icon.Emotion_Icon)
|
|
|
|
|
self.btn_report.clicked.connect(self.annual_report)
|
|
|
|
|
self.btn_analysis.clicked.connect(self.analysis)
|
|
|
|
|
self.btn_emotion.clicked.connect(self.emotionale_Analysis)
|
|
|
|
|
self.stackedWidget.addWidget(self.view_userinfo)
|
|
|
|
|
self.stackedWidget.setCurrentWidget(self.view_userinfo)
|
|
|
|
|
menu = QMenu(self)
|
|
|
|
|
self.toDocxAct = QAction(Icon.ToDocx, '导出Docx', self)
|
|
|
|
|
self.toCSVAct = QAction(Icon.ToCSV, '导出CSV', self)
|
|
|
|
|
self.toHtmlAct = QAction(Icon.ToHTML, '导出HTML', self)
|
|
|
|
|
self.toTxtAct = QAction(Icon.ToTXT, '导出TXT', self)
|
|
|
|
|
self.toolButton_output.setPopupMode(QToolButton.MenuButtonPopup)
|
|
|
|
|
self.toolButton_output.clicked.connect(self.toolButton_show)
|
|
|
|
|
menu.addAction(self.toDocxAct)
|
|
|
|
|
menu.addAction(self.toCSVAct)
|
|
|
|
|
menu.addAction(self.toHtmlAct)
|
|
|
|
|
menu.addAction(self.toTxtAct)
|
|
|
|
|
self.toolButton_output.setMenu(menu)
|
|
|
|
|
self.toolButton_output.setIcon(Icon.Output)
|
|
|
|
|
# self.toolButton_output.addSeparator()
|
|
|
|
|
self.toHtmlAct.triggered.connect(self.output)
|
|
|
|
|
self.toDocxAct.triggered.connect(self.output)
|
|
|
|
|
self.toCSVAct.triggered.connect(self.output)
|
|
|
|
|
self.toTxtAct.triggered.connect(self.output)
|
2024-01-05 21:13:54 +08:00
|
|
|
|
def set_contact(self,contact:Contact):
|
|
|
|
|
self.view_userinfo.set_contact(contact)
|
|
|
|
|
self.contact = contact
|
2023-12-13 22:12:50 +08:00
|
|
|
|
def toolButton_show(self):
|
|
|
|
|
self.toolButton_output.showMenu()
|
|
|
|
|
|
|
|
|
|
def analysis(self):
|
|
|
|
|
QMessageBox.warning(self,
|
|
|
|
|
"别急别急",
|
|
|
|
|
"马上就实现该功能"
|
|
|
|
|
)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
def annual_report(self):
|
2023-12-17 20:49:38 +08:00
|
|
|
|
if 'room' in self.contact.wxid:
|
|
|
|
|
QMessageBox.warning(
|
|
|
|
|
self, '警告',
|
|
|
|
|
'暂不支持群组'
|
|
|
|
|
)
|
|
|
|
|
return
|
2023-12-13 22:12:50 +08:00
|
|
|
|
self.contact.save_avatar()
|
2023-12-30 19:26:24 +08:00
|
|
|
|
Me().save_avatar()
|
2023-12-13 22:12:50 +08:00
|
|
|
|
self.report_thread = ReportThread(self.contact)
|
|
|
|
|
self.report_thread.okSignal.connect(lambda x: QDesktopServices.openUrl(QUrl("http://127.0.0.1:21314")))
|
|
|
|
|
self.report_thread.start()
|
2023-12-20 22:23:13 +08:00
|
|
|
|
QDesktopServices.openUrl(QUrl("http://127.0.0.1:21314/christmas"))
|
2023-12-13 22:12:50 +08:00
|
|
|
|
|
|
|
|
|
def emotionale_Analysis(self):
|
|
|
|
|
if 'room' in self.contact.wxid:
|
|
|
|
|
QMessageBox.warning(
|
|
|
|
|
self, '警告',
|
|
|
|
|
'暂不支持群组'
|
|
|
|
|
)
|
|
|
|
|
return
|
2023-12-17 20:49:38 +08:00
|
|
|
|
QMessageBox.warning(self,
|
|
|
|
|
"别急别急",
|
|
|
|
|
"马上就实现该功能"
|
|
|
|
|
)
|
|
|
|
|
return
|
2023-12-13 22:12:50 +08:00
|
|
|
|
|
|
|
|
|
def back(self):
|
|
|
|
|
"""
|
|
|
|
|
将userinfo界面设置为可见,其他界面设置为不可见
|
|
|
|
|
"""
|
2023-12-30 19:26:24 +08:00
|
|
|
|
return
|
2023-12-13 22:12:50 +08:00
|
|
|
|
|
|
|
|
|
def output(self):
|
|
|
|
|
"""
|
|
|
|
|
导出聊天记录
|
|
|
|
|
:return:
|
|
|
|
|
"""
|
|
|
|
|
self.stackedWidget.setCurrentWidget(self.view_userinfo)
|
|
|
|
|
if self.sender() == self.toDocxAct:
|
2023-12-27 22:57:47 +08:00
|
|
|
|
dialog = ExportDialog(self.contact, title='选择导出的消息类型', file_type='docx', parent=self)
|
|
|
|
|
result = dialog.exec_() # 使用exec_()获取用户的操作结果
|
2023-12-13 22:12:50 +08:00
|
|
|
|
elif self.sender() == self.toCSVAct:
|
|
|
|
|
# self.outputThread = Output(self.contact, type_=Output.CSV)
|
|
|
|
|
dialog = ExportDialog(self.contact,title='选择导出的消息类型', file_type='csv', parent=self)
|
|
|
|
|
result = dialog.exec_() # 使用exec_()获取用户的操作结果
|
|
|
|
|
elif self.sender() == self.toHtmlAct:
|
|
|
|
|
dialog = ExportDialog(self.contact,title='选择导出的消息类型', file_type='html', parent=self)
|
|
|
|
|
result = dialog.exec_() # 使用exec_()获取用户的操作结果
|
|
|
|
|
elif self.sender() == self.toTxtAct:
|
|
|
|
|
dialog = ExportDialog(self.contact, title='选择导出的消息类型', file_type='txt', parent=self)
|
|
|
|
|
result = dialog.exec_() # 使用exec_()获取用户的操作结果
|
|
|
|
|
|
|
|
|
|
class ReportThread(QThread):
|
|
|
|
|
okSignal = pyqtSignal(bool)
|
|
|
|
|
|
|
|
|
|
def __init__(self, contact):
|
|
|
|
|
super().__init__()
|
|
|
|
|
self.contact = contact
|
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
from app.web_ui import web
|
|
|
|
|
web.contact = self.contact
|
|
|
|
|
web.run(port='21314')
|
|
|
|
|
self.okSignal.emit(True)
|