Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/nbxmpp
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-10-13 12:57:29 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-10-13 12:57:29 +0300
commitaf360130ec8655f9c947fc97bee2c033d62d2798 (patch)
treecba8cb1211733d5dd09408f4daec32dbd135d390 /nbxmpp
parenta15b98aec870e0e6c8fac08f102b5da182aa0470 (diff)
Add OOB (XEP-0066) support
Diffstat (limited to 'nbxmpp')
-rw-r--r--nbxmpp/dispatcher.py2
-rw-r--r--nbxmpp/modules/oob.py49
-rw-r--r--nbxmpp/protocol.py6
-rw-r--r--nbxmpp/structs.py7
4 files changed, 64 insertions, 0 deletions
diff --git a/nbxmpp/dispatcher.py b/nbxmpp/dispatcher.py
index 70c20a7..2ba87fc 100644
--- a/nbxmpp/dispatcher.py
+++ b/nbxmpp/dispatcher.py
@@ -73,6 +73,7 @@ from nbxmpp.modules.ibb import IBB
from nbxmpp.modules.discovery import Discovery
from nbxmpp.modules.chat_markers import ChatMarkers
from nbxmpp.modules.receipts import Receipts
+from nbxmpp.modules.oob import OOB
from nbxmpp.modules.misc import unwrap_carbon
from nbxmpp.modules.misc import unwrap_mam
from nbxmpp.util import get_properties_struct
@@ -213,6 +214,7 @@ class XMPPDispatcher(PlugIn):
self._modules['Discovery'] = Discovery(self._owner)
self._modules['ChatMarkers'] = ChatMarkers(self._owner)
self._modules['Receipts'] = Receipts(self._owner)
+ self._modules['OOB'] = OOB(self._owner)
for instance in self._modules.values():
for handler in instance.handlers:
diff --git a/nbxmpp/modules/oob.py b/nbxmpp/modules/oob.py
new file mode 100644
index 0000000..c0de07f
--- /dev/null
+++ b/nbxmpp/modules/oob.py
@@ -0,0 +1,49 @@
+# Copyright (C) 2018 Philipp Hörist <philipp AT hoerist.com>
+#
+# This file is part of nbxmpp.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 3
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; If not, see <http://www.gnu.org/licenses/>.
+
+import logging
+
+from nbxmpp.protocol import NS_X_OOB
+from nbxmpp.structs import StanzaHandler
+from nbxmpp.structs import OOBData
+
+log = logging.getLogger('nbxmpp.m.oob')
+
+
+class OOB:
+ def __init__(self, client):
+ self._client = client
+ self.handlers = [
+ StanzaHandler(name='message',
+ callback=self._process_message_oob,
+ ns=NS_X_OOB,
+ priority=15),
+ ]
+
+ def _process_message_oob(self, _con, stanza, properties):
+ oob = stanza.getTag('x', namespace=NS_X_OOB)
+ if oob is None:
+ return
+
+ url = oob.getTagData('url')
+ if url is None:
+ log.warning('OOB data without url')
+ log.warning(stanza)
+ return
+
+ desc = oob.getTagData('desc')
+ properties.oob = OOBData(url, desc)
diff --git a/nbxmpp/protocol.py b/nbxmpp/protocol.py
index 504fdce..7f2926e 100644
--- a/nbxmpp/protocol.py
+++ b/nbxmpp/protocol.py
@@ -1363,6 +1363,12 @@ class Message(Protocol):
def setReceiptReceived(self, id_):
self.setTag('received', namespace=NS_RECEIPTS, attrs={'id': id_})
+ def setOOB(self, url, desc=None):
+ oob = self.setTag('x', namespace=NS_X_OOB)
+ oob.setTagData('url', url)
+ if desc is not None:
+ oob.setTagData('desc', desc)
+
class Presence(Protocol):
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index a6fe984..bfb0cdf 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -121,6 +121,8 @@ DiscoItems = namedtuple('DiscoItems', 'jid node items')
DiscoItem = namedtuple('DiscoItem', 'jid name node')
DiscoItem.__new__.__defaults__ = (None, None)
+OOBData = namedtuple('OOBData', 'url desc')
+
class DiscoInfo(namedtuple('DiscoInfo', 'stanza identities features dataforms timestamp')):
@@ -545,6 +547,7 @@ class MessageProperties:
self.pgp_legacy = None
self.marker = None
self.receipt = None
+ self.oob = None
@property
def has_user_delay(self):
@@ -625,6 +628,10 @@ class MessageProperties:
def is_receipt(self):
return self.receipt is not None
+ @property
+ def is_oob(self):
+ return self.oob is not None
+
class IqProperties:
def __init__(self):