2018-06-06 11:07:59 +02:00
|
|
|
// Converse.js
|
|
|
|
// https://conversejs.org
|
|
|
|
//
|
2019-02-18 19:17:06 +01:00
|
|
|
// Copyright (c) 2013-2019, the Converse.js developers
|
2018-06-06 11:07:59 +02:00
|
|
|
// Licensed under the Mozilla Public License (MPLv2)
|
2019-07-11 10:48:52 +02:00
|
|
|
/**
|
|
|
|
* @module converse-push
|
|
|
|
* @description
|
|
|
|
* Converse.js plugin which add support for registering
|
2018-06-06 11:07:59 +02:00
|
|
|
* an "App Server" as defined in XEP-0357
|
|
|
|
*/
|
2018-10-23 03:41:38 +02:00
|
|
|
import converse from "@converse/headless/converse-core";
|
2018-06-06 11:07:59 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
const { Strophe, $iq, _ } = converse.env;
|
2018-06-07 16:25:59 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
Strophe.addNamespace('PUSH', 'urn:xmpp:push:0');
|
2018-06-06 11:07:59 +02:00
|
|
|
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
converse.plugins.add('converse-push', {
|
|
|
|
|
|
|
|
initialize () {
|
|
|
|
/* The initialize function gets called as soon as the plugin is
|
|
|
|
* loaded by converse.js's plugin machinery.
|
|
|
|
*/
|
2019-10-09 16:01:38 +02:00
|
|
|
const { _converse } = this;
|
2018-10-23 03:41:38 +02:00
|
|
|
|
|
|
|
_converse.api.settings.update({
|
|
|
|
'push_app_servers': [],
|
|
|
|
'enable_muc_push': false
|
|
|
|
});
|
2018-06-06 11:07:59 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
async function disablePushAppServer (domain, push_app_server) {
|
|
|
|
if (!push_app_server.jid) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-07 09:53:36 +02:00
|
|
|
if (!(await _converse.api.disco.supports(Strophe.NS.PUSH, domain || _converse.bare_jid))) {
|
2018-10-23 03:41:38 +02:00
|
|
|
return _converse.log(
|
|
|
|
`Not disabling push app server "${push_app_server.jid}", no disco support from your server.`,
|
|
|
|
Strophe.LogLevel.WARN
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const stanza = $iq({'type': 'set'});
|
|
|
|
if (domain !== _converse.bare_jid) {
|
|
|
|
stanza.attrs({'to': domain});
|
2018-06-07 16:25:59 +02:00
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
stanza.c('disable', {
|
|
|
|
'xmlns': Strophe.NS.PUSH,
|
|
|
|
'jid': push_app_server.jid,
|
|
|
|
});
|
|
|
|
if (push_app_server.node) {
|
|
|
|
stanza.attrs({'node': push_app_server.node});
|
|
|
|
}
|
|
|
|
_converse.api.sendIQ(stanza)
|
|
|
|
.catch(e => {
|
|
|
|
_converse.log(`Could not disable push app server for ${push_app_server.jid}`, Strophe.LogLevel.ERROR);
|
|
|
|
_converse.log(e, Strophe.LogLevel.ERROR);
|
|
|
|
});
|
|
|
|
}
|
2018-06-07 16:25:59 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
async function enablePushAppServer (domain, push_app_server) {
|
|
|
|
if (!push_app_server.jid || !push_app_server.node) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const identity = await _converse.api.disco.getIdentity('pubsub', 'push', push_app_server.jid);
|
|
|
|
if (!identity) {
|
|
|
|
return _converse.log(
|
|
|
|
`Not enabling push the service "${push_app_server.jid}", it doesn't have the right disco identtiy.`,
|
|
|
|
Strophe.LogLevel.WARN
|
|
|
|
);
|
2018-06-07 16:25:59 +02:00
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
const result = await Promise.all([
|
|
|
|
_converse.api.disco.supports(Strophe.NS.PUSH, push_app_server.jid),
|
|
|
|
_converse.api.disco.supports(Strophe.NS.PUSH, domain)
|
|
|
|
]);
|
2019-05-07 09:53:36 +02:00
|
|
|
if (!result[0] && !result[1]) {
|
2018-10-23 03:41:38 +02:00
|
|
|
return _converse.log(
|
|
|
|
`Not enabling push app server "${push_app_server.jid}", no disco support from your server.`,
|
|
|
|
Strophe.LogLevel.WARN
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const stanza = $iq({'type': 'set'});
|
|
|
|
if (domain !== _converse.bare_jid) {
|
|
|
|
stanza.attrs({'to': domain});
|
|
|
|
}
|
|
|
|
stanza.c('enable', {
|
|
|
|
'xmlns': Strophe.NS.PUSH,
|
|
|
|
'jid': push_app_server.jid,
|
|
|
|
'node': push_app_server.node
|
|
|
|
});
|
|
|
|
if (push_app_server.secret) {
|
|
|
|
stanza.c('x', {'xmlns': Strophe.NS.XFORM, 'type': 'submit'})
|
|
|
|
.c('field', {'var': 'FORM_TYPE'})
|
|
|
|
.c('value').t(`${Strophe.NS.PUBSUB}#publish-options`).up().up()
|
|
|
|
.c('field', {'var': 'secret'})
|
|
|
|
.c('value').t(push_app_server.secret);
|
|
|
|
}
|
|
|
|
return _converse.api.sendIQ(stanza);
|
|
|
|
}
|
2018-06-07 16:25:59 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
async function enablePush (domain) {
|
|
|
|
domain = domain || _converse.bare_jid;
|
|
|
|
const push_enabled = _converse.session.get('push_enabled') || [];
|
|
|
|
if (_.includes(push_enabled, domain)) {
|
|
|
|
return;
|
2018-06-06 11:07:59 +02:00
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
const enabled_services = _.reject(_converse.push_app_servers, 'disable');
|
2018-11-29 13:22:58 +01:00
|
|
|
const disabled_services = _.filter(_converse.push_app_servers, 'disable');
|
2018-05-29 12:00:23 +02:00
|
|
|
const enabled = _.map(enabled_services, _.partial(enablePushAppServer, domain));
|
|
|
|
const disabled = _.map(disabled_services, _.partial(disablePushAppServer, domain));
|
2018-10-23 03:41:38 +02:00
|
|
|
try {
|
2018-11-29 13:22:58 +01:00
|
|
|
await Promise.all(enabled.concat(disabled));
|
2018-10-23 03:41:38 +02:00
|
|
|
} catch (e) {
|
2018-11-29 13:22:58 +01:00
|
|
|
_converse.log('Could not enable or disable push App Server', Strophe.LogLevel.ERROR);
|
2018-10-23 03:41:38 +02:00
|
|
|
if (e) _converse.log(e, Strophe.LogLevel.ERROR);
|
|
|
|
} finally {
|
|
|
|
push_enabled.push(domain);
|
|
|
|
}
|
|
|
|
_converse.session.save('push_enabled', push_enabled);
|
|
|
|
}
|
|
|
|
_converse.api.listen.on('statusInitialized', () => enablePush());
|
2018-09-13 11:46:42 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
function onChatBoxAdded (model) {
|
|
|
|
if (model.get('type') == _converse.CHATROOMS_TYPE) {
|
|
|
|
enablePush(Strophe.getDomainFromJid(model.get('jid')));
|
2018-09-13 11:46:42 +02:00
|
|
|
}
|
2018-06-06 11:07:59 +02:00
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
if (_converse.enable_muc_push) {
|
|
|
|
_converse.api.listen.on('chatBoxesInitialized', () => _converse.chatboxes.on('add', onChatBoxAdded));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|