slixmpp-omemo/plugin.py

94 lines
2.4 KiB
Python
Raw Normal View History

2018-05-11 01:51:37 +00:00
"""
Slixmpp: The Slick XMPP Library
Copyright (C) 2018 Maxime pep Buquet <pep@bouah.net>
This file is part of Slixmpp.
See the file LICENSE for copying permission.
"""
import logging
from slixmpp.jid import JID
2018-05-14 09:16:54 +00:00
import base64
2018-05-11 01:51:37 +00:00
from slixmpp.plugins.xep_0384.stanza import OMEMO_BASE_NS
from slixmpp.plugins.xep_0384.stanza import OMEMO_DEVICES_NS, OMEMO_BUNDLE_NS
from slixmpp.plugins.base import BasePlugin, register_plugin
log = logging.getLogger(__name__)
HAS_OMEMO = True
try:
import omemo
2018-05-14 10:07:32 +00:00
from slixmpp.plugins.xep_0384.session import SessionManager
except ImportError as e:
HAS_OMEMO = False
2018-05-11 01:51:37 +00:00
2018-05-14 09:16:54 +00:00
def b64enc(data):
return base64.b64encode(bytes(bytearray(data))).decode('ASCII')
def b64dec(data):
return base64.b64decode(data.decode('ASCII'))
2018-05-11 01:51:37 +00:00
class XEP_0384(BasePlugin):
"""
XEP-0384: OMEMO
"""
name = 'xep_0384'
description = 'XEP-0384 OMEMO'
dependencies = {'xep_0163'}
2018-05-14 10:07:32 +00:00
default_config = {
'cache_dir': None,
}
backend_loaded = HAS_OMEMO
2018-05-11 01:51:37 +00:00
device_ids = {}
def plugin_init(self):
if not self.backend_loaded:
log.debug("xep_0384 cannot be loaded as the backend omemo library "
"is not available")
return
2018-05-14 10:07:32 +00:00
self._omemo = SessionManager(
self.xmpp.boundjid,
self.cache_dir,
)
self._device_id = self._omemo.get_own_device_id()
2018-05-11 01:51:37 +00:00
self.xmpp.add_event_handler('pubsub_publish', self.device_list)
def plugin_end(self):
if not self.backend_loaded:
return
2018-05-11 01:51:37 +00:00
self.xmpp.del_event_handler('pubsub_publish', self.device_list)
self.xmpp['xep_0163'].remove_interest(OMEMO_DEVICES_NS)
def session_bind(self, _jid):
self.xmpp['xep_0163'].add_interest(OMEMO_DEVICES_NS)
def device_list(self, msg):
if msg['pubsub_event']['items']['node'] != OMEMO_DEVICES_NS:
return
jid = JID(msg['from']).bare
items = msg['pubsub_event']['items']
for item in items:
device_ids = [d['id'] for d in item['devices']]
2018-05-11 01:51:37 +00:00
if jid not in self.device_ids:
self.device_ids[jid] = device_ids
self.xmpp.event('omemo_device_ids', (jid, device_ids))
# XXX: There should only be one item so this is fine, but slixmpp
# loops forever otherwise. ???
return
register_plugin(XEP_0384)