2023-12-05 00:13:20 +08:00
|
|
|
import os.path
|
2023-12-11 22:49:17 +08:00
|
|
|
import re
|
2023-11-23 22:58:27 +08:00
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
from PyQt5.QtCore import Qt
|
|
|
|
from PyQt5.QtGui import QPixmap
|
|
|
|
|
2023-12-13 21:35:13 +08:00
|
|
|
from app.ui.Icon import Icon
|
2023-11-23 22:58:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
def singleton(cls):
|
|
|
|
_instance = {}
|
|
|
|
|
|
|
|
def inner():
|
|
|
|
if cls not in _instance:
|
|
|
|
_instance[cls] = cls()
|
|
|
|
return _instance[cls]
|
|
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
@singleton
|
|
|
|
class MePC:
|
|
|
|
def __init__(self):
|
|
|
|
self.avatar = QPixmap(Icon.Default_avatar_path)
|
2023-12-01 00:22:59 +08:00
|
|
|
self.avatar_path = ':/icons/icons/default_avatar.svg'
|
2023-11-23 22:58:27 +08:00
|
|
|
self.wxid = ''
|
|
|
|
self.wx_dir = ''
|
|
|
|
self.name = ''
|
|
|
|
self.mobile = ''
|
|
|
|
|
|
|
|
def set_avatar(self, img_bytes):
|
|
|
|
if not img_bytes:
|
|
|
|
self.avatar.load(Icon.Default_avatar_path)
|
|
|
|
return
|
|
|
|
if img_bytes[:4] == b'\x89PNG':
|
|
|
|
self.avatar.loadFromData(img_bytes, format='PNG')
|
|
|
|
else:
|
|
|
|
self.avatar.loadFromData(img_bytes, format='jfif')
|
|
|
|
|
|
|
|
|
|
|
|
class ContactPC:
|
|
|
|
def __init__(self, contact_info: Dict):
|
|
|
|
self.wxid = contact_info.get('UserName')
|
|
|
|
self.remark = contact_info.get('Remark')
|
|
|
|
# Alias,Type,Remark,NickName,PYInitial,RemarkPYInitial,ContactHeadImgUrl.smallHeadImgUrl,ContactHeadImgUrl,bigHeadImgUrl
|
|
|
|
self.alias = contact_info.get('Alias')
|
|
|
|
self.nickName = contact_info.get('NickName')
|
|
|
|
if not self.remark:
|
|
|
|
self.remark = self.nickName
|
2023-12-11 22:49:17 +08:00
|
|
|
self.remark = re.sub(r'[\/:*?"<>|]', '_', self.remark)
|
2023-11-23 22:58:27 +08:00
|
|
|
self.smallHeadImgUrl = contact_info.get('smallHeadImgUrl')
|
|
|
|
self.smallHeadImgBLOG = b''
|
|
|
|
self.avatar = QPixmap()
|
2023-12-02 22:34:05 +08:00
|
|
|
self.avatar_path = Icon.Default_avatar_path
|
2023-12-17 13:15:49 +08:00
|
|
|
self.is_chatroom = self.wxid.__contains__('@chatroom')
|
2023-11-23 22:58:27 +08:00
|
|
|
|
|
|
|
def set_avatar(self, img_bytes):
|
|
|
|
if not img_bytes:
|
|
|
|
self.avatar.load(Icon.Default_avatar_path)
|
|
|
|
return
|
|
|
|
if img_bytes[:4] == b'\x89PNG':
|
|
|
|
self.avatar.loadFromData(img_bytes, format='PNG')
|
|
|
|
else:
|
|
|
|
self.avatar.loadFromData(img_bytes, format='jfif')
|
|
|
|
self.avatar.scaled(60, 60, Qt.IgnoreAspectRatio, Qt.SmoothTransformation)
|
|
|
|
|
2023-12-05 00:13:20 +08:00
|
|
|
def save_avatar(self, path=None):
|
|
|
|
if not self.avatar:
|
|
|
|
return
|
|
|
|
if path:
|
|
|
|
save_path = path
|
|
|
|
else:
|
|
|
|
os.makedirs('./data/avatar', exist_ok=True)
|
|
|
|
save_path = os.path.join(f'data/avatar/', self.wxid + '.png')
|
|
|
|
self.avatar_path = save_path
|
|
|
|
self.avatar.save(save_path)
|
|
|
|
print('保存头像', save_path)
|
|
|
|
|
2023-11-23 22:58:27 +08:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
p1 = MePC()
|
|
|
|
p2 = MePC()
|
|
|
|
print(p1 == p2)
|