Mercurial > libervia-pubsub
annotate twisted/plugins/pubsub.py @ 451:0e6e176cb572
pgsql: fix items order:
Due to a misinterpretation, items where returned in wrong order when RSM was used.
Pubsub vanilla `max_items` is reversing the items order to get last items, but when this
attribute is not used (RSM being used or not), the items must be in chronological order.
This patch fixes it, so RSM returns oldest items by defaut, and empty `<before/>` must be
used to get last page (and thus most recent items).
Items are always finally ordered chronologically inside the returned page (default by
`update` time, but this can be modified when a specific order is requested).
Reference field is also fixed to use `updated` instead of `item_id` when item are ordered
by `update`.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 06 Jun 2021 19:42:57 +0200 |
parents | cc29a62fb64c |
children | 1a179ad10125 |
rev | line source |
---|---|
414 | 1 #!/usr/bin/env python3 |
233 | 2 |
440 | 3 # 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
|
4 # Copyright (c) 2003-2011 Ralph Meijer |
233 | 5 |
6 | |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
7 # 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
|
8 # 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
|
9 # 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
|
10 # (at your option) any later version. |
233 | 11 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
12 # 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
|
13 # 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
|
14 # 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
|
15 # GNU Affero General Public License for more details. |
233 | 16 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
17 # 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
|
18 # 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
|
19 # -- |
233 | 20 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
21 # 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
|
22 # 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
|
23 # 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
|
24 # license. |
233 | 25 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
26 # -- |
233 | 27 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
28 # 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
|
29 |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
30 # Copyright (c) 2003-2011 Ralph Meijer |
233 | 31 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
32 # 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
|
33 # 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
|
34 # "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
|
35 # 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
|
36 # 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
|
37 # 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
|
38 # the following conditions: |
233 | 39 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
40 # 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
|
41 # included in all copies or substantial portions of the Software. |
233 | 42 |
312
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
43 # 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
|
44 # 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
|
45 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
5d7c3787672e
fixed copyright put in docstring instead of comments
Goffi <goffi@goffi.org>
parents:
311
diff
changeset
|
46 # 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
|
47 # 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
|
48 # 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
|
49 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
233 | 50 |
155 | 51 |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
52 import sys |
380 | 53 import csv |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
54 import os |
418
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
55 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
|
56 import configparser |
89736353f6be
install sat_tmp's twisted patches for Python 3.8 compatibility
Goffi <goffi@goffi.org>
parents:
417
diff
changeset
|
57 from zope.interface import implementer |
369 | 58 from twisted.application.service import IServiceMaker |
59 from twisted.application import service | |
380 | 60 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
|
61 from twisted.plugin import IPlugin |
369 | 62 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
|
63 import sat_pubsub |
369 | 64 |
65 | |
66 | |
67 | |
380 | 68 def coerceListType(value): |
414 | 69 return next(csv.reader( |
380 | 70 [value], delimiter=",", quotechar='"', skipinitialspace=True |
414 | 71 )) |
380 | 72 |
73 | |
74 def coerceJidListType(value): | |
75 values = [JID(v) for v in coerceListType(value)] | |
76 if any((j.resource for j in values)): | |
414 | 77 raise ValueError("you must use bare jids") |
380 | 78 return values |
79 | |
80 | |
81 | |
369 | 82 OPT_PARAMETERS_BOTH = [ |
83 ['jid', None, None, 'JID this component will be available at'], | |
84 ['xmpp_pwd', None, None, 'XMPP server component password'], | |
85 ['rhost', None, '127.0.0.1', 'XMPP server host'], | |
86 ['rport', None, '5347', 'XMPP server port'], | |
87 ['backend', None, 'pgsql', 'Choice of storage backend'], | |
88 ['db_user', None, None, 'Database user (pgsql backend)'], | |
89 ['db_name', None, 'pubsub', 'Database name (pgsql backend)'], | |
90 ['db_pass', None, None, 'Database password (pgsql backend)'], | |
91 ['db_host', None, None, 'Database host (pgsql backend)'], | |
92 ['db_port', None, None, 'Database port (pgsql backend)'], | |
93 ] | |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
94 |
380 | 95 OPT_PARAMETERS_CFG = [ |
96 ["admins_jids_list", None, [], "List of administrators' bare jids", | |
97 coerceJidListType] | |
98 ] | |
369 | 99 |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
100 # prefix used for environment variables |
447
cc29a62fb64c
renaming following global Salut à Toi => Libervia renaming:
Goffi <goffi@goffi.org>
parents:
445
diff
changeset
|
101 ENV_PREFIX = "LIBERVIA_PUBSUB_" |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
102 # 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
|
103 # 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
|
104 # 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
|
105 # 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
|
106 ENV_OPT_MAP = { |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
107 # 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
|
108 'db_user': ['PGUSER'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
109 'db_name': ['PGDATABASE'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
110 'db_pass': ['PGPASSWORD'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
111 'db_host': ['PGHOST'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
112 'db_port': ['PGPORT'], |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
113 } |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
114 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
|
115 name = opt[0] |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
116 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
|
117 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
|
118 |
445
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
119 CONFIG_FILENAME = 'libervia' |
369 | 120 # 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
|
121 CONFIG_FILES = ( |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
122 [realpath(expanduser(path) + CONFIG_FILENAME + '.conf') for path in ( |
369 | 123 '/etc/', '/etc/{}/'.format(CONFIG_FILENAME), |
124 '~/', '~/.', | |
125 '.config/', '.config/.', | |
426
6f8e1c180c83
added "~/.config/sat" as search patch for config
Goffi <goffi@goffi.org>
parents:
418
diff
changeset
|
126 '.config/{}/'.format(CONFIG_FILENAME), |
369 | 127 '', '.')] |
445
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
128 + |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
129 # "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
|
130 [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
|
131 '/etc/', '/etc/{}/'.format("sat"), |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
132 '~/', '~/.', |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
133 '.config/', '.config/.', |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
134 '.config/{}/'.format("sat"), |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
135 '', '.')] |
fe24bb60236f
core: update conf file name following project renaming:
Goffi <goffi@goffi.org>
parents:
440
diff
changeset
|
136 ) |
369 | 137 CONFIG_SECTION = 'pubsub' |
138 | |
139 | |
140 class Options(usage.Options): | |
141 optParameters = OPT_PARAMETERS_BOTH | |
142 | |
143 optFlags = [ | |
144 ('verbose', 'v', 'Show traffic'), | |
145 ('hide-nodes', None, 'Hide all nodes for disco') | |
146 ] | |
147 | |
148 def __init__(self): | |
149 """Read SàT Pubsub configuration file in order to overwrite the hard-coded default values. | |
150 | |
151 Priority for the usage of the values is (from lowest to highest): | |
152 - hard-coded default values | |
153 - values from SàT configuration files | |
154 - values passed on the command line | |
155 """ | |
156 # If we do it the reading later: after the command line options have been parsed, there's no good way to know | |
157 # if the options values are the hard-coded ones or if they have been passed on the command line. | |
158 | |
159 # FIXME: must be refactored + code can be factorised with backend | |
414 | 160 config_parser = configparser.ConfigParser() |
369 | 161 config_parser.read(CONFIG_FILES) |
162 for param in self.optParameters + OPT_PARAMETERS_CFG: | |
163 name = param[0] | |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
164 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
|
165 # 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
|
166 value = os.getenv(env_name) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
167 if value is not None: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
168 self.setDefaultOption(param, value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
169 break |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
170 else: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
171 # no environment variable set, let's try with configuration |
369 | 172 try: |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
173 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
|
174 self.setDefaultOption(param, value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
175 except (configparser.NoSectionError, configparser.NoOptionError): |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
176 pass |
369 | 177 usage.Options.__init__(self) |
178 for opt_data in OPT_PARAMETERS_CFG: | |
179 self[opt_data[0]] = opt_data[2] | |
155 | 180 |
428
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
181 def setDefaultOption(self, param, value): |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
182 """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
|
183 |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
184 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
|
185 """ |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
186 try: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
187 param[2] = param[4](value) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
188 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
|
189 param[2] = value |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
190 except Exception as e: |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
191 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
|
192 name=name, msg=e)) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
193 sys.exit(1) |
34bd55179e22
environment variables can now be used to set options:
Goffi <goffi@goffi.org>
parents:
426
diff
changeset
|
194 |
369 | 195 def postOptions(self): |
196 if self['backend'] not in ['pgsql', 'memory']: | |
406 | 197 raise usage.UsageError("Unknown backend!") |
369 | 198 if self['backend'] == 'memory': |
199 raise NotImplementedError('memory backend is not available at the moment') | |
200 | |
201 self['jid'] = JID(self['jid']) if self['jid'] else None | |
202 | |
203 | |
414 | 204 @implementer(IServiceMaker, IPlugin) |
369 | 205 class SatPubsubMaker(object): |
447
cc29a62fb64c
renaming following global Salut à Toi => Libervia renaming:
Goffi <goffi@goffi.org>
parents:
445
diff
changeset
|
206 tapname = "libervia-pubsub" |
cc29a62fb64c
renaming following global Salut à Toi => Libervia renaming:
Goffi <goffi@goffi.org>
parents:
445
diff
changeset
|
207 description = "Libervia's Publish-Subscribe Service Component" |
369 | 208 options = Options |
209 | |
210 def makeService(self, config): | |
417
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
211 from wokkel.component import Component |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
212 from wokkel.disco import DiscoHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
213 from wokkel.generic import FallbackHandler, VersionHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
214 from wokkel.iwokkel import IPubSubResource |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
215 from wokkel import data_form |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
216 from wokkel import pubsub |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
217 from wokkel import rsm |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
218 from wokkel import mam |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
219 from sat_pubsub import const |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
220 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
|
221 from sat_pubsub import pubsub_admin |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
222 from sat_pubsub.backend import BackendService, ExtraDiscoHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
223 from sat_pubsub.privilege import PrivilegesHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
224 from sat_pubsub.delegation import DelegationsHandler |
412d26a9b2c2
import sat/wokkel modules only when making service:
Goffi <goffi@goffi.org>
parents:
414
diff
changeset
|
225 |
369 | 226 if not config['jid'] or not config['xmpp_pwd']: |
227 raise usage.UsageError("You must specify jid and xmpp_pwd") | |
228 s = service.MultiService() | |
229 | |
230 # Create backend service with storage | |
231 | |
232 if config['backend'] == 'pgsql': | |
233 from twisted.enterprise import adbapi | |
234 from sat_pubsub.pgsql_storage import Storage | |
235 from psycopg2.extras import NamedTupleConnection | |
236 keys_map = { | |
237 'db_user': 'user', | |
238 'db_pass': 'password', | |
239 'db_name': 'database', | |
240 'db_host': 'host', | |
241 'db_port': 'port', | |
242 } | |
243 kwargs = {} | |
414 | 244 for config_k, k in keys_map.items(): |
369 | 245 v = config.get(config_k) |
246 if v is None: | |
247 continue | |
248 kwargs[k] = v | |
249 dbpool = adbapi.ConnectionPool('psycopg2', | |
250 cp_reconnect=True, | |
251 client_encoding='utf-8', | |
252 connection_factory=NamedTupleConnection, | |
253 **kwargs | |
254 ) | |
255 st = Storage(dbpool) | |
256 elif config['backend'] == 'memory': | |
406 | 257 raise NotImplementedError('memory backend is not available at the moment') |
369 | 258 |
380 | 259 bs = BackendService(st, config) |
369 | 260 bs.setName('backend') |
261 bs.setServiceParent(s) | |
262 | |
263 # Set up XMPP server-side component with publish-subscribe capabilities | |
264 | |
265 cs = Component(config["rhost"], int(config["rport"]), | |
266 config["jid"].full(), config["xmpp_pwd"]) | |
267 cs.setName('component') | |
268 cs.setServiceParent(s) | |
269 | |
270 cs.factory.maxDelay = 900 | |
271 | |
272 if config["verbose"]: | |
273 cs.logTraffic = True | |
274 | |
275 FallbackHandler().setHandlerParent(cs) | |
414 | 276 VersionHandler('SàT Pubsub', sat_pubsub.__version__).setHandlerParent(cs) |
369 | 277 DiscoHandler().setHandlerParent(cs) |
278 | |
279 ph = PrivilegesHandler(config['jid']) | |
280 ph.setHandlerParent(cs) | |
281 bs.privilege = ph | |
282 | |
283 resource = IPubSubResource(bs) | |
284 resource.hideNodes = config["hide-nodes"] | |
285 resource.serviceJID = config["jid"] | |
286 | |
287 ps = (rsm if const.FLAG_ENABLE_RSM else pubsub).PubSubService(resource) | |
288 ps.setHandlerParent(cs) | |
289 resource.pubsubService = ps | |
290 | |
291 if const.FLAG_ENABLE_MAM: | |
292 mam_resource = pubsub_mam.MAMResource(bs) | |
293 mam_s = mam.MAMService(mam_resource) | |
294 mam_s.addFilter(data_form.Field(var=const.MAM_FILTER_CATEGORY)) | |
430 | 295 mam_s.addFilter(data_form.Field(var=const.MAM_FILTER_FTS)) |
369 | 296 mam_s.setHandlerParent(cs) |
297 | |
382
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
298 pa = pubsub_admin.PubsubAdminHandler(bs) |
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
299 pa.setHandlerParent(cs) |
77b52dbda89a
pubsub_admin: Pubsub Admin experimental protocol first draft:
Goffi <goffi@goffi.org>
parents:
380
diff
changeset
|
300 |
375
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
301 # wokkel.pubsub doesn't handle non pubsub# disco |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
302 # 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
|
303 # to add them |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
304 # FIXME: propose a patch upstream to fix this situation |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
305 ed = ExtraDiscoHandler() |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
306 ed.setHandlerParent(cs) |
9a787881b824
implemented Order-By ProtoXEP (MAM + PubSub)
Goffi <goffi@goffi.org>
parents:
369
diff
changeset
|
307 |
369 | 308 # XXX: delegation must be instancied at the end, |
309 # because it does some MonkeyPatching on handlers | |
310 dh = DelegationsHandler() | |
311 dh.setHandlerParent(cs) | |
312 bs.delegation = dh | |
313 | |
314 return s | |
315 | |
316 serviceMaker = SatPubsubMaker() |