Mercurial > psgxs
annotate psgxs.js @ 18:75625771e410
Send subscription request only if node access_model is authorize.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 19 Oct 2010 18:51:34 +0200 |
parents | ec7cea92fe8a |
children | 032090a13fe8 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env node |
2 | |
3 /* | |
4 * Copyright (C) 2010 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | |
5 * | |
6 * This file is part of PSĜS, a PubSub server written in JavaScript. | |
7 * | |
8 * PSĜS is free software: you can redistribute it and/or modify | |
9 * it under the terms of the GNU Affero General Public License as | |
10 * published by the Free Software Foundation, either version 3 of the | |
11 * License. | |
12 * | |
13 * PSĜS 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 PSĜS. If not, see <http://www.gnu.org/licenses/>. | |
20 */ | |
21 | |
22 var xmpp = require('xmpp'); | |
23 var sha1 = require('sha1'); | |
24 require('./iso8601'); | |
25 var storage = require('./storage'); | |
26 var errors = require('./errors'); | |
27 var utils = require('./util'); | |
28 var toBareJID = utils.toBareJID; | |
29 var config = require('./configuration'); | |
30 var forms = require('./forms'); | |
31 var conn = new xmpp.Connection(); | |
32 | |
33 var service_configuration = config.service_configuration; | |
34 var componentJID = config.jid; | |
35 var componentPassword = config.password; | |
36 | |
12
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
37 conn.log = function (_, m) { console.log(m); }; |
0 | 38 |
12
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
39 function _(obj, color) { |
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
40 var str = require('sys').inspect(obj, false, null); |
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
41 if (color) |
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
42 console.log('\033['+c+';1m' + str + '\033[0m'); |
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
43 else |
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
44 console.log(str); |
0 | 45 }; |
46 | |
11
0ed3c06c5191
Add an uncaught exceptions caughter to prevent the server from crashing.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
47 process.addListener('uncaughtException', function (err) { |
17
ec7cea92fe8a
Show stack on unhandled error.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
12
diff
changeset
|
48 console.log('\033[41;1mUncaught exception (' + err + '), this should never happen:\033[0m\n' + err.stack); |
11
0ed3c06c5191
Add an uncaught exceptions caughter to prevent the server from crashing.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
49 }); |
0ed3c06c5191
Add an uncaught exceptions caughter to prevent the server from crashing.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
50 |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
51 if (typeof xmpp.StanzaBuilder.cnode != 'function' || typeof xmpp.StanzaBuilder.prototype.cnode != 'function') { |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
52 xmpp.StanzaBuilder.prototype.cnode = function (stanza) |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
53 { |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
54 var parent = this; |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
55 parent.tags.push(stanza); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
56 parent.children.push(stanza); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
57 return this; |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
58 }; |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
59 } |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
60 |
0 | 61 function onIq(stanza) { |
62 var type = stanza.getAttribute('type'); | |
63 var from = stanza.getAttribute('to'); | |
64 var to = stanza.getAttribute('from'); | |
65 var id = stanza.getAttribute('id'); | |
66 | |
67 var response; | |
68 if (id) | |
69 response = xmpp.iq({to: to, from: from, type: 'result', id: id}); | |
70 else | |
71 response = xmpp.iq({to: to, from: from, type: 'result'}); | |
72 | |
73 if (type == 'get') { | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
74 |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
75 // XEP-0092: Software Version |
0 | 76 if (stanza.getChild('query', 'jabber:iq:version')) { |
77 var query = xmpp.stanza('query', {xmlns: 'jabber:iq:version'}) | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
78 .s('name').t('PSĜS') |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
79 .s('version').t(config.version) |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
80 .s('os').t(config.os); |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
81 response.cnode(query); |
0 | 82 |
83 // SECTION 5.1 | |
84 } else if (stanza.getChild('query', 'http://jabber.org/protocol/disco#info')) { | |
85 var query = stanza.getChild('query', 'http://jabber.org/protocol/disco#info'); | |
86 var nodeID = query.getAttribute('node'); | |
87 | |
88 // SECTION 5.3 | |
89 if (nodeID && nodeID != '') { | |
90 if (!storage.existsNode(nodeID)) | |
91 return makeError(response, errors.node_does_not_exist.n); | |
92 | |
93 var conf = storage.getConfiguration(nodeID); | |
94 if (typeof conf == 'number') | |
95 return makeError(response, conf); | |
96 | |
97 var type = 'leaf' | |
98 if (conf['pubsub#node_type']) | |
99 type = conf['pubsub#node_type']; | |
100 | |
6 | 101 var q = xmpp.stanza('query', {xmlns: 'http://jabber.org/protocol/disco#info', node: nodeID}) |
0 | 102 q.s('identity', {category: 'pubsub', type: type}); |
103 q.s('feature', {'var': 'http://jabber.org/protocol/pubsub'}); | |
104 | |
105 // SECTION 5.4 | |
106 if (config.enabled('meta-data')) { | |
4
4c93e76fa371
Ensure that the creator of a node is the default owner; don’t crash
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
3
diff
changeset
|
107 var x = forms.build('result', 'node_metadata', storage.getMetadata(nodeID), true); |
0 | 108 if (x) |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
109 q.cnode(x); |
0 | 110 } |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
111 response.cnode(q); |
0 | 112 |
113 // SECTION 5.1 | |
114 } else { | |
115 var q = xmpp.stanza('query', {xmlns: 'http://jabber.org/protocol/disco#info'}) | |
116 .s('identity', {category: 'pubsub', type: 'service', name: 'PubSub JavaScript Server'}) | |
117 .s('feature', {'var': 'http://jabber.org/protocol/disco#info'}) | |
118 .s('feature', {'var': 'http://jabber.org/protocol/disco#items'}) | |
119 .s('feature', {'var': 'http://jabber.org/protocol/pubsub'}) | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
120 .s('feature', {'var': 'jabber:iq:version'}) |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
121 .s('feature', {'var': 'http://jabber.org/protocol/commands'}); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
122 |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
123 for (var i in config.activated) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
124 if (typeof i == 'string') |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
125 q.s('feature', {'var': 'http://jabber.org/protocol/pubsub#' + config.activated[i]}); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
126 |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
127 response.cnode(q); |
0 | 128 } |
129 | |
130 // SECTION 5.2 | |
131 } else if (stanza.getChild('query', 'http://jabber.org/protocol/disco#items')) { | |
132 var query = stanza.getChild('query', 'http://jabber.org/protocol/disco#items'); | |
133 var q; | |
134 var children; | |
135 var nodeID = query.getAttribute('node'); | |
136 if (nodeID && nodeID != '') { | |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
137 if (nodeID == 'http://jabber.org/protocol/commands') { |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
138 // XEP-0050: Ad-Hoc Commands |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
139 |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
140 q = xmpp.stanza('query', {xmlns: 'http://jabber.org/protocol/disco#items', node: nodeID}) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
141 .s('item', {jid: componentJID, node: 'ping', name: 'Ping'}) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
142 .s('item', {jid: componentJID, node: 'reload', name: 'Reload'}); |
0 | 143 |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
144 response.cnode(q); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
145 return conn.send(response); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
146 } else { |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
147 if (!storage.existsNode(nodeID)) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
148 return makeError(response, errors.node_does_not_exist.n); |
0 | 149 |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
150 q = xmpp.stanza('query', {xmlns: 'http://jabber.org/protocol/disco#items', node: nodeID}); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
151 |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
152 children = storage.getChildren(nodeID); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
153 if (typeof children == 'number') |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
154 return makeError(response, children); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
155 } |
0 | 156 } else { |
157 q = xmpp.stanza('query', {xmlns: 'http://jabber.org/protocol/disco#items'}); | |
158 | |
159 children = storage.getChildren(); | |
160 if (typeof children == 'number') | |
161 return makeError(response, children); | |
162 } | |
163 | |
164 for (var i in children) { | |
165 var attr = {jid: componentJID}; | |
166 if (children[i] == 'node') { | |
167 if (config.enabled('meta-data')) { | |
168 var metadata = storage.getMetadata(i); | |
169 if (metadata['pubsub#title']) | |
170 attr.name = metadata['pubsub#title']; | |
171 } | |
172 attr.node = i; | |
173 | |
174 // SECTION 5.5 | |
175 } else | |
176 attr.name = i; | |
177 | |
178 q.s('item', attr); | |
179 } | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
180 response.cnode(q); |
0 | 181 } else if (stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub')) { |
182 var pubsub = stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub'); | |
183 | |
184 // SECTION 5.6 | |
185 if (pubsub.getChild('subscriptions')) { | |
186 if (!config.enabled('retrieve-subscriptions')) | |
187 return makeError(response, errors.subscriptions_retrieval_not_supported.n); | |
188 | |
189 var subscriptions = pubsub.getChild('subscriptions'); | |
190 var subs; | |
191 | |
192 var nodeID = subscriptions.getAttribute('node'); | |
193 if (nodeID && nodeID != '') { | |
194 if (!storage.existsNode(nodeID)) | |
195 return makeError(response, errors.node_does_not_exist.n); | |
196 subs = storage.getSubscription(toBareJID(to), node); | |
197 } else | |
198 subs = storage.getSubscription(toBareJID(to)); | |
199 | |
200 var s = xmpp.stanza('subscriptions'); | |
201 for (i in subs) | |
202 s.s('subscription', {node: i, jid: to, subscription: subs[i].type, subid: subs[i].subid}); | |
203 | |
204 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
205 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
206 response.cnode(p); |
0 | 207 |
208 // SECTION 5.7 | |
209 } else if (pubsub.getChild('affiliations')) { | |
210 if (!config.enabled('retrieve-affiliations')) | |
211 return makeError(response, errors.affiliations_retrieval_not_supported.n); | |
212 | |
213 var affiliations = pubsub.getChild('affiliations'); | |
214 var nodeID = affiliations.getAttribute('node'); | |
215 var affils; | |
216 if (nodeID && nodeID != '') { | |
217 if (!storage.existsNode(nodeID)) | |
218 return makeError(response, errors.node_does_not_exist.n); | |
6 | 219 affils = {}; |
220 affils[nodeID] = storage.getAffiliation(toBareJID(to), nodeID); | |
0 | 221 } else |
222 affils = storage.getAffiliationsFromJID(toBareJID(to)); | |
6 | 223 |
0 | 224 var s = xmpp.stanza('affiliations'); |
225 for (i in affils) | |
226 s.s('affiliation', {node: i, affiliation: affils[i]}); | |
6 | 227 |
0 | 228 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}); |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
229 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
230 response.cnode(p); |
0 | 231 |
232 // SECTION 6.3.2 | |
233 } else if (pubsub.getChild('options')) { | |
234 if (!config.enabled('subscription-options')) | |
235 return makeError(response, errors.sub.configure.subscription_options_not_supported.n); | |
236 | |
237 var options = pubsub.getChild('options'); | |
238 | |
239 var nodeID = options.getAttribute('node'); | |
240 if (!nodeID || nodeID == '') | |
241 return makeError(response, errors.nodeid_required.n); | |
242 if (!storage.existsNode(nodeID)) | |
243 return makeError(response, errors.node_does_not_exist.n); | |
244 | |
245 var jid = options.getAttribute('jid'); | |
246 if (!jid) | |
247 return makeError(response, errors.sub.configure.subscriber_jid_required.n); | |
248 if (toBareJID(jid) != toBareJID(to)) | |
249 return makeError(response, errors.sub.configure.insufficient_privileges.n); | |
250 | |
251 var subs = storage.getSubscription(jid, nodeID); | |
252 if (subs == {}) | |
253 return makeError(response, errors.sub.configure.no_such_subscriber.n); | |
254 | |
255 var s = xmpp.stanza('options', {node: nodeID, jid: jid}); | |
256 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}); | |
257 var form = forms.build('form', 'subscribe_options', subs.options, true); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
258 s.cnode(form); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
259 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
260 response.cnode(p); |
0 | 261 |
262 // SECTION 6.4 | |
263 } else if (pubsub.getChild('default')) { | |
264 if (!config.enabled('retrieve-default-sub')) | |
265 return makeError(response, errors.sub.default_options.default_subscription_configuration_retrieval_not_supported.n); | |
266 | |
267 var def = pubsub.getChild('default'); | |
268 | |
269 var nodeID = def.getAttribute('node'); | |
270 if (nodeID && !storage.existsNode(nodeID)) | |
271 return makeError(response, errors.node_does_not_exist.n); | |
272 | |
273 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}); | |
274 var s; | |
275 if (nodeID) | |
276 s = xmpp.stanza('default', {node: nodeID}); | |
277 else | |
278 s = xmpp.stanza('default'); | |
279 | |
280 var form = forms.build('form', 'subscribe_options', 'default', false); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
281 s.cnode(form); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
282 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
283 response.cnode(p); |
0 | 284 |
285 // SECTION 6.5 | |
286 } else if (pubsub.getChild('items')) { | |
287 if (!config.enabled('retrieve-items')) | |
288 return makeError(response, errors.sub.default_options.node_configuration_not_supported.n); | |
289 | |
290 var items = pubsub.getChild('items'); | |
291 | |
292 var nodeID = items.getAttribute('node'); | |
293 if (!nodeID || nodeID == '') | |
294 return makeError(response, errors.nodeid_required.n); | |
295 if (!storage.existsNode(nodeID)) | |
296 return makeError(response, errors.node_does_not_exist.n); | |
297 | |
6 | 298 var configuration = storage.getConfiguration(nodeID); |
299 if (configuration['pubsub#access_model'] == 'whitelist') { | |
300 var affil = storage.getAffiliation(toBareJID(to), nodeID); | |
301 if (affil != 'super-owner' && affil != 'owner' && affil != 'publisher' && affil != 'member') | |
302 return makeError(response, errors.pub.publish.insufficient_privileges.n); | |
303 } | |
0 | 304 |
305 var item = []; | |
306 for (var i=0; i<items.children.length; i++) { | |
307 var j = items.children[i]; | |
308 if (j.name == 'item' && j.attr['id'] && j.attr['id'] != '') | |
309 item.push(j.attr['id']); | |
310 } | |
311 | |
312 var max_items = items.getAttribute('max_items'); | |
313 if (max_items) | |
314 max_items = Number (max_items); | |
315 | |
316 if (item.length) { | |
317 var s = xmpp.stanza('items', {node: nodeID}); | |
318 | |
319 for (var i=0; i<item.length; i++) { | |
320 var j = storage.getItem(nodeID, item[i]); | |
321 if (typeof j == 'number') | |
322 return makeError(response, j); | |
10
44889cfb2f8c
Fix getItem method.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
9
diff
changeset
|
323 if (j == errors.success) |
44889cfb2f8c
Fix getItem method.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
9
diff
changeset
|
324 continue; |
0 | 325 |
326 var k = xmpp.stanza('item', {id: item[i]}) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
327 k.cnode(j); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
328 s.cnode(k); |
0 | 329 } |
330 } else { | |
331 var s = xmpp.stanza('items', {node: nodeID}); | |
332 | |
333 var j; | |
334 if (max_items) | |
335 j = storage.getLastItem(nodeID, max_items); | |
336 else | |
337 j = storage.getItems(nodeID); | |
338 if (typeof j == 'number') | |
339 return makeError(response, j); | |
340 | |
341 var k = 0; | |
342 for (var i in j) { | |
343 var contentItem = xmpp.stanza('item', {id: i}).t(j[i].content); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
344 s.cnode(contentItem); |
0 | 345 } |
346 } | |
347 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
348 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
349 response.cnode(p); |
0 | 350 } else |
351 return makeError(response, errors.feature_not_implemented.n); | |
352 } else if (stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub#owner')) { | |
353 var pubsub = stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub#owner'); | |
354 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
355 // SECTION 8.2 |
0 | 356 if (pubsub.getChild('configure')) { |
357 if (!config.enabled('config-node')) | |
358 return makeError(response, errors.owner.configure.node_configuration_not_supported.n); | |
359 | |
360 var nodeID = pubsub.getChild('configure').getAttribute('node'); | |
361 if (!nodeID || nodeID == '') | |
362 return makeError(response, errors.nodeid_required.n); | |
363 if (!storage.existsNode(nodeID)) | |
364 return makeError(response, errors.node_does_not_exist.n); | |
365 | |
366 var affil = storage.getAffiliation(toBareJID(to), nodeID); | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
367 if (affil != 'super-owner' && affil != 'owner' && affil != 'publish-only') |
0 | 368 return makeError(response, errors.pub.publish.insufficient_privileges.n); |
369 | |
370 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub#owner'}); | |
371 var s = xmpp.stanza('configure', {node: nodeID}); | |
372 var form = forms.build('form', 'node_config', 'default', true); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
373 s.cnode(form); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
374 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
375 response.cnode(p); |
0 | 376 |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
377 // SECTION 8.3 |
0 | 378 } else if (pubsub.getChild('default')) { |
379 if (!config.enabled('config-node')) | |
380 return makeError(response, errors.owner.default_options.node_configuration_not_supported.n); | |
381 | |
382 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub#owner'}); | |
383 var s = xmpp.stanza('default'); | |
384 var form = forms.build('node_config', service_configuration.node_config, null, true); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
385 s.cnode(form); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
386 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
387 response.cnode(p); |
0 | 388 |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
389 // SECTION 8.8 |
0 | 390 } else if (pubsub.getChild('subscriptions')) { |
391 if (!config.enabled('manage-subscriptions')) | |
392 return makeError(response, errors.owner.manage_subscriptions.not_supported.n); | |
393 | |
394 var subscriptions = pubsub.getChild('subscriptions'); | |
395 | |
396 var nodeID = subscriptions.getAttribute('node'); | |
397 if (!nodeID || nodeID == '') | |
398 return makeError(response, errors.nodeid_required.n); | |
399 if (!storage.existsNode(nodeID)) | |
400 return makeError(response, errors.node_does_not_exist.n); | |
401 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
402 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
403 if (affil != 'super-owner' && affil != 'owner') |
0 | 404 return makeError(response, errors.forbidden.n); |
405 | |
406 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub#owner'}); | |
407 var s = xmpp.stanza('subscriptions', {node: nodeID}); | |
408 | |
409 var subs = storage.getSubscriptionsFromNodeID(nodeID) | |
410 for (var jid in subs) | |
411 s.s('subscription', {jid: jid, subscription: subs[jid].type, subid: subs[jid].subid}) | |
412 | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
413 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
414 response.cnode(p); |
0 | 415 |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
416 // SECTION 8.9 |
0 | 417 } else if (pubsub.getChild('affiliations')) { |
418 if (!config.enabled('modify-affiliations')) | |
419 return makeError(response, errors.owner.manage_affiliations.not_supported.n); | |
420 | |
421 var affiliations = pubsub.getChild('affiliations'); | |
422 | |
423 var nodeID = affiliations.getAttribute('node'); | |
424 if (!nodeID || nodeID == '') | |
425 return makeError(response, errors.nodeid_required.n); | |
426 if (!storage.existsNode(nodeID)) | |
427 return makeError(response, errors.node_does_not_exist.n); | |
428 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
429 var affils = storage.getAffiliationsFromNodeID(nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
430 var affil = affils[toBareJID(to)]; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
431 if (affil != 'super-owner' && affil != 'owner') |
0 | 432 return makeError(response, errors.owner.manage_affiliations.retrieve_list.entity_is_not_an_owner.n); |
433 | |
434 var p = xmpp.stanza('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub#owner'}); | |
435 var s = xmpp.stanza('affiliations', {node: nodeID}); | |
436 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
437 for (var jid in affils) |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
438 s.s('affiliation', {jid: jid, affiliation: affils[jid]}) |
0 | 439 |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
440 p.cnode(s); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
441 response.cnode(p); |
0 | 442 } else |
443 return makeError(response, errors.feature_not_implemented.n); | |
444 } else | |
445 return makeError(response, errors.feature_not_implemented.n); | |
446 } else if (type == 'set') { | |
9
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
447 if (stanza.getChild('command', 'http://jabber.org/protocol/commands')) { |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
448 // XEP-0050: Ad-Hoc Commands |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
449 var command = stanza.getChild('command', 'http://jabber.org/protocol/commands'); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
450 |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
451 var action = command.getAttribute('action'); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
452 if (action != 'execute') |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
453 return makeError(response, errors.bad_request.n); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
454 |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
455 var node = command.getAttribute('node'); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
456 if (node == 'ping') { |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
457 var cmd = xmpp.stanza('command', {xmlns: 'http://jabber.org/protocol/commands', |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
458 // sessionid: 'list:20020923T213616Z-700', |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
459 node: node, |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
460 'status': 'completed'}) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
461 .c('note', {type: 'info'}).t('pong'); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
462 response.cnode(cmd); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
463 } else if (node == 'reload') { |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
464 storage.load(); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
465 response.c('command', {xmlns: 'http://jabber.org/protocol/commands', |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
466 node: node, |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
467 'status': 'completed'}) |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
468 .c('note', {type: 'info'}).t('The server has correctly reloaded.'); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
469 } else |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
470 return makeError(response, errors.bad_request.n); |
a6429f48e403
First implementation of XEP-0050 (ad-hoc commands).
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
471 } else if (stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub')) { |
0 | 472 var pubsub = stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub'); |
473 | |
474 // SECTION 6.1 | |
475 if (pubsub.getChild('subscribe')) { | |
476 if (!config.enabled('subscribe')) | |
477 return makeError(response, errors.sub.subscribe.not_supported.n); | |
478 | |
479 var subscribe = pubsub.getChild('subscribe'); | |
480 | |
481 var nodeID = subscribe.getAttribute('node'); | |
482 if (!nodeID || nodeID == '') | |
483 return makeError(response, errors.nodeid_required.n); | |
484 if (!storage.existsNode(nodeID)) | |
485 return makeError(response, errors.node_does_not_exist.n); | |
486 | |
487 var configuration = storage.getConfiguration(nodeID); | |
488 if (!configuration['pubsub#subscribe']) | |
489 return makeError(response, errors.sub.subscribe.not_supported.n); | |
490 | |
491 var affil = storage.getAffiliation(toBareJID(to), nodeID); | |
492 if (affil == 'publish-only' || affil == 'outcast') | |
493 return makeError(response, errors.pub.publish.insufficient_privileges.n); | |
494 | |
495 var jid = subscribe.getAttribute('jid'); | |
496 if (!jid || toBareJID(jid) != toBareJID(to)) | |
497 return makeError(response, errors.sub.subscribe.jids_do_not_match.n); | |
498 | |
499 // SECTION 6.3.7 | |
500 var options = pubsub.getChild('options'); | |
501 if (options && config.enabled('subscription-options')) { | |
502 if (options.getAttribute('node') || options.getAttribute('jid')) | |
503 return makeError(response, errors.bad_request.n); | |
504 | |
505 var x = options.getChild('x', 'jabber:x:data'); | |
506 if (!x || x.getAttribute('type') != 'submit') | |
507 return makeError(response, errors.bad_request.n); | |
508 | |
509 var form = forms.parse(x, true); | |
510 if (typeof form == 'number') | |
511 return makeError(response, form); | |
512 | |
513 var conf = form; | |
514 } | |
515 | |
516 var subID; | |
517 if (configuration['pubsub#access_model'] == 'open') { | |
518 subID = storage.subscribe(nodeID, jid, 'subscribe', conf); | |
519 if (typeof subID == 'number') | |
520 return makeError(response, subID); | |
521 } else if (configuration['pubsub#access_model'] == 'authorize') { | |
522 subID = storage.subscribe(nodeID, jid, 'pending', conf); | |
523 if (typeof subID == 'number') | |
524 return makeError(response, subID); | |
18
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
525 |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
526 var affiliates = storage.getAffiliationsFromNodeID(nodeID); |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
527 var form = forms.build('form', 'subscribe_authorization', {allow: false, node: nodeID, subscriber_jid: jid}, true); //168 |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
528 |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
529 for (var i in affiliates) { |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
530 if (affiliates[i] == 'super-owner' || affiliates[i] == 'owner') { |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
531 var message = xmpp.message({to: i}).cnode(form); |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
532 conn.send(message); |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
533 } |
75625771e410
Send subscription request only if node access_model is authorize.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
17
diff
changeset
|
534 } |
0 | 535 } else if (configuration['pubsub#access_model'] == 'whitelist') { |
536 var affil = storage.getAffiliation(jid, nodeID); | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
537 if (affil != 'super-owner' && affil != 'owner' && affil != 'publisher' && affil != 'member') |
0 | 538 return makeError(response, errors.sub.subscribe.not_on_whitelist.n); |
539 | |
540 subID = storage.subscribe(nodeID, jid, conf); | |
541 if (typeof subID == 'number') | |
542 return makeError(response, subID); | |
543 } | |
544 | |
545 response.c('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}) | |
546 .c('subscription', {node: nodeID, jid: jid, subid: subID.subid, subscription: subID.type}); | |
547 | |
548 if (conf) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
549 response.cnode(options); |
0 | 550 |
551 if (config.enabled('last-published')) { | |
552 var last = storage.getLastItem(nodeID); | |
553 if (typeof last != 'number') { | |
554 var item = storage.getItem(nodeID, last); | |
555 if (typeof item != 'number') { | |
556 var attr = {}; | |
557 attr[last] = {content: item}; | |
558 sendNotifs(jid, 'items', nodeID, attr); | |
559 } | |
560 } | |
561 } | |
562 | |
563 // SECTION 6.2 | |
564 } else if (pubsub.getChild('unsubscribe')) { | |
565 if (!config.enabled('subscribe')) | |
566 return makeError(response, errors.sub.subscribe.not_supported.n); | |
567 | |
568 var unsubscribe = pubsub.getChild('unsubscribe'); | |
569 var nodeID = unsubscribe.getAttribute('node'); | |
570 if (!nodeID || nodeID == '') | |
571 return makeError(response, errors.nodeid_required.n); | |
572 if (!storage.existsNode(nodeID)) | |
573 return makeError(response, errors.node_does_not_exist.n); | |
574 | |
575 var jid = unsubscribe.getAttribute('jid'); | |
576 if (!jid || toBareJID(jid) != toBareJID(to)) | |
577 return makeError(response, errors.sub.unsubscribe.insufficient_privileges.n); | |
578 | |
579 var subID = storage.subscribe(nodeID, jid, 'none'); | |
580 if (typeof subID == 'number') | |
581 return makeError(response, subID); | |
582 | |
583 // SECTIONS 6.3.5 | |
584 } else if (pubsub.getChild('options')) { | |
585 if (!config.enabled('subscription-options')) | |
586 return makeError(response, errors.sub.subscribe.not_supported.n); | |
587 | |
588 var options = pubsub.getChild('options'); | |
589 | |
590 var nodeID = unsubscribe.getAttribute('node'); | |
591 if (!nodeID || nodeID == '') | |
592 return makeError(response, errors.nodeid_required.n); | |
593 if (!storage.existsNode(nodeID)) | |
594 return makeError(response, errors.node_does_not_exist.n); | |
595 | |
596 var jid = unsubscribe.getAttribute('jid'); | |
597 if (!jid || toBareJID(jid) != toBareJID(to)) | |
598 return makeError(response, errors.sub.unsubscribe.insufficient_privileges.n); | |
599 | |
600 var x = options.getChild('x', 'jabber:x:data'); | |
601 if (!x || x.getAttribute(type) != 'submit') | |
602 return makeError(response, errors.bad_request); | |
603 | |
604 var form = forms.parse(x, true); | |
605 if (typeof form == 'number') | |
606 return makeError(response, form); | |
607 | |
608 var set = storage.configureSubscription(nodeID, jid, form); | |
609 if (typeof form == 'number') | |
610 return makeError(response, form); | |
611 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
612 // SECTION 7.1 |
0 | 613 } else if (pubsub.getChild('publish')) { |
614 if (!config.enabled('publish')) | |
615 return makeError(response, errors.pub.publish.item_publication_not_supported.n); | |
616 | |
617 var publish = pubsub.getChild('publish'); | |
618 var nodeID = publish.getAttribute('node'); | |
619 if (!nodeID || nodeID == '') | |
620 return makeError(response, errors.nodeid_required.n); | |
621 | |
6 | 622 var autocreate = false; |
623 if (!storage.existsNode(nodeID)) { | |
624 if (config.enabled('auto-create')) | |
625 autocreate = true; | |
626 else | |
627 return makeError(response, errors.node_does_not_exist.n); | |
628 } | |
629 | |
0 | 630 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
6 | 631 if (typeof affil == 'number' && affil != errors.node_does_not_exist.n) |
0 | 632 return makeError(response, affil); |
6 | 633 if (!autocreate && affil != 'super-owner' && affil != 'owner' && affil != 'publisher' && affil != 'publish-only') |
0 | 634 return makeError(response, errors.forbidden.n); |
635 | |
636 var item = publish.getChild('item'); | |
637 var itemID = item.getAttribute('id'); | |
638 if (!config.enabled('item-ids') && itemID) | |
639 return makeError(response, errors.itemid_required.n); | |
640 itemID = itemID? itemID: utils.makeRandomId(); | |
641 | |
642 if (item.tags.length != 1) | |
643 return makeError(response, errors.pub.publish.bad_payload.n); | |
644 | |
645 var conf = storage.getConfiguration(nodeID); | |
646 var publishOptions = pubsub.getChild('publish-options'); | |
647 if (publishOptions && config.enabled('publish-options')) { | |
648 var x = publishOptions.getChild('x', 'jabber:x:data'); | |
649 if (!x || x.getAttribute('type') != 'submit') | |
650 return makeError(response, errors.bad_request.n); | |
651 | |
652 var form = forms.parse(x, true); | |
653 if (form.access_model != conf['pubsub#access_model'] && !autocreate) | |
654 return makeError(response, errors.pub.configuration.precondition.n); | |
655 } | |
656 | |
657 if (!config.enabled('persistent-items')) { | |
658 var notifs = storage.purgeNode(nodeID); | |
659 if (typeof notifs == 'number') | |
660 return makeError(response, r); | |
661 } | |
662 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
663 if (autocreate) { |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
664 if (!form) |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
665 form = {}; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
666 form['pubsub#creator'] = toBareJID(to); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
667 |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
668 var r = storage.createNode(nodeID, form); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
669 if (typeof r == 'number') |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
670 return makeError(response, r); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
671 } |
0 | 672 |
673 var content = item.getChild(); | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
674 |
0 | 675 subscribers = storage.setItem(nodeID, itemID, content); |
676 if (typeof subscribers == 'number') | |
677 return makeError(response, subscribers); | |
678 | |
679 var attrs = {}; | |
680 if (content) | |
681 attrs[itemID] = {content: content}; | |
682 else | |
683 attrs[itemID] = {}; | |
684 sendNotifs(subscribers, 'items', nodeID, attrs); | |
685 | |
686 response.c('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}) | |
687 .c('publish', {node: nodeID}) | |
688 .c('item', {id: itemID}); | |
689 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
690 // SECTION 7.2 |
0 | 691 } else if (pubsub.getChild('retract')) { |
692 if (!config.enabled('retract-items')) | |
693 return makeError(response, errors.pub.retract.item_deletion_not_supported.n); | |
694 | |
695 var retract = pubsub.getChild('retract'); | |
696 | |
697 var nodeID = retract.getAttribute('node'); | |
698 if (!nodeID || nodeID == '') | |
699 return makeError(response, errors.nodeid_required.n); | |
700 if (!storage.existsNode(nodeID)) | |
701 return makeError(response, errors.node_does_not_exist.n); | |
702 | |
703 var item = retract.getChild('item'); | |
704 if (!item) | |
705 return makeError(response, errors.pub.retract.item_or_itemid_required.n); | |
706 | |
707 var itemID = item.getAttribute('id') | |
708 if (!itemID || itemID == '') | |
709 return makeError(response, errors.pub.retract.item_or_itemid_required.n); | |
710 | |
6 | 711 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
712 if (affil != 'super-owner' && affil != 'owner' && affil != 'publish-only') | |
713 return makeError(response, errors.forbidden.n); | |
714 | |
0 | 715 var subscribers = storage.deleteItem(nodeID, itemID); |
716 if (typeof subscribers == 'number') | |
717 return makeError(response, subscribers); | |
718 | |
719 var attrs = {}; | |
720 attrs[itemID] = {}; | |
721 sendNotifs(subscribers, 'items', nodeID, attrs, 'retract') | |
722 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
723 // SECTION 8.1 |
0 | 724 } else if (pubsub.getChild('create')) { |
725 if (!config.enabled('create-nodes')) | |
726 return makeError(response, errors.owner.create.node_creation_not_supported.n); | |
727 | |
728 var instant = false; | |
729 | |
730 var nodeID = pubsub.getChild('create').getAttribute('node'); | |
731 if (!nodeID || nodeID == '') { | |
4
4c93e76fa371
Ensure that the creator of a node is the default owner; don’t crash
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
3
diff
changeset
|
732 if (!config.enabled('instant-nodes')) |
0 | 733 return makeError(response, errors.owner.create.instant_nodes_not_supported.n); |
734 nodeID = utils.makeRandomId(); | |
735 instant = true; | |
736 } | |
737 if (storage.existsNode(nodeID)) | |
738 return makeError(response, errors.nodeid_already_exists.n); | |
739 | |
2
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
740 var bare = toBareJID(to); |
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
741 var right = false; |
7
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
742 |
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
743 // Check for super-owner |
2
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
744 for (var i in config.owner) |
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
745 if (config.owner[i] == bare) |
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
746 right = true; |
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
747 |
7
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
748 // Check for authorized user |
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
749 for (var i in config.allowCreateNode) |
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
750 if (config.allowCreateNode[i].exec(bare)) |
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
751 right = true; |
781ac4f1e304
Allow others JIDs than super-owners to create nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
6
diff
changeset
|
752 |
2
d3ae2f8b685d
Make create node working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
1
diff
changeset
|
753 if (!right) |
0 | 754 return makeError(response, errors.forbidden.n); |
755 | |
756 var configure = pubsub.getChild('configure'); | |
757 if (configure && config.enabled('create-and-configure')) { | |
758 if (!config.enabled('config-node')) | |
759 return makeError(response, errors.owner.configure.node_configuration_not_supported.n); | |
760 | |
761 if (configure.getAttribute('node')) | |
762 return makeError(response, errors.bad_request.n); | |
763 | |
764 var x = configure.getChild('x', 'jabber:x:data'); | |
765 if (!x || x.getAttribute('type') != 'submit') | |
766 return makeError(response, errors.bad_request.n); | |
767 | |
768 var form = forms.parse(x, true); | |
769 if (typeof form == 'number') | |
770 return makeError(response, form); | |
771 | |
772 var conf = form; | |
773 } | |
774 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
775 if (!conf) |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
776 conf = {}; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
777 conf['pubsub#creator'] = toBareJID(to); |
12
9a6b8b3357c6
Use new functions like console.log instead of sys.puts, and aerate a bit.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
11
diff
changeset
|
778 |
0 | 779 var r = storage.createNode(nodeID, conf); |
780 if (typeof r == 'number') | |
781 return makeError(response, r); | |
782 | |
783 if (instant) | |
784 response.c('pubsub', {xmlns: 'http://jabber.org/protocol/pubsub'}) | |
785 .c('create', {node: nodeID}); | |
786 } else | |
787 return makeError(response, errors.feature_not_implemented.n); | |
788 } else if (stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub#owner')) { | |
789 var pubsub = stanza.getChild('pubsub', 'http://jabber.org/protocol/pubsub#owner'); | |
790 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
791 // SECTION 8.2.4 |
0 | 792 if (pubsub.getChild('configure')) { |
793 if (!config.enabled('config-node')) | |
794 return makeError(response, errors.owner.configure.node_configuration_not_supported.n); | |
795 | |
796 var nodeID = configure.getAttribute('node'); | |
797 if (!nodeID) | |
798 return makeError(response, errors.nodeid_required.n); | |
799 if (!storage.existsNode(nodeID)) | |
800 return makeError(response, errors.node_does_not_exist.n); | |
801 | |
802 var affil = storage.getAffiliation(toBareJID(to), nodeID); | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
803 if (affil != 'super-owner' && affil != 'owner' && affil != 'publish-only') |
0 | 804 return makeError(response, errors.forbidden.n); |
805 | |
806 var x = configure.getChild('x', 'jabber:x:data'); | |
807 if (!x || x.getAttribute(type) != 'submit') | |
808 return makeError(response, errors.bad_request.n); | |
809 | |
810 var form = forms.parse(x, true); | |
811 if (typeof form == 'number') | |
812 return makeError(response, form); | |
813 | |
814 var conf = form; | |
815 | |
816 var set = storage.configure(nodeID, conf); | |
817 if (typeof set == 'number') | |
818 return makeError(response, set); | |
819 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
820 // SECTION 8.4 |
0 | 821 } else if (pubsub.getChild('delete')) { |
822 if (!config.enabled('delete-nodes')) | |
823 return makeError(response, errors.feature_not_implemented.n); //XXX | |
824 | |
825 var del = pubsub.getChild('delete'); | |
826 | |
827 var nodeID = del.getAttribute('node'); | |
828 if (!nodeID) | |
829 return makeError(response, errors.nodeid_required.n); | |
830 if (!storage.existsNode(nodeID)) | |
831 return makeError(response, errors.node_does_not_exist.n); | |
832 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
833 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
834 if (affil != 'super-owner' && affil != 'owner') |
0 | 835 return makeError(response, errors.forbidden.n); |
836 | |
837 var notifs = storage.deleteNode(nodeID); | |
838 if (typeof notifs == 'number') | |
839 return makeError(response, r); | |
840 | |
841 sendNotifs(notifs, 'delete', nodeID); | |
842 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
843 // SECTION 8.5 |
0 | 844 } else if (pubsub.getChild('purge')) { |
845 if (!config.enabled('purge-nodes')) | |
846 return makeError(response, errors.owner.purge.node_purging_not_supported.n); //XXX | |
847 | |
848 var purge = pubsub.getChild('purge'); | |
849 | |
850 var nodeID = purge.getAttribute('node'); | |
851 if (!nodeID) | |
852 return makeError(response, errors.nodeid_required.n); | |
853 if (!storage.existsNode(nodeID)) | |
854 return makeError(response, errors.node_does_not_exist.n); | |
855 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
856 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
857 if (affil != 'super-owner' && affil != 'owner') |
0 | 858 return makeError(response, errors.forbidden.n); |
859 | |
860 if (!config.enabled('persistent-items')) //FIXME: autre condition, supporté par le node | |
861 return makeError(response, errors.owner.purge.node_does_not_persist_items.n); | |
862 | |
863 var notifs = storage.purgeNode(nodeID); | |
864 if (typeof notifs == 'number') | |
865 return makeError(response, r); | |
866 | |
867 sendNotifs(notifs, 'purge', nodeID); | |
868 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
869 // SECTION 8.8.2 |
0 | 870 } else if (pubsub.getChild('subscriptions')) { |
871 if (!config.enabled('manage-subscriptions')) | |
872 return makeError(response, errors.owner.manage_subscriptions.not_supported.n); //XXX | |
873 | |
874 var subscriptions = pubsub.getChild('subscriptions'); | |
875 | |
876 var nodeID = subscriptions.getAttribute('node'); | |
877 if (!nodeID) | |
878 return makeError(response, errors.nodeid_required.n); | |
879 if (!storage.existsNode(nodeID)) | |
880 return makeError(response, errors.node_does_not_exist.n); | |
881 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
882 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
883 if (affil != 'super-owner' && affil != 'owner') |
0 | 884 return makeError(response, errors.forbidden.n); |
885 | |
886 var e = false; | |
887 for (i in subscriptions.tags) { | |
888 var jid = subscriptions.tags[i].getAttribute('jid'); | |
889 var subscription = subscriptions.tags[i].getAttribute('subscription'); | |
890 | |
891 var set = storage.subscribe(nodeID, jid, subscription); | |
892 if (typeof set == 'number') | |
893 e = true; | |
894 else { | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
895 // SECTION 8.8.4 |
0 | 896 sendNotifs(jid, 'subscription', nodeID, {jid: jid, subscription: subscription}); |
897 subscriptions.tags.splice(i, 1); | |
898 } | |
899 } | |
900 | |
901 if (e) | |
902 return makeError(response, errors.owner.manage_subscriptions.modify.multiple_simultaneous_modifications.n, pubsub); | |
903 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
904 // SECTION 8.9.2 |
0 | 905 } else if (pubsub.getChild('affiliations')) { |
906 if (!config.enabled('modify-affiliations')) | |
907 return makeError(response, errors.owner.manage_affiliations.not_supported.n); //XXX | |
908 | |
909 var affiliations = pubsub.getChild('affiliations'); | |
910 | |
911 var nodeID = affiliations.getAttribute('node'); | |
912 if (!nodeID) | |
913 return makeError(response, errors.nodeid_required.n); | |
914 if (!storage.existsNode(nodeID)) | |
915 return makeError(response, errors.node_does_not_exist.n); | |
916 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
917 var affil = storage.getAffiliation(toBareJID(to), nodeID); |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
918 if (affil != 'super-owner' && affil != 'owner') |
0 | 919 return makeError(response, errors.forbidden.n); |
920 | |
921 var e = false; | |
922 for (i in affiliations.children) { | |
923 var jid = affiliations.children[i].getAttribute('jid'); | |
924 var affiliation = affiliations.children[i].getAttribute('affiliation'); | |
925 | |
926 var set = storage.setAffiliation(nodeID, jid, affiliation); | |
927 if (typeof set == 'number') | |
928 e = true; | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
929 else { |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
930 // SECTION 8.9.4 |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
931 sendNotifs(jid, 'affiliations', nodeID, {jid: jid, affiliation: affiliation}); |
0 | 932 affiliations.children.splice(i, 1); |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
933 } |
0 | 934 } |
935 | |
936 if (e) | |
937 return makeError(response, errors.owner.manage_affiliations.modify.multiple_simultaneous_modifications.n, pubsub); | |
938 } else | |
939 return makeError(response, errors.feature_not_implemented.n); | |
940 } else | |
941 return makeError(response, errors.feature_not_implemented.n); | |
942 } else | |
943 return makeError(response, errors.feature_not_implemented.n); | |
944 conn.send(response); | |
945 } | |
946 | |
947 function onMessage(stanza) { | |
948 var from = stanza.getAttribute('to'); | |
949 var to = stanza.getAttribute('from'); | |
950 var id = stanza.getAttribute('id'); | |
951 | |
952 var response; | |
953 if (id) | |
954 response = xmpp.message({to: to, from: from, id: id}); | |
955 else | |
956 response = xmpp.message({to: to, from: from}); | |
957 | |
958 var x = stanza.getChild('x', 'jabber:x:data'); | |
959 if (x) { | |
960 var form = forms.parse(x); | |
961 if (form.type == 'submit' && form.fields.FORM_TYPE.value == 'subscribe_authorization') { | |
962 if (form.fields.subid && form.fields.subid.value) | |
963 var subID = form.fields.subid.value; | |
964 if (form.fields.node && form.fields.node.value) | |
965 var nodeID = form.fields.node.value; | |
966 if (form.fields.subscriber_jid && form.fields.subscriber_jid.value) | |
967 var jid = form.fields.subscriber_jid.value; | |
968 if (form.fields.allow && form.fields.allow.value) | |
969 var allow = form.fields.allow.value; | |
970 | |
971 var type = allow? 'subscribed': 'none'; | |
972 var set = storage.subscribe(nodeID, jid, type) | |
973 //if (set.subid != subID) //TODO: support the multi-subscribe feature | |
974 sendNotifs(jid, 'subscription', nodeID, {jid: jid, subscription: type}); | |
975 } else | |
976 return makeError(response, errors.feature_not_implemented.n); | |
977 } else | |
978 return makeError(response, errors.feature_not_implemented.n); | |
979 conn.send(response) | |
980 } | |
981 | |
982 function onPresence(stanza) { | |
983 var from = stanza.getAttribute('to'); | |
984 var to = stanza.getAttribute('from'); | |
985 var id = stanza.getAttribute('id'); | |
986 | |
987 var response; | |
988 if (id) | |
989 response = xmpp.presence({to: to, from: from, id: id}); | |
990 else | |
991 response = xmpp.presence({to: to, from: from}); | |
992 | |
993 makeError(response, errors.feature_not_implemented.n); | |
994 } | |
995 | |
996 function makeError(response, errorNumber, payload) { | |
997 response.attr.type = 'error'; | |
998 if (payload) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
999 response.cnode(payload); |
0 | 1000 |
1001 var e = errors.reverse[errorNumber]; | |
1002 var error = xmpp.stanza('error', {type: e.type}); | |
1003 | |
1004 error.s(e.error, {xmlns: 'urn:ietf:params:xml:ns:xmpp-stanzas'}) | |
1005 | |
1006 if (e.reason) { | |
1007 if (e.feature) | |
1008 error.s(e.reason, {xmlns: 'http://jabber.org/protocol/pubsub#errors', feature: e.feature}); | |
1009 else | |
1010 error.s(e.reason, {xmlns: 'http://jabber.org/protocol/pubsub#errors'}); | |
1011 } | |
1012 | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1013 response.cnode(error); |
0 | 1014 conn.send(response); |
1015 } | |
1016 | |
1017 function sendNotifs(notifs, type, nodeID, a1, a2) { | |
1018 var ev = xmpp.stanza('event', {xmlns: 'http://jabber.org/protocol/pubsub#event'}); | |
1019 | |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1020 if (type == 'affiliations') { |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1021 ev.attr.xmlns = 'http://jabber.org/protocol/pubsub'; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1022 |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1023 var args = {}; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1024 for (i in a1) { |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1025 var attr = a1[i]; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1026 if (i == 'affiliation') |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1027 args.affiliation = attr; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1028 else if (i == 'jid') |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1029 args.jid = attr; |
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1030 } |
3
80e607c0b39e
Make affiliation notifications working.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
1031 var affiliations = xmpp.stanza('affiliations', {node: nodeID}) |
4
4c93e76fa371
Ensure that the creator of a node is the default owner; don’t crash
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
3
diff
changeset
|
1032 .c('affiliation', args); |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1033 ev.cnode(affiliations); |
1
c2954a9e5665
Add a super-owner that has power over all nodes; add support for
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
1034 } else if (type == 'collection') { |
0 | 1035 var collection = xmpp.stanza('collection', {node: nodeID}); |
1036 if (a1 == 'associate') | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1037 collection.cnode('associate', {node: nodeID}); |
0 | 1038 else |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1039 collection.cnode('disassociate', {node: nodeID}); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1040 ev.cnode(collection); |
0 | 1041 } else if (type == 'configuration') { |
1042 if (!config.enabled('config-node')) { | |
1043 _('Error #4', 41) | |
1044 return; | |
1045 } | |
1046 | |
1047 var configuration = xmpp.stanza('configuration', {node: nodeID}); | |
1048 if (a1) { | |
1049 var x = forms.build('node_config', service_configuration.node_config, storage.getConfiguration(nodeID)); | |
1050 if (x) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1051 configuration.cnode(x); //TODO: voir exemple 150 |
0 | 1052 } |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1053 ev.cnode(configuration); |
0 | 1054 } else if (type == 'delete') { |
1055 var del = xmpp.stanza('delete', {node: nodeID}); | |
1056 if (a1) | |
1057 del.c('redirect', {uri: a1}); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1058 ev.cnode(del); |
0 | 1059 } else if (type == 'items') { |
1060 var items = xmpp.stanza(type, {node: nodeID}); | |
1061 if (a2 == 'retract') | |
1062 for (var i in a1) | |
1063 items.s('retract', {id: i}); | |
1064 else { | |
1065 for (var i in a1) { | |
1066 var item = a1[i]; | |
1067 var args = {}; | |
1068 if (i != '') | |
1069 args.id = i; | |
1070 if (item.node) | |
1071 args.node = item.node; | |
1072 if (item.publisher) | |
1073 args.publisher = item.publisher; | |
1074 var it = xmpp.stanza('item', args); | |
1075 if (item.content) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1076 it.cnode(item.content); |
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1077 items.cnode(it); |
0 | 1078 } |
1079 } | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1080 ev.cnode(items); |
0 | 1081 } else if (type == 'purge') { |
1082 ev.c('purge', {node: nodeID}); | |
1083 } else if (type == 'subscription') { | |
1084 if (!config.enabled('subscription-notifications')) | |
1085 return; | |
1086 | |
1087 var args = {node: nodeID}; | |
1088 for (i in a1) { | |
1089 var attr = a1[i]; | |
1090 if (i == 'subscription') { | |
1091 if (attr == 'none' || attr == 'pending' || attr == 'subscribed' || attr == 'unconfigured') | |
1092 args[i] = attr; | |
1093 else { | |
1094 _('Error #3', 41) | |
1095 return; | |
1096 } | |
1097 } else if (i == 'jid' || i == 'subid') | |
1098 args[i] = attr; | |
1099 else if (i == 'expiry') | |
1100 args[i] = attr.toString(); | |
1101 } | |
1102 if (!args.jid || args.jid == '') { | |
1103 _('Error #2', 41) | |
1104 return; | |
1105 } | |
1106 var sub = xmpp.stanza('subscription', args); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1107 ev.cnode(sub); |
0 | 1108 } else { |
1109 _('Error #1', 41) | |
1110 return; | |
1111 } | |
1112 | |
1113 var subs; | |
1114 if (typeof notifs == 'string') { | |
1115 subs = {}; | |
1116 subs[notifs] = storage.getSubscription(notifs, nodeID); | |
1117 } else | |
1118 subs = notifs; | |
1119 | |
1120 for (var i in subs) { | |
1121 var sub = subs[i]; | |
1122 | |
1123 if (sub.options) { | |
1124 if (typeof sub.options['pubsub#deliver'] != 'undefined' && !sub.options['pubsub#deliver']) | |
1125 continue; | |
1126 | |
1127 if (typeof sub.options['pubsub#digest'] != 'undefined' && sub.options['pubsub#digest']) { | |
1128 if (!sub.digest) | |
1129 sub.digest = []; | |
1130 sub.digest.push(ev) | |
1131 | |
1132 if (sub.digestTimeout) | |
1133 continue; | |
1134 | |
1135 var freq; | |
1136 if (typeof sub.options['pubsub#digest_frequency'] == 'undefined') | |
1137 freq = 0; | |
1138 else | |
1139 freq = parseInt(sub.options['pubsub#digest_frequency']); | |
1140 | |
1141 if (freq == 0) | |
1142 freq = 24*60*60*1000; | |
1143 | |
1144 setTimeout(sendDigest, freq, notifs[i], nodeID); | |
1145 sub.digestTimeout = true; | |
1146 continue; | |
1147 } | |
1148 } | |
1149 | |
1150 var message = xmpp.message({to: i, from: componentJID, id: conn.getUniqueId()}); | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1151 message.cnode(ev); |
0 | 1152 conn.send(message); |
1153 } | |
1154 } | |
1155 | |
1156 function sendDigest(jid, nodeID) { | |
1157 var sub = storage.getSubscription(jid, nodeID); | |
1158 if (sub.digestTimeout) | |
1159 sub.digestTimeout = false; | |
1160 | |
1161 var message = xmpp.message({to: jid, from: componentJID, id: conn.getUniqueId()}); | |
1162 for (var i in sub.digest) | |
8
efe8dbd34780
Rename cx method to cnode and define it if xmpp.js didn’t.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
1163 message.cnode(sub.digest[i]); |
0 | 1164 conn.send(message); |
1165 } | |
1166 | |
1167 conn.connect(componentJID, componentPassword, function (status, condition) { | |
1168 if (status == xmpp.Status.CONNECTED) { | |
1169 conn.addHandler(onMessage, null, 'message', null, null, null); | |
1170 conn.addHandler(onIq, null, 'iq', null, null, null); | |
1171 conn.addHandler(onPresence, null, 'presence', null, null, null); | |
1172 | |
1173 if (process.argv.length >= 3) | |
1174 storage.load(process.argv[2]); | |
1175 else | |
1176 storage.load(); | |
1177 | |
1178 var stdin = process.openStdin(); | |
1179 stdin.setEncoding('utf8'); | |
1180 stdin.addListener('data', storage.debug); | |
1181 } else | |
1182 conn.log(xmpp.LogLevel.DEBUG, 'New connection status: ' + status + (condition? (' ('+condition+')'): '')); | |
1183 }); |