WeChatMsg/app/DataBase/micro_msg.py

124 lines
3.7 KiB
Python
Raw Normal View History

2023-11-15 21:57:29 +08:00
import os.path
2023-11-12 21:51:33 +08:00
import sqlite3
2023-11-18 11:51:58 +08:00
import threading
2023-11-12 21:51:33 +08:00
2024-01-03 20:40:04 +08:00
2023-11-18 11:51:58 +08:00
lock = threading.Lock()
db_path = "./app/Database/Msg/MicroMsg.db"
2023-11-15 21:57:29 +08:00
def singleton(cls):
_instance = {}
def inner():
if cls not in _instance:
_instance[cls] = cls()
return _instance[cls]
return inner
2023-11-16 00:13:49 +08:00
2023-11-15 21:57:29 +08:00
def is_database_exist():
return os.path.exists(db_path)
class MicroMsg:
def __init__(self):
self.DB = None
self.cursor = None
self.open_flag = False
self.init_database()
2023-11-12 21:51:33 +08:00
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()
2023-11-12 21:51:33 +08:00
def get_contact(self):
if not self.open_flag:
return None
try:
lock.acquire(True)
2024-01-03 20:40:04 +08:00
sql = '''SELECT UserName, Alias, Type, Remark, NickName, PYInitial, RemarkPYInitial, ContactHeadImgUrl.smallHeadImgUrl, ContactHeadImgUrl.bigHeadImgUrl,ExTraBuf,COALESCE(ContactLabel.LabelName, 'None') AS labelName
2023-12-04 16:34:26 +08:00
FROM Contact
INNER JOIN ContactHeadImgUrl ON Contact.UserName = ContactHeadImgUrl.usrName
2024-01-03 20:40:04 +08:00
LEFT JOIN ContactLabel ON Contact.LabelIDList = ContactLabel.LabelId
2023-12-23 19:39:40 +08:00
WHERE (Type!=4)
2023-12-04 16:34:26 +08:00
AND NickName != ''
ORDER BY
CASE
WHEN RemarkPYInitial = '' THEN PYInitial
ELSE RemarkPYInitial
END ASC
'''
self.cursor.execute(sql)
result = self.cursor.fetchall()
finally:
lock.release()
from app.DataBase import msg_db
return msg_db.get_contact(result)
2023-11-12 21:51:33 +08:00
def get_contact_by_username(self, username):
if not self.open_flag:
return None
try:
lock.acquire(True)
2023-12-29 21:50:17 +08:00
sql = '''
2024-01-03 20:40:04 +08:00
SELECT UserName, Alias, Type, Remark, NickName, PYInitial, RemarkPYInitial, ContactHeadImgUrl.smallHeadImgUrl, ContactHeadImgUrl.bigHeadImgUrl,ExTraBuf,ContactLabel.LabelName
2023-12-29 21:50:17 +08:00
FROM Contact
INNER JOIN ContactHeadImgUrl ON Contact.UserName = ContactHeadImgUrl.usrName
2024-01-03 20:40:04 +08:00
LEFT JOIN ContactLabel ON Contact.LabelIDList = ContactLabel.LabelId
2023-12-29 21:50:17 +08:00
WHERE UserName = ?
'''
self.cursor.execute(sql, [username])
result = self.cursor.fetchone()
finally:
lock.release()
2024-01-03 20:40:04 +08:00
return result
def get_chatroom_info(self, chatroomname):
'''
获取群聊信息
'''
if not self.open_flag:
return None
try:
lock.acquire(True)
sql = '''SELECT ChatRoomName, RoomData FROM ChatRoom WHERE ChatRoomName = ?'''
self.cursor.execute(sql, [chatroomname])
result = self.cursor.fetchone()
finally:
lock.release()
return result
def close(self):
if self.open_flag:
try:
lock.acquire(True)
self.open_flag = False
self.DB.close()
finally:
lock.release()
2023-11-12 21:51:33 +08:00
def __del__(self):
self.close()
2023-11-16 23:16:38 +08:00
2023-11-12 21:51:33 +08:00
if __name__ == '__main__':
2024-01-03 20:40:04 +08:00
db_path = "./app/database/Msg/MicroMsg.db"
msg = MicroMsg()
msg.init_database()
contacts = msg.get_contact()
from app.DataBase.hard_link import decodeExtraBuf
for contact in contacts:
print(contact[-2])
buf = contact[9]
info = decodeExtraBuf(buf)
2024-01-03 22:23:26 +08:00
print(info)