annotate sat/plugins/plugin_xep_0049.py @ 3028:ab2696e34d29

Python 3 port: /!\ this is a huge commit /!\ starting from this commit, SàT is needs Python 3.6+ /!\ SàT maybe be instable or some feature may not work anymore, this will improve with time This patch port backend, bridge and frontends to Python 3. Roughly this has been done this way: - 2to3 tools has been applied (with python 3.7) - all references to python2 have been replaced with python3 (notably shebangs) - fixed files not handled by 2to3 (notably the shell script) - several manual fixes - fixed issues reported by Python 3 that where not handled in Python 2 - replaced "async" with "async_" when needed (it's a reserved word from Python 3.7) - replaced zope's "implements" with @implementer decorator - temporary hack to handle data pickled in database, as str or bytes may be returned, to be checked later - fixed hash comparison for password - removed some code which is not needed anymore with Python 3 - deactivated some code which needs to be checked (notably certificate validation) - tested with jp, fixed reported issues until some basic commands worked - ported Primitivus (after porting dependencies like urwid satext) - more manual fixes
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 19:08:41 +0200
parents 003b8b4b56a7
children 9d0df638c8b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
1 #!/usr/bin/env python3
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
3
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
4 # SAT plugin for managing xep-0049
2771
003b8b4b56a7 date update
Goffi <goffi@goffi.org>
parents: 2624
diff changeset
5 # Copyright (C) 2009-2019 Jérôme Poisson (goffi@goffi.org)
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
6
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
7 # This program is free software: you can redistribute it and/or modify
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
10 # (at your option) any later version.
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
11
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
12 # This program is distributed in the hope that it will be useful,
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
15 # GNU Affero General Public License for more details.
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
16
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
19
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
20 from sat.core.i18n import _
2145
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
21 from sat.core.constants import Const as C
993
301b342c697a core: use of the new core.log module:
Goffi <goffi@goffi.org>
parents: 989
diff changeset
22 from sat.core.log import getLogger
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
23
993
301b342c697a core: use of the new core.log module:
Goffi <goffi@goffi.org>
parents: 989
diff changeset
24 log = getLogger(__name__)
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
25 from wokkel import compat
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
26 from twisted.words.xish import domish
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
27
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
28
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
29 PLUGIN_INFO = {
2145
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
30 C.PI_NAME: "XEP-0049 Plugin",
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
31 C.PI_IMPORT_NAME: "XEP-0049",
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
32 C.PI_TYPE: "XEP",
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
33 C.PI_PROTOCOLS: ["XEP-0049"],
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
34 C.PI_DEPENDENCIES: [],
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
35 C.PI_MAIN: "XEP_0049",
33c8c4973743 core (plugins): added missing contants + use of new constants in PLUGIN_INFO
Goffi <goffi@goffi.org>
parents: 1934
diff changeset
36 C.PI_HANDLER: "no",
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
37 C.PI_DESCRIPTION: _("""Implementation of private XML storage"""),
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
38 }
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
39
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
40
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
41 class XEP_0049(object):
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
42 NS_PRIVATE = "jabber:iq:private"
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
43
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
44 def __init__(self, host):
993
301b342c697a core: use of the new core.log module:
Goffi <goffi@goffi.org>
parents: 989
diff changeset
45 log.info(_("Plugin XEP-0049 initialization"))
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
46 self.host = host
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
47
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
48 def privateXMLStore(self, element, profile_key):
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
49 """Store private data
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
50 @param element: domish.Element to store (must have a namespace)
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
51 @param profile_key: %(doc_profile_key)s
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
52
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
53 """
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
54 assert isinstance(element, domish.Element)
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
55 client = self.host.getClient(profile_key)
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
56 # XXX: feature announcement in disco#info is not mandatory in XEP-0049, so we have to try to use private XML, and react according to the answer
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
57 iq_elt = compat.IQ(client.xmlstream)
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
58 query_elt = iq_elt.addElement("query", XEP_0049.NS_PRIVATE)
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
59 query_elt.addChild(element)
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
60 return iq_elt.send()
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
61
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
62 def privateXMLGet(self, node_name, namespace, profile_key):
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
63 """Store private data
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
64 @param node_name: name of the node to get
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
65 @param namespace: namespace of the node to get
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
66 @param profile_key: %(doc_profile_key)s
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
67 @return (domish.Element): a deferred which fire the stored data
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
68
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
69 """
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
70 client = self.host.getClient(profile_key)
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
71 # XXX: see privateXMLStore note about feature checking
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
72 iq_elt = compat.IQ(client.xmlstream, "get")
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
73 query_elt = iq_elt.addElement("query", XEP_0049.NS_PRIVATE)
980
f0bba18835ef plugin XEP-0049: private xml storage
Goffi <goffi@goffi.org>
parents:
diff changeset
74 query_elt.addElement(node_name, namespace)
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
75
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
76 def getCb(answer_iq_elt):
3028
ab2696e34d29 Python 3 port:
Goffi <goffi@goffi.org>
parents: 2771
diff changeset
77 answer_query_elt = next(answer_iq_elt.elements(XEP_0049.NS_PRIVATE, "query"))
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
78 return answer_query_elt.firstChildElement()
2624
56f94936df1e code style reformatting using black
Goffi <goffi@goffi.org>
parents: 2562
diff changeset
79
989
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
80 d = iq_elt.send()
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
81 d.addCallback(getCb)
93359853e4bc plugins XEP-0048, XEP-0049: feature is not checked anymore before using private XML storage, as feature announcement is not mandatory in XEP-0049
Goffi <goffi@goffi.org>
parents: 980
diff changeset
82 return d