Mercurial > psgxs
annotate configuration.js @ 51:22b06eade9a7
Fix typo error.
author | Sonny Piers <sonny.piers@gmail.com> |
---|---|
date | Mon, 21 Mar 2011 15:40:32 +0100 |
parents | 8b20f2efb939 |
children | 296de54c1c4b |
rev | line source |
---|---|
0 | 1 /* |
2 * Copyright (C) 2010 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | |
3 * | |
4 * This file is part of PSĜS, a PubSub server written in JavaScript. | |
5 * | |
6 * PSĜS is free software: you can redistribute it and/or modify | |
7 * it under the terms of the GNU Affero General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License. | |
10 * | |
11 * PSĜS is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU Affero General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Affero General Public License | |
17 * along with PSĜS. If not, see <http://www.gnu.org/licenses/>. | |
18 */ | |
19 | |
43
023f767662d3
Fix compatibility with strict mode of node 0.4 and some files without licence header.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
42
diff
changeset
|
20 'use strict'; |
023f767662d3
Fix compatibility with strict mode of node 0.4 and some files without licence header.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
42
diff
changeset
|
21 |
0 | 22 var config = exports; |
23 | |
51 | 24 config.jid = 'pubsub.plugsbee.com'; |
25 config.password = 'douzeetdouzefont1212'; | |
45
8b20f2efb939
Add an option to choose the host and port of the connection.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
43
diff
changeset
|
26 config.host = 'localhost'; |
8b20f2efb939
Add an option to choose the host and port of the connection.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
43
diff
changeset
|
27 config.port = 5347; |
51 | 28 config.superOwner = ['sonny@plugsbee.com']; |
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
|
29 config.version = '0.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
|
30 config.os = 'GNU/Linux'; |
51 | 31 config.allowCreateNode = [/(.*)/]; |
26
f2e9365bc8ec
Can use differents backends for node storage. Writing directory-based backend in top of file-based backend.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
14
diff
changeset
|
32 config.backend = 'directory'; // Put backends in “backends” directory. |
13
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
33 config.access = 'open'; // values include open, whitelist (by members) and authorize (owners of the node receive notification). presence and roster aren’t implemented yet. |
41
bc717575e66a
Much better handling of modules.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
26
diff
changeset
|
34 config.pluginsDir = 'modules'; |
42
07ca0263a53f
Add an option to hide non-accessible nodes.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
41
diff
changeset
|
35 config.hideNonAccessibleNodes = true; |
13
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
36 |
0 | 37 config.activated = [ |
38 'auto-create', | |
39 //'auto-subscribe', // Impossible à utiliser dans un component | |
40 //'collections', //TODO | |
41 'config-node', | |
42 'create-and-configure', | |
43 'create-nodes', | |
44 'delete-items', | |
45 'delete-nodes', | |
46 //'filtered-notifications', // Impossible à utiliser dans un component | |
47 'get-pending', | |
48 'instant-nodes', | |
49 'item-ids', | |
50 'last-published', // Impossible de se baser sur la présence dans un component | |
51 //'leased-subscription', //TODO | |
52 'manage-subscriptions', | |
53 'member-affiliation', | |
54 'meta-data', | |
55 'modify-affiliations', | |
56 //'multi-collection', //TODO | |
57 //'multi-subscribe', //TODO | |
58 'outcast-affiliation', | |
59 'persistent-items', | |
60 //'presence-notifications', // Impossible à utiliser dans un component | |
61 //'presence-subscribe', // Impossible à utiliser dans un component | |
62 'publish', | |
63 'publish-options', | |
64 'publish-only-affiliation', | |
65 'publisher-affiliation', | |
66 'purge-nodes', | |
67 'retract-items', | |
68 'retrieve-affiliations', | |
69 'retrieve-default', | |
70 'retrieve-default-sub', | |
71 'retrieve-items', | |
72 'retrieve-subscriptions', | |
73 'subscribe', | |
74 'subscription-options', | |
75 'subscription-notifications', | |
76 ]; | |
77 | |
78 config.service_configuration = { | |
79 subscribe_authorization: { | |
80 FORM_TYPE: {type: 'hidden', value: 'http://jabber.org/protocol/pubsub#subscribe_authorization'}, | |
81 _TITLE: 'PubSub subscriber request', | |
82 _INSTRUCTIONS: 'To approve this entity’s subscription request,\nclick the OK button. To deny the request, click the\ncancel button.', | |
83 'pubsub#allow': {type: 'boolean', label: 'Whether to allow the subscription', value: false}, | |
84 'pubsub#node': {type: 'text-single', label: 'The NodeID of the relevant node'}, | |
85 'pubsub#subid': {type: 'hidden'}, | |
86 'pubsub#subscriber_jid': {type: 'jid-single', label: 'The address (JID) of the subscriber'}, | |
87 }, | |
88 subscribe_options: { | |
89 FORM_TYPE: {type: 'hidden', value: 'http://jabber.org/protocol/pubsub#subscribe_options'}, | |
90 'pubsub#deliver': {type: 'boolean', label: 'Whether an entity wants to receive or disable notifications', value: true}, | |
91 'pubsub#digest': {type: 'boolean', label: 'Whether an entity wants to receive digests (aggregations) of notifications or all notifications individually', value: false}, | |
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
|
92 'pubsub#digest_frequency': {type: 'text-single', label: 'The minimum number of milliseconds between sending any two notification digests', value: 24*60*60*1000}, |
0 | 93 // 'pubsub#expire': {type: 'text-single', label: 'The DateTime at which a leased subscription will end or has ended'}, |
94 // 'pubsub#include_body': {type: 'boolean', label: 'Whether an entity wants to receive an XMPP message body in addition to the payload format', value: false}, | |
95 // 'pubsub#show-values': {type: 'list-multi', label: 'The presence states for which an entity wants to receive notifications', options: { | |
96 // away: {label: 'XMPP Show Value of Away'}, | |
97 // chat: {label: 'XMPP Show Value of Chat'}, | |
98 // dnd: {label: 'XMPP Show Value of DND (Do Not Disturb)'}, | |
99 // online: {label: 'Mere Availability in XMPP (No Show Value)'}, | |
100 // xa: {label: 'XMPP Show Value of XA (Extended Away)'}, | |
101 // }, value: ['online', 'chat', 'away']}, | |
102 // 'pubsub#subscription_type': {type: 'list-single', options: { | |
103 // items: {label: 'Receive notification of new items only'}, | |
104 // nodes: {label: 'Receive notification of new nodes only'}, | |
105 // }}, | |
106 // 'pubsub#subscription_depth': {type: 'list-single', options: { | |
107 // '1': {label: 'Receive notification from direct child nodes only'}, | |
108 // all: {label: 'Receive notification from all descendent nodes'}, | |
109 // }}, | |
110 }, | |
111 node_metadata: { | |
112 FORM_TYPE: {type: 'hidden', value: 'http://jabber.org/protocol/pubsub#meta-data'}, | |
113 'pubsub#contact': {type: 'jid-multi', label: 'The JIDs of those to contact with questions'}, | |
114 'pubsub#creation_date': {type: 'text-single', label: 'The datetime when the node was created', value: function(){return new Date();}}, | |
115 'pubsub#creator': {type: 'jid-single', label: 'The JID of the node creator'}, | |
116 'pubsub#description': {type: 'text-single', label: 'A description of the node'}, | |
117 'pubsub#language': {type: 'list-single', label: 'The default language of the node'}, | |
118 'pubsub#num_subscribers': {type: 'text-single', label: 'The number of subscribers to the node', value: 0}, | |
119 'pubsub#owner': {type: 'jid-multi', label: 'The JIDs of those with an affiliation of owner'}, | |
120 'pubsub#publisher': {type: 'jid-multi', label: 'The JIDs of those with an affiliation of publisher'}, | |
121 'pubsub#title': {type: 'text-single', label: 'The name of the node'}, | |
122 'pubsub#type': {type: 'text-single', label: 'Payload type'}, | |
123 }, | |
124 node_config: { | |
125 FORM_TYPE: {type: 'hidden', value: 'http://jabber.org/protocol/pubsub#node_config'}, | |
126 'pubsub#access_model': {type: 'list-single', label: 'Who may subscribe and retrieve items', options: { | |
127 authorize: {label: 'Subscription requests must be approved and only subscribers may retrieve items'}, | |
128 open: {label: 'Anyone may subscribe and retrieve items'}, | |
129 // presence: {label: 'Anyone with a presence subscription of both or from may subscribe and retrieve items'}, | |
130 // roster: {label: 'Anyone in the specified roster group(s) may subscribe and retrieve items'}, | |
131 whitelist: {label: 'Only those on a whitelist may subscribe and retrieve items'}, | |
132 }}, | |
133 // 'pubsub#body_xslt': {type: 'text-single', label: 'The URL of an XSL transformation which can be applied to payloads in order to generate an appropriate message body element.'}, | |
134 // 'pubsub#children_association_policy': {type: 'list-single', label: 'Who may associate leaf nodes with a collection', options: { | |
135 // all: {label: 'Anyone may associate leaf nodes with the collection'}, | |
136 // owners: {label: 'Only collection node owners may associate leaf nodes with the collection'}, | |
137 // whitelist: {label: 'Only those on a whitelist may associate leaf nodes with the collection'}, | |
138 // }}, | |
139 // 'pubsub#children_association_whitelist': {type: 'jid-multi', label: 'The list of JIDs that may associate leaf nodes with a collection'}, | |
140 // 'pubsub#children': {type: 'text-multi', label: 'The child nodes (leaf or collection) associated with a collection'}, | |
141 // 'pubsub#children_max': {type: 'text-single', label: 'The maximum number of child nodes that can be associated with a collection'}, | |
142 // 'pubsub#collection': {type: 'text-multi', label: 'The collection(s) with which a node is affiliated'}, | |
143 'pubsub#contact': {type: 'jid-multi', label: 'The JIDs of those to contact with questions'}, | |
144 // 'pubsub#dataform_xslt': {type: 'text-single', label: 'The URL of an XSL transformation which can be applied to the payload format in order to generate a valid Data Forms result that the client could display using a generic Data Forms rendering engine'}, | |
145 'pubsub#deliver_notifications': {type: 'boolean', label: 'Whether to deliver event notifications', value: true}, | |
146 // 'pubsub#deliver_payloads': {type: 'boolean', label: 'Whether to deliver payloads with event notifications; applies only to leaf nodes'}, | |
147 'pubsub#description': {type: 'text-single', label: 'A description of the node'}, | |
148 // 'pubsub#item_expire': {type: 'text-single', label: 'Number of seconds after which to automatically purge items'}, | |
149 // 'pubsub#itemreply': {type: 'list-single', label: 'Whether owners or publisher should receive replies to items', options: { | |
150 // owner: {label: 'Statically specify a replyto of the node owner(s)'}, | |
151 // publisher: {label: 'Dynamically specify a replyto of the item publisher'}, | |
152 // }}, | |
153 'pubsub#language': {type: 'list-single', label: 'The default language of the node'}, | |
154 // 'pubsub#max_items': {type: 'text-single', label: 'The maximum number of items to persist'}, | |
155 // 'pubsub#max_payload_size': {type: 'text-single', label: 'The maximum payload size in bytes'}, | |
156 'pubsub#node_type': {type: 'list-single', label: 'Whether the node is a leaf (default) or a collection', options: { | |
157 leaf: {label: 'The node is a leaf node (default)'}, | |
158 collection: {label: 'The node is a collection node'}, | |
159 }, value: 'leaf'}, | |
160 // 'pubsub#notification_type': {type: 'list-single', label: 'Specify the delivery style for notifications', options: { | |
161 // normal: {label: 'Messages of type normal'}, | |
162 // headline: {label: 'Messages of type headline'}, | |
163 // iq: {label: 'IQ stanzas (works only with presence-based delivery)'}, | |
164 // }}, | |
165 // 'pubsub#notify_config': {type: 'boolean', label: 'Whether to notify subscribers when the node configuration changes'}, | |
166 // 'pubsub#notify_delete': {type: 'boolean', label: 'Whether to notify subscribers when the node is deleted'}, | |
167 // 'pubsub#notify_retract': {type: 'boolean', label: 'Whether to notify subscribers when items are removed from the node'}, | |
168 // 'pubsub#notify_sub': {type: 'boolean', label: 'Whether to notify owners about new subscribers and unsubscribes'}, | |
169 // 'pubsub#persist_items': {type: 'boolean', label: 'Whether to persist items to storage'}, | |
170 // 'pubsub#presence_based_delivery': {type: 'boolean', label: 'Whether to deliver notifications to available users only'}, | |
171 'pubsub#publish_model': {type: 'list-single', label: 'The publisher model', options: { | |
172 publishers: {label: 'Only publishers may publish'}, | |
173 subscribers: {label: 'Subscribers may publish'}, | |
174 open: {label: 'Anyone may publish'}, | |
175 }, value: 'publishers'}, | |
176 // 'pubsub#purge_offline': {type: 'boolean', label: 'Whether to purge all items when the relevant publisher goes offline'}, | |
177 // 'pubsub#roster_groups_allowed': {type: 'list-multi', label: 'The roster group(s) allowed to subscribe and retrieve items'}, | |
178 // 'pubsub#send_last_published_item': {type: 'list-single', label: 'When to send the last published item', options: { | |
179 // never: {label: 'Never'}, | |
180 // on_sub: {label: 'When a new subscription is processed'}, | |
181 // on_sub_and_presence: {label: 'When a new subscription is processed and whenever a subscriber comes online'}, | |
182 // }, value: 'never'}, | |
183 // 'pubsub#tempsub': {type: 'boolean', label: 'Whether to make all subscriptions temporary, based on subscriber presence'}, | |
184 'pubsub#subscribe': {type: 'boolean', label: 'Whether to allow subscriptions', value: true}, | |
185 'pubsub#title': {type: 'text-single', label: 'A friendly name for the node'}, | |
186 'pubsub#type': {type: 'text-single', label: 'The type of node data, usually specified by the namespace of the payload (if any)', value: 'http://www.w3.org/2005/Atom'}, | |
187 }, | |
188 'publish-options': { | |
189 FORM_TYPE: {type: 'hidden', value: 'http://jabber.org/protocol/pubsub#publish-options'}, | |
190 'pubsub#access_model': {type: 'list-single', label: 'Precondition: node configuration with the specified access model', options: { | |
191 authorize: {label: 'Access model of authorize'}, | |
192 open: {label: 'Access model of open'}, | |
193 // presence: {label: 'Access model of presence'}, | |
194 // roster: {label: 'Access model of roster'}, | |
195 whitelist: {label: 'Access model of whitelist'}, | |
196 }, value: 'open'}, | |
197 }, | |
198 }; | |
199 | |
200 config.Configuration = function(def, params) { | |
201 for (var i in def) { | |
202 if (typeof (def[i].value) != 'undefined') { | |
203 if (typeof (def[i].value) == 'function') | |
204 this[i] = def[i].value(); | |
205 else | |
206 this[i] = def[i].value; | |
207 } | |
208 } | |
209 if (params) | |
210 for (var i in params) | |
10
44889cfb2f8c
Fix getItem method.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
211 if (typeof def[i] != 'undefined') |
44889cfb2f8c
Fix getItem method.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
212 this[i] = params[i]; |
0 | 213 }; |
214 | |
215 config.enabled = function(feature) { | |
216 for (var i in config.activated) | |
217 if (typeof i == 'string' && feature == config.activated[i]) | |
218 return true; | |
219 return false; | |
220 }; | |
221 | |
13
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
222 config.enable = function(feature) { |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
223 config.activated.push(feature); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
224 } |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
225 |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
226 config.disable = function(feature) { |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
227 if (typeof feature == 'string') |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
228 config.activated.splice(config.activated.indexOf(feature), 1); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
229 else if (typeof feature == 'function') { |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
230 for (var i in config.activated) |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
231 if (feature(config.activated[i])) |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
232 config.disable(config.activated[i]); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
233 } |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
234 } |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
235 |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
236 if (config.access == 'whitelist') { |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
237 config.disable(/access-.+/); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
238 config.enable('access-whitelist'); |
0 | 239 config.service_configuration.node_config['pubsub#access_model'].value = 'whitelist'; |
240 config.service_configuration['publish-options']['pubsub#access_model'].value = 'whitelist'; | |
14
06abc804e2ab
Correct syntax error.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
13
diff
changeset
|
241 } else if (config.access == 'authorize') { |
13
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
242 config.disable(/access-.+/); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
243 config.enable('access-authorize'); |
0 | 244 config.service_configuration.node_config['pubsub#access_model'].value = 'authorize'; |
245 config.service_configuration['publish-options']['pubsub#access_model'].value = 'authorize'; | |
14
06abc804e2ab
Correct syntax error.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
13
diff
changeset
|
246 } else if (config.access == 'open') { |
13
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
247 config.disable(/access-.+/); |
447db2e8c622
Better access mode handling.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
10
diff
changeset
|
248 config.enable('access-open'); |
0 | 249 config.service_configuration.node_config['pubsub#access_model'].value = 'open'; |
250 config.service_configuration['publish-options']['pubsub#access_model'].value = 'open'; | |
251 } |