Welcome to mirror list, hosted at ThFree Co, Russian Federation.

iq.js « javascripts « app - github.com/jappix/jappix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79e1fa9be2ebc6d0cf89648d03b9dfaecf16e638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*

Jappix - An open social platform
These are the IQ JS scripts for Jappix

-------------------------------------------------

License: AGPL
Author: Valérian Saliou

*/

// Bundle
var IQ = (function () {

    /**
     * Alias of this
     * @private
     */
    var self = {};


    /**
     * Handles OOB request
     * @private
     * @param {string} iqType
     * @param {string} iqID
     * @param {object} iqNode
     * @return {undefined}
     */
    self._handleOOBRequest = function(iqFrom, iqID, iqNode) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0066.html */

            OOB.handle(iqFrom, iqID, 'iq', iqNode);

            Console.log('Received IQ OOB request: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleOOBRequest', e);
        }

    };


    /**
     * Handles OOB reply
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @param {string} iqType
     * @param {string} iqID
     * @param {object} iqNode
     * @return {undefined}
     */
    self._handleOOBReply = function(iqResponse, iqFrom, iqType, iqID, iqNode) {

        try {
            // Get the values
            var oob_url = DataStore.getDB(Connection.desktop_hash, 'send/url', iqID);
            var oob_desc = DataStore.getDB(Connection.desktop_hash, 'send/desc', iqID);
            var notif_id = hex_md5(oob_url + oob_desc + iqType + iqFrom + iqID);

            if($(iqNode).find('error').size()) {
                // Error?
                if($(iqNode).find('error not-acceptable').size()) {
                    // Rejected?
                    Notification.create('send_reject', iqFrom, [iqFrom, oob_url, 'iq', iqID, iqNode], oob_desc, notif_id);
                } else {
                    // Failed?
                    Notification.create('send_fail', iqFrom, [iqFrom, oob_url, 'iq', iqID, iqNode], oob_desc, notif_id);
                }

                // Remove the file
                $.get(oob_url + '&action=remove');
            } else if(iqType == 'result') {
                // Success?
                Notification.create('send_accept', iqFrom, [iqFrom, oob_url, 'iq', iqID, iqNode], oob_desc, notif_id);
            }
        } catch(e) {
            Console.error('IQ._handleOOBReply', e);
        }

    };


    /**
     * Handles Software Version
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleSoftwareVersion = function(iqResponse, iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0092.html */

            iqQuery = iqResponse.setQuery(NS_VERSION);

            iqQuery.appendChild(iqResponse.buildNode('name', {'xmlns': NS_VERSION}, Caps.disco_infos.identity.name));
            iqQuery.appendChild(iqResponse.buildNode('version', {'xmlns': NS_VERSION}, JAPPIX_VERSION));
            iqQuery.appendChild(iqResponse.buildNode('os', {'xmlns': NS_VERSION}, BrowserDetect.OS));

            con.send(iqResponse);

            Console.log('Received software version query: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleSoftwareVersion', e);
        }

    };


    /**
     * Handles Last Activity
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleLastActivity = function(iqResponse, iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0012.html */

            iqQuery = iqResponse.setQuery(NS_LAST);
            iqQuery.setAttribute('seconds', DateUtils.getLastActivity());

            con.send(iqResponse);

            Console.log('Received last activity query: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleLastActivity', e);
        }

    };


    /**
     * Handles Privacy Lists
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @param {string} iqQuery
     * @return {undefined}
     */
    self._handlePrivacyLists = function(iqResponse, iqFrom, iqQuery) {

        try {
            // REF : http://xmpp.org/extensions/xep-0016.html

            // Roster push
            con.send(iqResponse);

            // Get the lists
            $(iqQuery).find('list').each(function() {
                Privacy.get($(this).attr('name'));
            });

            Console.log('Received privacy lists push: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handlePrivacyLists', e);
        }

    };


    /**
     * Handles Roster Push
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @param {string} iqQuery
     * @return {undefined}
     */
    self._handleRosterPush = function(iqResponse, iqFrom, iqQuery) {

        try {
            // REF : http://xmpp.org/extensions/xep-0092.html

            // Roster push
            con.send(iqResponse);

            // Get the values
            $(iqQuery).find('item').each(function() {
                Roster.parse($(this), 'presence');
            });

            Console.log('Received roster push: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleRosterPush', e);
        }

    };


    /**
     * Handles Roster Item Exchange
     * @private
     * @param {object} iqNode
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleRosterItemExchange = function(iqNode, iqFrom) {

        try {
            // Open a new notification
            Notification.create('rosterx', iqFrom, [iqNode], '');

            Console.log('Roster Item Exchange from: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleRosterItemExchange', e);
        }

    };


    /**
     * Handles Disco Info
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleDiscoInfo = function(iqResponse, iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0030.html */

            iqQuery = iqResponse.setQuery(NS_DISCO_INFO);

            // We set the name of the client
            iqQuery.appendChild(iqResponse.buildNode('identity', {
                'category': Caps.disco_infos.identity.category,
                'type': Caps.disco_infos.identity.type,
                'name': Caps.disco_infos.identity.name,
                'xmlns': NS_DISCO_INFO
            }));

            // We set all the supported features
            var disco_infos = Caps.myDiscoInfos();

            $.each(disco_infos, function(i, disco_info) {
                iqQuery.appendChild(iqResponse.buildNode('feature', {'var': disco_info, 'xmlns': NS_DISCO_INFO}));
            });

            con.send(iqResponse);

            Console.log('Received disco#infos query: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleDiscoInfo', e);
        }

    };


    /**
     * Handles User Time
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleUserTime = function(iqResponse, iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0202.html */

            var iqTime = iqResponse.appendNode('time', {
                'xmlns': NS_URN_TIME
            });

            iqTime.appendChild(iqResponse.buildNode('tzo', {
                'xmlns': NS_URN_TIME
            }, DateUtils.getTZO()));

            iqTime.appendChild(iqResponse.buildNode('utc', {
                'xmlns': NS_URN_TIME
            }, DateUtils.getXMPPTime('utc')));

            con.send(iqResponse);

            Console.log('Received local time query: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleUserTime', e);
        }

    };


    /**
     * Handles Ping
     * @private
     * @param {object} iqResponse
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handlePing = function(iqResponse, iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0199.html */

            con.send(iqResponse);

            Console.log('Received a ping: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handlePing', e);
        }

    };


    /**
     * Handles Jingle
     * @private
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._handleJingle = function(iqFrom) {

        try {
            /* REF: http://xmpp.org/extensions/xep-0166.html */

            // Handled via JSJaCJingle.route() (see above)

            Console.log('Received a Jingle packet: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._handleJingle', e);
        }

    };


    /**
     * Raises a not implemented error
     * @private
     * @param {object} iqResponse
     * @param {object} iqNode
     * @param {string} iqFrom
     * @return {undefined}
     */
    self._raiseNotImplemented = function(iqResponse, iqNode, iqFrom) {

        try {
            // Change IQ type
            iqResponse.setType('error');

            // Append stanza content
            for(var c = 0; c < iqNode.childNodes.length; c++) {
                iqResponse.getNode().appendChild(iqNode.childNodes.item(c).cloneNode(true));
            }

            // Append error content
            var iqError = iqResponse.appendNode('error', {'xmlns': NS_CLIENT, 'code': '501', 'type': 'cancel'});
            iqError.appendChild(iqResponse.buildNode('feature-not-implemented', {'xmlns': NS_STANZAS}));
            iqError.appendChild(iqResponse.buildNode('text', {'xmlns': NS_STANZAS}, Common._e("The feature requested is not implemented by the recipient or server and therefore cannot be processed.")));

            con.send(iqResponse);

            Console.log('Received an unsupported IQ query from: ' + iqFrom);
        } catch(e) {
            Console.error('IQ._raiseNotImplemented', e);
        }

    };


    /**
     * Handles an incoming IQ packet
     * @public
     * @param {object} iq
     * @return {undefined}
     */
    self.handle = function(iq) {

        try {
            // Gets the IQ content
            var iqNode = iq.getNode();
            var iqFrom = Common.fullXID(Common.getStanzaFrom(iq));
            var iqID = iq.getID();
            var iqQueryXMLNS = iq.getQueryXMLNS();
            var iqQuery = iq.getQuery();
            var iqType = iq.getType();

            // Build the response
            var iqResponse = new JSJaCIQ();

            iqResponse.setID(iqID);
            iqResponse.setTo(iqFrom);
            iqResponse.setType('result');

            // OOB request
            if((iqQueryXMLNS == NS_IQOOB) && (iqType == 'set')) {
                self._handleOOBRequest(iqFrom, iqID, iqNode);
            }

            // OOB reply
            else if(DataStore.getDB(Connection.desktop_hash, 'send/url', iqID)) {
                self._handleOOBReply(iqResponse, iqFrom, iqType, iqID, iqNode);
            }

            // Software version query
            else if((iqQueryXMLNS == NS_VERSION) && (iqType == 'get')) {
                self._handleSoftwareVersion(iqResponse, iqFrom);
            }

            // Last activity query
            else if((iqQueryXMLNS == NS_LAST) && (iqType == 'get')) {
                self._handleLastActivity(iqResponse, iqFrom);
            }

            // Privacy lists push
            else if((iqQueryXMLNS == NS_PRIVACY) && (iqType == 'set') && Common.isSafeStanza(iq)) {
                self._handlePrivacyLists(iqResponse, iqFrom, iqQuery);
            }

            // Roster push
            else if((iqQueryXMLNS == NS_ROSTER) && (iqType == 'set') && Common.isSafeStanza(iq)) {
                self._handleRosterPush(iqResponse, iqFrom, iqQuery);
            }

            // Roster Item Exchange query
            else if($(iqNode).find('x[xmlns="' + NS_ROSTERX + '"]').size()) {
                self._handleRosterItemExchange(iqNode, iqFrom);
            }

            // Disco info query
            else if((iqQueryXMLNS == NS_DISCO_INFO) && (iqType == 'get')) {
                self._handleDiscoInfo(iqResponse, iqFrom);
            }

            // User time query
            else if($(iqNode).find('time').size() && (iqType == 'get')) {
                self._handleUserTime(iqResponse, iqFrom);
            }

            // Ping
            else if($(iqNode).find('ping').size() && (iqType == 'get')) {
                self._handlePing(iqResponse, iqFrom);
            }

            // Jingle
            else if($(iqNode).find('jingle').size()) {
                self._handleJingle(iqFrom);
            }

            // Not implemented
            else if(!$(iqNode).find('error').size() && ((iqType == 'get') || (iqType == 'set'))) {
                self._raiseNotImplemented(iqResponse, iqNode, iqFrom);
            }
        } catch(e) {
            Console.error('IQ.handle', e);
        }

    };


    /**
     * Return class scope
     */
    return self;

})();