This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-07/src/helper_inbox.py

48 lines
1.8 KiB
Python
Raw Permalink Normal View History

2019-10-07 10:08:26 +02:00
"""Helper Inbox performs inbox messages related operations"""
2018-04-07 12:41:24 +02:00
import sqlite3
import queues
2019-10-07 16:17:40 +02:00
from helper_sql import sqlExecute, sqlQuery
2018-04-07 12:41:24 +02:00
def insert(t):
2019-10-07 10:08:26 +02:00
"""Perform an insert into the "inbox" table"""
u = [sqlite3.Binary(t[0]), t[1], t[2], t[3], t[4], t[5], t[6], t[7], t[8], sqlite3.Binary(t[9])]
sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?,?)''', *u)
2018-04-07 12:41:24 +02:00
# shouldn't emit changedInboxUnread and displayNewInboxMessage
# at the same time
# queues.UISignalQueue.put(('changedInboxUnread', None))
def trash(msgid):
2019-10-07 16:17:40 +02:00
"""Mark a message in the `inbox` as `trash`"""
rowcount = sqlExecute('''UPDATE inbox SET folder='trash' WHERE msgid=?''', sqlite3.Binary(msgid))
if rowcount < 1:
sqlExecute('''UPDATE inbox SET folder='trash' WHERE msgid=CAST(? AS TEXT)''', msgid)
2018-04-07 12:41:24 +02:00
queues.UISignalQueue.put(('removeInboxRowByMsgid', msgid))
2022-07-07 17:47:40 +02:00
def delete(ack_data):
"""Permanent delete message from trash"""
rowcount = sqlExecute("DELETE FROM inbox WHERE msgid = ?", sqlite3.Binary(ack_data))
if rowcount < 1:
sqlExecute("DELETE FROM inbox WHERE msgid = CAST(? AS TEXT)", ack_data)
2022-07-07 17:47:40 +02:00
def undeleteMessage(msgid):
"""Undelte the message"""
rowcount = sqlExecute('''UPDATE inbox SET folder='inbox' WHERE msgid=?''', sqlite3.Binary(msgid))
if rowcount < 1:
sqlExecute('''UPDATE inbox SET folder='inbox' WHERE msgid=CAST(? AS TEXT)''', msgid)
def isMessageAlreadyInInbox(sigHash):
2019-10-07 16:17:40 +02:00
"""Check for previous instances of this message"""
2014-07-26 19:15:28 +02:00
queryReturn = sqlQuery(
'''SELECT COUNT(*) FROM inbox WHERE sighash=?''', sqlite3.Binary(sigHash))
if len(queryReturn) < 1:
queryReturn = sqlQuery(
'''SELECT COUNT(*) FROM inbox WHERE sighash=CAST(? AS TEXT)''', sigHash)
return queryReturn[0][0] != 0