[omemo] Remove unused database code

This commit is contained in:
Philipp Hörist
2019-02-20 20:19:30 +01:00
parent 2f0aafba11
commit 7228a478ce

View File

@@ -131,11 +131,6 @@ class LiteAxolotlStore(AxolotlStore):
record BLOB, timestamp INTEGER, active INTEGER DEFAULT 1,
UNIQUE(recipient_id, device_id));
CREATE TABLE IF NOT EXISTS encryption_state (
id INTEGER PRIMARY KEY AUTOINCREMENT,
jid TEXT UNIQUE,
encryption INTEGER
);
'''
create_db_sql = """
@@ -504,27 +499,3 @@ class LiteAxolotlStore(AxolotlStore):
def isUntrustedIdentity(self, recipient_id, identity_key):
return self.getTrustForIdentity(
recipient_id, identity_key) not in (Trust.TRUSTED, Trust.UNDECIDED)
def activate(self, jid):
query = '''INSERT OR REPLACE INTO encryption_state (jid, encryption)
VALUES (?, 1)'''
self._con.execute(query, (jid,))
self._con.commit()
def deactivate(self, jid):
query = '''INSERT OR REPLACE INTO encryption_state (jid, encryption)
VALUES (?, 0)'''
self._con.execute(query, (jid, ))
self._con.commit()
def is_active(self, jid):
query = 'SELECT encryption FROM encryption_state where jid = ?'
result = self._con.execute(query, (jid,)).fetchone()
return result.encryption if result is not None else False
def exist(self, jid):
query = 'SELECT encryption FROM encryption_state where jid = ?'
result = self._con.execute(query, (jid,)).fetchone()
return result is not None