Mercurial > libervia-pubsub
annotate twisted/plugins/pubsub.py @ 445:fe24bb60236f
core: update conf file name following project renaming:
As "Salut à Toi" has been renamed to "Libervia", the conf file is now named
`libervia.conf`. To keep backward compatibility, `sat.conf` is still checked for the
moment.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 21 Mar 2021 14:38:00 +0100 |
parents | 074037832daf |
children | cc29a62fb64c |
rev | line source |
---|---|
414 | 1 #!/usr/bin/env python3 |
233 | 2 #-*- coding: utf-8 -*- |
3 | |
440 | 4 # Copyright (c) 2012-2021 Jérôme Poisson |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
5 # Copyright (c) 2003-2011 Ralph Meijer |
233 | 6 |
7 | |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
8 # This program is free software: you can redistribute it and/or modify |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
9 # it under the terms of the GNU Affero General Public License as published by |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
10 # the Free Software Foundation, either version 3 of the License, or |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
11 # (at your option) any later version. |
233 | 12 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
13 # This program is distributed in the hope that it will be useful, |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
16 # GNU Affero General Public License for more details. |
233 | 17 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
18 # You should have received a copy of the GNU Affero General Public License |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
19 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
20 # -- |
233 | 21 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
22 # This program is based on Idavoll (http://idavoll.ik.nu/), |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
23 # originaly written by Ralph Meijer (http://ralphm.net/blog/) |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
24 # It is sublicensed under AGPL v3 (or any later version) as allowed by the original |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
25 # license. |
233 | 26 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
27 # -- |
233 | 28 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
29 # Here is a copy of the original license: |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
30 |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
31 # Copyright (c) 2003-2011 Ralph Meijer |
233 | 32 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
33 # Permission is hereby granted, free of charge, to any person obtaining |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
34 # a copy of this software and associated documentation files (the |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
35 # "Software"), to deal in the Software without restriction, including |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
36 # without limitation the rights to use, copy, modify, merge, publish, |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
37 # distribute, sublicense, and/or sell copies of the Software, and to |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
38 # permit persons to whom the Software is furnished to do so, subject to |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
39 # the following conditions: |
233 | 40 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
41 # The above copyright notice and this permission notice shall be |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
42 # included in all copies or substantial portions of the Software. |
233 | 43 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
44 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
45 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
46 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
47 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
48 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
49 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
50 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
233 | 51 |
155 | 52 |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
53 import sys |
380 | 54 import csv |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
55 import os |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
56 from os.path import expanduser, realpath |
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
57 import configparser |
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
58 from zope.interface import implementer |
369 | 59 from twisted.application.service import IServiceMaker |
60 from twisted.application import service | |
380 | 61 from twisted.python import usage, log |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
62 from twisted.plugin import IPlugin |
369 | 63 from twisted.words.protocols.jabber.jid import JID |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
64 import sat_pubsub |
369 | 65 |
66 | |
67 | |
68 | |
380 | 69 def coerceListType(value): |
414 | 70 return next(csv.reader( |
380 | 71 [value], delimiter=",", quotechar='"', skipinitialspace=True |
414 | 72 )) |
380 | 73 |
74 | |
75 def coerceJidListType(value): | |
76 values = [JID(v) for v in coerceListType(value)] | |
77 if any((j.resource for j in values)): | |
414 | 78 raise ValueError("you must use bare jids") |
380 | 79 return values |
80 | |
81 | |
82 | |
369 | 83 OPT_PARAMETERS_BOTH = [ |
84 ['jid', None, None, 'JID this component will be available at'], | |
85 ['xmpp_pwd', None, None, 'XMPP server component password'], | |
86 ['rhost', None, '127.0.0.1', 'XMPP server host'], | |
87 ['rport', None, '5347', 'XMPP server port'], | |
88 ['backend', None, 'pgsql', 'Choice of storage backend'], | |
89 ['db_user', None, None, 'Database user (pgsql backend)'], | |
90 ['db_name', None, 'pubsub', 'Database name (pgsql backend)'], | |
91 ['db_pass', None, None, 'Database password (pgsql backend)'], | |
92 ['db_host', None, None, 'Database host (pgsql backend)'], | |
93 ['db_port', None, None, 'Database port (pgsql backend)'], | |
94 ] | |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
95 |
380 | 96 OPT_PARAMETERS_CFG = [ |
97 ["admins_jids_list", None, [], "List of administrators' bare jids", | |
98 coerceJidListType] | |
99 ] | |
369 | 100 |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
101 # prefix used for environment variables |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
102 ENV_PREFIX = "SAT_PUBSUB_" |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
103 # mapping from option name to environment variables to use |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
104 # each parameter name links to a list of variable environment name |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
105 # if an environment variable of one of the names exists it will be used |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
106 # as default value, with priority over config file |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
107 ENV_OPT_MAP = { |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
108 # we use the same environment variables as PostgreSQL |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
109 'db_user': ['PGUSER'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
110 'db_name': ['PGDATABASE'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
111 'db_pass': ['PGPASSWORD'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
112 'db_host': ['PGHOST'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
113 'db_port': ['PGPORT'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
114 } |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
115 for opt in OPT_PARAMETERS_BOTH + OPT_PARAMETERS_CFG: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
116 name = opt[0] |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
117 env_name = f"{ENV_PREFIX}{name.upper()}" |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
118 ENV_OPT_MAP.setdefault(name, []).append(env_name) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
119 |
445
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
120 CONFIG_FILENAME = 'libervia' |
369 | 121 # List of the configuration filenames sorted by ascending priority |
445
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
122 CONFIG_FILES = ( |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
123 [realpath(expanduser(path) + CONFIG_FILENAME + '.conf') for path in ( |
369 | 124 '/etc/', '/etc/{}/'.format(CONFIG_FILENAME), |
125 '~/', '~/.', | |
126 '.config/', '.config/.', | |
426
6f8e1c180c83
added "~/.config/sat" as search patch for config
Goffi <goffi@goffi.org>
parents:
418
diff
changeset
|
127 '.config/{}/'.format(CONFIG_FILENAME), |
369 | 128 '', '.')] |
445
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
129 + |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
130 # "sat.conf" is the legacy name of the config file |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
131 [realpath(expanduser(path) + "sat.conf") for path in ( |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
132 '/etc/', '/etc/{}/'.format("sat"), |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
133 '~/', '~/.', |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
134 '.config/', '.config/.', |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
135 '.config/{}/'.format("sat"), |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
136 '', '.')] |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
137 ) |
369 | 138 CONFIG_SECTION = 'pubsub' |
139 | |
140 | |
141 class Options(usage.Options): | |
142 optParameters = OPT_PARAMETERS_BOTH | |
143 | |
144 optFlags = [ | |
145 ('verbose', 'v', 'Show traffic'), | |
146 ('hide-nodes', None, 'Hide all nodes for disco') | |
147 ] | |
148 | |
149 def __init__(self): | |
150 """Read SàT Pubsub configuration file in order to overwrite the hard-coded default values. | |
151 | |
152 Priority for the usage of the values is (from lowest to highest): | |
153 - hard-coded default values | |
154 - values from SàT configuration files | |
155 - values passed on the command line | |
156 """ | |
157 # If we do it the reading later: after the command line options have been parsed, there's no good way to know | |
158 # if the options values are the hard-coded ones or if they have been passed on the command line. | |
159 | |
160 # FIXME: must be refactored + code can be factorised with backend | |
414 | 161 config_parser = configparser.ConfigParser() |
369 | 162 config_parser.read(CONFIG_FILES) |
163 for param in self.optParameters + OPT_PARAMETERS_CFG: | |
164 name = param[0] | |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
165 for env_name in ENV_OPT_MAP[name]: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
166 # we first check if value is set as an environment variable |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
167 value = os.getenv(env_name) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
168 if value is not None: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
169 self.setDefaultOption(param, value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
170 break |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
171 else: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
172 # no environment variable set, let's try with configuration |
369 | 173 try: |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
174 value = config_parser.get(CONFIG_SECTION, name) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
175 self.setDefaultOption(param, value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
176 except (configparser.NoSectionError, configparser.NoOptionError): |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
177 pass |
369 | 178 usage.Options.__init__(self) |
179 for opt_data in OPT_PARAMETERS_CFG: | |
180 self[opt_data[0]] = opt_data[2] | |
155 | 181 |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
182 def setDefaultOption(self, param, value): |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
183 """Set default option value using coerce method when needed |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
184 |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
185 If the value is invalid, we quit the program with exit code 1 |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
186 """ |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
187 try: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
188 param[2] = param[4](value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
189 except IndexError: # the coerce method is optional |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
190 param[2] = value |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
191 except Exception as e: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
192 log.err('Invalid value for setting "{name}": {msg}'.format( |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
193 name=name, msg=e)) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
194 sys.exit(1) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
195 |
369 | 196 def postOptions(self): |
197 if self['backend'] not in ['pgsql', 'memory']: | |
406 | 198 raise usage.UsageError("Unknown backend!") |
369 | 199 if self['backend'] == 'memory': |
200 raise NotImplementedError('memory backend is not available at the moment') | |
201 | |
202 self['jid'] = JID(self['jid']) if self['jid'] else None | |
203 | |
204 | |
414 | 205 @implementer(IServiceMaker, IPlugin) |
369 | 206 class SatPubsubMaker(object): |
207 tapname = "sat-pubsub" | |
414 | 208 description = "Salut à Toi Publish-Subscribe Service Component" |
369 | 209 options = Options |
210 | |
211 def makeService(self, config): | |
417
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
212 from wokkel.component import Component |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
213 from wokkel.disco import DiscoHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
214 from wokkel.generic import FallbackHandler, VersionHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
215 from wokkel.iwokkel import IPubSubResource |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
216 from wokkel import data_form |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
217 from wokkel import pubsub |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
218 from wokkel import rsm |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
219 from wokkel import mam |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
220 from sat_pubsub import const |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
221 from sat_pubsub import mam as pubsub_mam |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
222 from sat_pubsub import pubsub_admin |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
223 from sat_pubsub.backend import BackendService, ExtraDiscoHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
224 from sat_pubsub.privilege import PrivilegesHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
225 from sat_pubsub.delegation import DelegationsHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
226 |
369 | 227 if not config['jid'] or not config['xmpp_pwd']: |
228 raise usage.UsageError("You must specify jid and xmpp_pwd") | |
229 s = service.MultiService() | |
230 | |
231 # Create backend service with storage | |
232 | |
233 if config['backend'] == 'pgsql': | |
234 from twisted.enterprise import adbapi | |
235 from sat_pubsub.pgsql_storage import Storage | |
236 from psycopg2.extras import NamedTupleConnection | |
237 keys_map = { | |
238 'db_user': 'user', | |
239 'db_pass': 'password', | |
240 'db_name': 'database', | |
241 'db_host': 'host', | |
242 'db_port': 'port', | |
243 } | |
244 kwargs = {} | |
414 | 245 for config_k, k in keys_map.items(): |
369 | 246 v = config.get(config_k) |
247 if v is None: | |
248 continue | |
249 kwargs[k] = v | |
250 dbpool = adbapi.ConnectionPool('psycopg2', | |
251 cp_reconnect=True, | |
252 client_encoding='utf-8', | |
253 connection_factory=NamedTupleConnection, | |
254 **kwargs | |
255 ) | |
256 st = Storage(dbpool) | |
257 elif config['backend'] == 'memory': | |
406 | 258 raise NotImplementedError('memory backend is not available at the moment') |
369 | 259 |
380 | 260 bs = BackendService(st, config) |
369 | 261 bs.setName('backend') |
262 bs.setServiceParent(s) | |
263 | |
264 # Set up XMPP server-side component with publish-subscribe capabilities | |
265 | |
266 cs = Component(config["rhost"], int(config["rport"]), | |
267 config["jid"].full(), config["xmpp_pwd"]) | |
268 cs.setName('component') | |
269 cs.setServiceParent(s) | |
270 | |
271 cs.factory.maxDelay = 900 | |
272 | |
273 if config["verbose"]: | |
274 cs.logTraffic = True | |
275 | |
276 FallbackHandler().setHandlerParent(cs) | |
414 | 277 VersionHandler('SàT Pubsub', sat_pubsub.__version__).setHandlerParent(cs) |
369 | 278 DiscoHandler().setHandlerParent(cs) |
279 | |
280 ph = PrivilegesHandler(config['jid']) | |
281 ph.setHandlerParent(cs) | |
282 bs.privilege = ph | |
283 | |
284 resource = IPubSubResource(bs) | |
285 resource.hideNodes = config["hide-nodes"] | |
286 resource.serviceJID = config["jid"] | |
287 | |
288 ps = (rsm if const.FLAG_ENABLE_RSM else pubsub).PubSubService(resource) | |
289 ps.setHandlerParent(cs) | |
290 resource.pubsubService = ps | |
291 | |
292 if const.FLAG_ENABLE_MAM: | |
293 mam_resource = pubsub_mam.MAMResource(bs) | |
294 mam_s = mam.MAMService(mam_resource) | |
295 mam_s.addFilter(data_form.Field(var=const.MAM_FILTER_CATEGORY)) | |
430 | 296 mam_s.addFilter(data_form.Field(var=const.MAM_FILTER_FTS)) |
369 | 297 mam_s.setHandlerParent(cs) |
298 | |
382
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
299 pa = pubsub_admin.PubsubAdminHandler(bs) |
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
300 pa.setHandlerParent(cs) |
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
301 |
375
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
302 # wokkel.pubsub doesn't handle non pubsub# disco |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
303 # and we need to announce other feature, so this is a workaround |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
304 # to add them |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
305 # FIXME: propose a patch upstream to fix this situation |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
306 ed = ExtraDiscoHandler() |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
307 ed.setHandlerParent(cs) |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
308 |
369 | 309 # XXX: delegation must be instancied at the end, |
310 # because it does some MonkeyPatching on handlers | |
311 dh = DelegationsHandler() | |
312 dh.setHandlerParent(cs) | |
313 bs.delegation = dh | |
314 | |
315 return s | |
316 | |
317 serviceMaker = SatPubsubMaker() |