PyBitmessage/src/helper_inbox.py

17 lines
603 B
Python
Raw Normal View History

2013-08-27 12:13:40 +00:00
from helper_sql import *
import queues
def insert(t):
sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?,?)''', *t)
#shouldn't emit changedInboxUnread and displayNewInboxMessage at the same time
#queues.UISignalQueue.put(('changedInboxUnread', None))
def trash(msgid):
2013-08-27 12:13:40 +00:00
sqlExecute('''UPDATE inbox SET folder='trash' WHERE msgid=?''', msgid)
queues.UISignalQueue.put(('removeInboxRowByMsgid',msgid))
def isMessageAlreadyInInbox(sigHash):
2014-07-26 17:15:28 +00:00
queryReturn = sqlQuery(
'''SELECT COUNT(*) FROM inbox WHERE sighash=?''', sigHash)
return queryReturn[0][0] != 0