comparison src/plugins/plugin_tmp_directory_subscription.py @ 1810:25c3569abb71

plugin XEP-0055, tmp_directory_subscription: move directory subscription to a new temporary plugin
author souliane <souliane@mailoo.org>
date Thu, 17 Sep 2015 11:04:17 +0200
parents
children 2daf7b4c6756
comparison
equal deleted inserted replaced
1809:821c77574ad9 1810:25c3569abb71
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3
4 # SAT plugin for directory subscription
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Jérôme Poisson (goffi@goffi.org)
6 # Copyright (C) 2015, 2016 Adrien Cossa (souliane@mailoo.org)
7
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU Affero General Public License for more details.
17
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 from sat.core.i18n import _, D_
22 from sat.core.log import getLogger
23 log = getLogger(__name__)
24
25
26 PLUGIN_INFO = {
27 "name": "Directory subscription plugin",
28 "import_name": "DIRECTORY-SUBSCRIPTION",
29 "type": "TMP",
30 "protocols": [],
31 "dependencies": ["XEP-0050", "XEP-0055"],
32 "recommendations": [],
33 "main": "DirectorySubscription",
34 "handler": "no",
35 "description": _("""Implementation of directory subscription""")
36 }
37
38
39 NS_COMMANDS = "http://jabber.org/protocol/commands"
40 CMD_UPDATE_SUBSCRIBTION = "update"
41
42
43 class DirectorySubscription(object):
44
45 def __init__(self, host):
46 log.info(_("Directory subscription plugin initialization"))
47 self.host = host
48 host.importMenu((D_("Service"), D_("Directory subscription")), self.subscribe, security_limit=1, help_string=D_("User directory subscription"))
49
50 def subscribe(self, raw_data, profile):
51 """Request available commands on the jabber search service associated to profile's host.
52
53 @param raw_data (dict): data received from the frontend
54 @param profile (unicode): %(doc_profile)s
55 @return: a deferred dict{unicode: unicode}
56 """
57 d = self.host.plugins["XEP-0055"]._getHostServices(profile)
58
59 def got_services(services):
60 service_jid = services[0]
61 session_id, session_data = self.host.plugins["XEP-0050"].requesting.newSession(profile=profile)
62 session_data["jid"] = service_jid
63 session_data["node"] = CMD_UPDATE_SUBSCRIBTION
64 data = {"session_id": session_id}
65 return self.host.plugins["XEP-0050"]._requestingEntity(data, profile)
66
67 return d.addCallback(got_services)