mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-05 20:08:01 +08:00
🐛 修复聊天记录显示不全 #88
This commit is contained in:
parent
b6f041b67a
commit
f6754c0db8
@ -58,7 +58,7 @@ class Msg:
|
|||||||
sql = '''
|
sql = '''
|
||||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||||
from MSG
|
from MSG
|
||||||
where StrTalker=?
|
where TRIM(StrTalker)=?
|
||||||
order by CreateTime
|
order by CreateTime
|
||||||
'''
|
'''
|
||||||
try:
|
try:
|
||||||
@ -87,11 +87,29 @@ class Msg:
|
|||||||
result.sort(key=lambda x: x[5])
|
result.sort(key=lambda x: x[5])
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
def get_messages_length(self):
|
||||||
|
sql = '''
|
||||||
|
select count(*)
|
||||||
|
from MSG
|
||||||
|
'''
|
||||||
|
if not self.open_flag:
|
||||||
|
return None
|
||||||
|
try:
|
||||||
|
lock.acquire(True)
|
||||||
|
self.cursor.execute(sql)
|
||||||
|
result = self.cursor.fetchone()
|
||||||
|
except Exception as e:
|
||||||
|
result = None
|
||||||
|
finally:
|
||||||
|
lock.release()
|
||||||
|
return result[0]
|
||||||
|
|
||||||
|
|
||||||
def get_message_by_num(self, username_, local_id):
|
def get_message_by_num(self, username_, local_id):
|
||||||
sql = '''
|
sql = '''
|
||||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
||||||
from MSG
|
from MSG
|
||||||
where StrTalker = ? and localId < ?
|
where TRIM(StrTalker) = ? and localId < ?
|
||||||
order by CreateTime desc
|
order by CreateTime desc
|
||||||
limit 10
|
limit 10
|
||||||
'''
|
'''
|
||||||
@ -115,7 +133,7 @@ class Msg:
|
|||||||
sql = '''
|
sql = '''
|
||||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||||
from MSG
|
from MSG
|
||||||
where StrTalker=? and Type=?
|
where TRIM(StrTalker)=? and Type=?
|
||||||
order by CreateTime
|
order by CreateTime
|
||||||
'''
|
'''
|
||||||
try:
|
try:
|
||||||
@ -132,7 +150,7 @@ class Msg:
|
|||||||
sql = '''
|
sql = '''
|
||||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||||
from MSG
|
from MSG
|
||||||
where StrTalker=? and Type=1 and LENGTH(StrContent)<? and StrContent like ?
|
where TRIM(StrTalker)=? and Type=1 and LENGTH(StrContent)<? and StrContent like ?
|
||||||
order by CreateTime desc
|
order by CreateTime desc
|
||||||
'''
|
'''
|
||||||
temp = []
|
temp = []
|
||||||
@ -176,7 +194,7 @@ class Msg:
|
|||||||
sql = '''
|
sql = '''
|
||||||
select StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
select StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
||||||
from MSG
|
from MSG
|
||||||
where StrTalker=?
|
where TRIM(StrTalker)=?
|
||||||
order by CreateTime
|
order by CreateTime
|
||||||
limit 1
|
limit 1
|
||||||
'''
|
'''
|
||||||
|
@ -17,6 +17,8 @@ class TextMessage(QLabel):
|
|||||||
heightSingal = pyqtSignal(int)
|
heightSingal = pyqtSignal(int)
|
||||||
|
|
||||||
def __init__(self, text, is_send=False, parent=None):
|
def __init__(self, text, is_send=False, parent=None):
|
||||||
|
if isinstance(text, bytes):
|
||||||
|
text = text.decode('utf-8')
|
||||||
super(TextMessage, self).__init__(text, parent)
|
super(TextMessage, self).__init__(text, parent)
|
||||||
font = QFont('微软雅黑', 12)
|
font = QFont('微软雅黑', 12)
|
||||||
self.setFont(font)
|
self.setFont(font)
|
||||||
|
@ -142,7 +142,7 @@ class ShowChatThread(QThread):
|
|||||||
# heightSingal = pyqtSignal(int)
|
# heightSingal = pyqtSignal(int)
|
||||||
def __init__(self, contact):
|
def __init__(self, contact):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.last_message_id = 9999999
|
self.last_message_id = msg_db.get_messages_length() or 9999999
|
||||||
self.wxid = contact.wxid
|
self.wxid = contact.wxid
|
||||||
|
|
||||||
def run(self) -> None:
|
def run(self) -> None:
|
||||||
|
Loading…
Reference in New Issue
Block a user