Add a plugin for XEP-0380: Explicit Message Encryption.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||
This file is part of Slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from slixmpp.plugins.base import register_plugin
|
||||
|
||||
from slixmpp.plugins.xep_0380.stanza import Encryption
|
||||
from slixmpp.plugins.xep_0380.eme import XEP_0380
|
||||
|
||||
|
||||
register_plugin(XEP_0380)
|
||||
@@ -0,0 +1,66 @@
|
||||
"""
|
||||
Slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||
This file is part of Slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
||||
import slixmpp
|
||||
from slixmpp.stanza import Message
|
||||
from slixmpp.xmlstream.handler import Callback
|
||||
from slixmpp.xmlstream.matcher import StanzaPath
|
||||
from slixmpp.xmlstream import register_stanza_plugin, ElementBase, ET
|
||||
from slixmpp.plugins import BasePlugin
|
||||
from slixmpp.plugins.xep_0380 import stanza, Encryption
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class XEP_0380(BasePlugin):
|
||||
|
||||
"""
|
||||
XEP-0380: Explicit Message Encryption
|
||||
"""
|
||||
|
||||
name = 'xep_0380'
|
||||
description = 'XEP-0380: Explicit Message Encryption'
|
||||
dependencies = {'xep_0030'}
|
||||
default_config = {
|
||||
'template': 'This message is encrypted with {name} ({namespace})',
|
||||
}
|
||||
|
||||
mechanisms = {
|
||||
'jabber:x:encrypted': 'Legacy OpenPGP',
|
||||
'urn:xmpp:ox:0': 'OpenPGP for XMPP',
|
||||
'urn:xmpp:otr:0': 'OTR',
|
||||
'eu.siacs.conversations.axolotl': 'Legacy OMEMO',
|
||||
'urn:xmpp:omemo:0': 'OMEMO',
|
||||
}
|
||||
|
||||
def plugin_init(self):
|
||||
self.xmpp.register_handler(
|
||||
Callback('Explicit Message Encryption',
|
||||
StanzaPath('message/eme'),
|
||||
self._handle_eme))
|
||||
|
||||
register_stanza_plugin(Message, Encryption)
|
||||
|
||||
def plugin_end(self):
|
||||
self.xmpp.remove_handler('Chat State')
|
||||
|
||||
def session_bind(self, jid):
|
||||
self.xmpp.plugin['xep_0030'].add_feature(Encryption.namespace)
|
||||
|
||||
def replace_body_with_eme(self, msg):
|
||||
eme = msg['eme']
|
||||
namespace = eme['namespace']
|
||||
name = self.mechanisms[namespace] if namespace in self.mechanisms else eme['name']
|
||||
body = self.config['template'].format(name=name, namespace=namespace)
|
||||
msg['body'] = body
|
||||
|
||||
def _handle_eme(self, msg):
|
||||
self.xmpp.event('message_encryption', msg)
|
||||
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
Slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||
This file is part of Slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from slixmpp.xmlstream import ElementBase
|
||||
|
||||
|
||||
class Encryption(ElementBase):
|
||||
name = 'encryption'
|
||||
namespace = 'urn:xmpp:eme:0'
|
||||
plugin_attrib = 'eme'
|
||||
interfaces = {'namespace', 'name'}
|
||||
Reference in New Issue
Block a user