mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-15 14:31:18 +08:00
197 lines
6.5 KiB
Python
197 lines
6.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
emoji.py
|
|
|
|
!!!声明:
|
|
由于表情包并不属于个人,并且其可能具有版权风险,你只有浏览权没有拥有权
|
|
另外访问腾讯API可能会给腾讯服务器造成压力
|
|
所以禁止任何人以任何方式修改或间接修改该文件,违者后果自负
|
|
"""
|
|
|
|
import os
|
|
import traceback
|
|
import xml.etree.ElementTree as ET
|
|
import sqlite3
|
|
import threading
|
|
import requests
|
|
|
|
from app.log import log, logger
|
|
|
|
root_path = './data/emoji/'
|
|
if not os.path.exists('./data'):
|
|
os.mkdir('./data')
|
|
if not os.path.exists(root_path):
|
|
os.mkdir(root_path)
|
|
|
|
@log
|
|
def get_image_format(header):
|
|
# 定义图片格式的 magic numbers
|
|
image_formats = {
|
|
b'\xFF\xD8\xFF': 'jpeg',
|
|
b'\x89\x50\x4E\x47\x0D\x0A\x1A\x0A': 'png',
|
|
b'\x47\x49\x46': 'gif',
|
|
b'\x42\x4D': 'bmp',
|
|
# 添加其他图片格式的 magic numbers
|
|
}
|
|
# 判断文件的图片格式
|
|
for magic_number, image_format in image_formats.items():
|
|
if header.startswith(magic_number):
|
|
return image_format
|
|
# 如果无法识别格式,返回 None
|
|
return None
|
|
|
|
@log
|
|
def parser_xml(xml_string):
|
|
assert type(xml_string) == str
|
|
# Parse the XML string
|
|
try:
|
|
root = ET.fromstring(xml_string)
|
|
except:
|
|
root = ET.fromstring(xml_string.replace("&", "&"))
|
|
emoji = root.find('./emoji')
|
|
# Accessing attributes of the 'emoji' element
|
|
fromusername = emoji.get('fromusername')
|
|
tousername = emoji.get('tousername')
|
|
md5 = emoji.get('md5')
|
|
cdnurl = emoji.get('cdnurl')
|
|
encrypturl = emoji.get('encrypturl')
|
|
thumburl = emoji.get('thumburl')
|
|
externurl = emoji.get('externurl')
|
|
androidmd5 = emoji.get('androidmd5')
|
|
width = emoji.get('width')
|
|
height = emoji.get('height')
|
|
return {
|
|
'width': width,
|
|
'height': height,
|
|
'cdnurl': cdnurl,
|
|
'thumburl': thumburl if thumburl else cdnurl,
|
|
'md5': (md5 if md5 else androidmd5).lower(),
|
|
}
|
|
|
|
def singleton(cls):
|
|
_instance = {}
|
|
|
|
def inner():
|
|
if cls not in _instance:
|
|
_instance[cls] = cls()
|
|
return _instance[cls]
|
|
|
|
return inner
|
|
|
|
lock = threading.Lock()
|
|
db_path = "./app/Database/Msg/Emotion.db"
|
|
|
|
@singleton
|
|
class Emotion:
|
|
def __init__(self):
|
|
self.DB = None
|
|
self.cursor: sqlite3.Cursor = None
|
|
self.open_flag = False
|
|
self.init_database()
|
|
|
|
def init_database(self):
|
|
if not self.open_flag:
|
|
if os.path.exists(db_path):
|
|
self.DB = sqlite3.connect(db_path, check_same_thread=False)
|
|
# '''创建游标'''
|
|
self.cursor = self.DB.cursor()
|
|
self.open_flag = True
|
|
if lock.locked():
|
|
lock.release()
|
|
|
|
def get_emoji_url(self, md5: str):
|
|
sql = '''
|
|
select CDNUrl
|
|
from CustomEmotion
|
|
where md5 = ?
|
|
'''
|
|
try:
|
|
lock.acquire(True)
|
|
self.cursor.execute(sql, [md5])
|
|
return self.cursor.fetchone()[0]
|
|
except:
|
|
md5 = md5.upper()
|
|
sql = """
|
|
select Data
|
|
from EmotionItem
|
|
where md5 = ?
|
|
"""
|
|
self.cursor.execute(sql, [md5])
|
|
try:
|
|
return self.cursor.fetchone()[0]
|
|
except:
|
|
return ""
|
|
finally:
|
|
lock.release()
|
|
|
|
emoji_db = Emotion()
|
|
|
|
def download(url, output_dir, name, thumb=False):
|
|
if not url:
|
|
return ':/icons/icons/404.png'
|
|
resp = requests.get(url)
|
|
byte = resp.content
|
|
image_format = get_image_format(byte[:8])
|
|
if image_format:
|
|
if thumb:
|
|
output_path = os.path.join(output_dir, 'th_' + name + '.' + image_format)
|
|
else:
|
|
output_path = os.path.join(output_dir, name + '.' + image_format)
|
|
else:
|
|
output_path = os.path.join(output_dir, name)
|
|
with open(output_path, 'wb') as f:
|
|
f.write(resp.content)
|
|
return output_path
|
|
|
|
|
|
def get_emoji(xml_string, thumb=True, output_path=root_path) -> str:
|
|
try:
|
|
emoji_info = parser_xml(xml_string)
|
|
md5 = emoji_info['md5']
|
|
image_format = ['.png', '.gif', '.jpeg']
|
|
for f in image_format:
|
|
prefix = 'th_' if thumb else ''
|
|
file_path = os.path.join(output_path, prefix + md5 + f)
|
|
if os.path.exists(file_path):
|
|
# print('表情包已存在', file_path)
|
|
return file_path
|
|
url = emoji_info['thumburl'] if thumb else emoji_info['cdnurl']
|
|
if not url or url == "":
|
|
url = emoji_db.get_emoji_url(md5)
|
|
if type(url) == str and url != "":
|
|
print("下载表情包ing:", url)
|
|
emoji_path = download(url, output_path, md5, thumb)
|
|
return emoji_path
|
|
elif type(url) == bytes:
|
|
image_format = get_image_format(url[:8])
|
|
if image_format:
|
|
if thumb:
|
|
output_path = os.path.join(output_path, 'th_' + md5 + '.' + image_format)
|
|
else:
|
|
output_path = os.path.join(output_path, md5 + '.' + image_format)
|
|
else:
|
|
output_path = os.path.join(output_path, md5)
|
|
with open(output_path, 'wb') as f:
|
|
f.write(url)
|
|
print("表情包数据库加载", output_path)
|
|
return output_path
|
|
else:
|
|
print("!!!未知表情包数据,信息:", xml_string, emoji_info, url)
|
|
return ""
|
|
except:
|
|
logger.error(traceback.format_exc())
|
|
return ""
|
|
|
|
|
|
if __name__ == '__main__':
|
|
db_path = r"..\DataBase\Msg\Emotion.db"
|
|
xml_string = '<msg><emoji fromusername = "wxid_05rvkbftizq822" tousername = "wxid_lhbdvh3cnn4h22" type="2" androidmd5="882A3BC82838CBD4DD419F62A22EA244" androidlen="2469" aeskey="" encrypturl="" externurl="" externmd5=""></emoji></msg>'
|
|
print(get_emoji(xml_string, thumb=False, output_path="."))
|
|
# ET.fromstring()
|
|
# print(res1, res1['md5'])
|
|
# download(res1['cdnurl'], "./data/emoji/", res1['md5'])
|
|
# download(res1['thumburl'], "./data/emoji/", res1['md5'], True)
|
|
# print(get_emoji(xml_string, True))
|
|
# print(get_emoji(xml_string, False))
|
|
# http://vweixinf.tc.qq.com/110/20403/stodownload?m=3a4d439aba02dce4834b2c54e9f15597&filekey=3043020101042f302d02016e0402534804203361346434333961626130326463653438333462326335346539663135353937020213f0040d00000004627466730000000131&hy=SH&storeid=323032313037323030373236313130303039653236646365316535316534383236386234306230303030303036653033303034666233&ef=3&bizid=1022
|