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
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-10-13 20:56:50 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-10-13 20:56:50 +0300
commit9ccb310e9d7a001c89d79add484efd9e826c7307 (patch)
treef511f0d195523b483bc1d1e79c180b7ad39deeba /nbxmpp/modules
parentaf360130ec8655f9c947fc97bee2c033d62d2798 (diff)
Add Correction (XEP-0308) support
Diffstat (limited to 'nbxmpp/modules')
-rw-r--r--nbxmpp/modules/correction.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/nbxmpp/modules/correction.py b/nbxmpp/modules/correction.py
new file mode 100644
index 0000000..d56bd29
--- /dev/null
+++ b/nbxmpp/modules/correction.py
@@ -0,0 +1,48 @@
+# 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_CORRECT
+from nbxmpp.structs import StanzaHandler
+from nbxmpp.structs import CorrectionData
+
+log = logging.getLogger('nbxmpp.m.correction')
+
+
+class Correction:
+ def __init__(self, client):
+ self._client = client
+ self.handlers = [
+ StanzaHandler(name='message',
+ callback=self._process_message_correction,
+ ns=NS_CORRECT,
+ priority=15),
+ ]
+
+ def _process_message_correction(self, _con, stanza, properties):
+ replace = stanza.getTag('replace', namespace=NS_CORRECT)
+ if replace is None:
+ return
+
+ id_ = replace.getAttr('id')
+ if id_ is None:
+ log.warning('Correcton without id attribute')
+ log.warning(stanza)
+ return
+
+ properties.correction = CorrectionData(id_)