2019-07-11 10:48:52 +02:00
|
|
|
|
/**
|
|
|
|
|
* @module converse-core
|
2020-01-26 16:21:20 +01:00
|
|
|
|
* @copyright The Converse.js contributors
|
2019-09-19 16:54:55 +02:00
|
|
|
|
* @license Mozilla Public License (MPLv2)
|
2019-07-11 10:48:52 +02:00
|
|
|
|
*/
|
2019-10-09 16:01:38 +02:00
|
|
|
|
import './polyfill';
|
2020-06-08 16:08:50 +02:00
|
|
|
|
import 'strophe.js/src/websocket';
|
|
|
|
|
import Storage from '@converse/skeletor/src/storage.js';
|
2019-05-21 16:18:14 +02:00
|
|
|
|
import advancedFormat from 'dayjs/plugin/advancedFormat';
|
2019-06-05 06:57:20 +02:00
|
|
|
|
import dayjs from 'dayjs';
|
2019-11-06 11:01:34 +01:00
|
|
|
|
import log from '@converse/headless/log';
|
2019-06-05 06:57:20 +02:00
|
|
|
|
import pluggable from 'pluggable.js/src/pluggable';
|
2020-10-30 12:51:55 +01:00
|
|
|
|
import syncDriver from 'localforage-webextensionstorage-driver/sync';
|
|
|
|
|
import localDriver from 'localforage-webextensionstorage-driver/local';
|
2019-06-05 06:57:20 +02:00
|
|
|
|
import sizzle from 'sizzle';
|
2019-11-05 14:40:05 +01:00
|
|
|
|
import stanza_utils from "@converse/headless/utils/stanza";
|
2019-06-05 06:57:20 +02:00
|
|
|
|
import u from '@converse/headless/utils/core';
|
2020-06-08 16:08:50 +02:00
|
|
|
|
import { Collection } from "@converse/skeletor/src/collection";
|
2020-09-10 07:33:00 +02:00
|
|
|
|
import { Connection, MockConnection } from '@converse/headless/connection.js';
|
|
|
|
|
import { CustomElement } from '../components/element';
|
2020-06-08 16:08:50 +02:00
|
|
|
|
import { Events } from '@converse/skeletor/src/events.js';
|
|
|
|
|
import { Model } from '@converse/skeletor/src/model.js';
|
|
|
|
|
import { Router } from '@converse/skeletor/src/router.js';
|
2020-09-10 07:33:00 +02:00
|
|
|
|
import { Strophe, $build, $iq, $msg, $pres } from 'strophe.js/src/strophe';
|
2020-10-01 11:13:13 +02:00
|
|
|
|
import { assignIn, debounce, invoke, isFunction, isObject, pick } from 'lodash-es';
|
2020-08-24 19:05:47 +02:00
|
|
|
|
import { html } from 'lit-element';
|
2020-09-10 07:33:00 +02:00
|
|
|
|
import { sprintf } from 'sprintf-js';
|
2018-10-23 03:41:38 +02:00
|
|
|
|
|
2019-05-29 17:40:16 +02:00
|
|
|
|
|
2019-05-21 16:18:14 +02:00
|
|
|
|
dayjs.extend(advancedFormat);
|
2019-05-06 11:16:56 +02:00
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
|
// Add Strophe Namespaces
|
|
|
|
|
Strophe.addNamespace('CARBONS', 'urn:xmpp:carbons:2');
|
|
|
|
|
Strophe.addNamespace('CHATSTATES', 'http://jabber.org/protocol/chatstates');
|
|
|
|
|
Strophe.addNamespace('CSI', 'urn:xmpp:csi:0');
|
|
|
|
|
Strophe.addNamespace('DELAY', 'urn:xmpp:delay');
|
2019-09-24 15:33:41 +02:00
|
|
|
|
Strophe.addNamespace('FASTEN', 'urn:xmpp:fasten:0');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('FORWARD', 'urn:xmpp:forward:0');
|
|
|
|
|
Strophe.addNamespace('HINTS', 'urn:xmpp:hints');
|
|
|
|
|
Strophe.addNamespace('HTTPUPLOAD', 'urn:xmpp:http:upload:0');
|
2018-11-12 18:46:03 +01:00
|
|
|
|
Strophe.addNamespace('IDLE', 'urn:xmpp:idle:1');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('MAM', 'urn:xmpp:mam:2');
|
2019-09-24 15:33:41 +02:00
|
|
|
|
Strophe.addNamespace('MODERATE', 'urn:xmpp:message-moderate:0');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('NICK', 'http://jabber.org/protocol/nick');
|
2019-06-05 06:57:20 +02:00
|
|
|
|
Strophe.addNamespace('OMEMO', 'eu.siacs.conversations.axolotl');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('OUTOFBAND', 'jabber:x:oob');
|
|
|
|
|
Strophe.addNamespace('PUBSUB', 'http://jabber.org/protocol/pubsub');
|
|
|
|
|
Strophe.addNamespace('REGISTER', 'jabber:iq:register');
|
2019-09-24 15:33:41 +02:00
|
|
|
|
Strophe.addNamespace('RETRACT', 'urn:xmpp:message-retract:0');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('ROSTERX', 'http://jabber.org/protocol/rosterx');
|
|
|
|
|
Strophe.addNamespace('RSM', 'http://jabber.org/protocol/rsm');
|
|
|
|
|
Strophe.addNamespace('SID', 'urn:xmpp:sid:0');
|
|
|
|
|
Strophe.addNamespace('SPOILER', 'urn:xmpp:spoiler:0');
|
2019-04-10 22:03:00 +02:00
|
|
|
|
Strophe.addNamespace('STANZAS', 'urn:ietf:params:xml:ns:xmpp-stanzas');
|
2020-10-16 09:02:12 +02:00
|
|
|
|
Strophe.addNamespace('STYLING', 'urn:xmpp:styling:0');
|
2018-10-23 03:41:38 +02:00
|
|
|
|
Strophe.addNamespace('VCARD', 'vcard-temp');
|
|
|
|
|
Strophe.addNamespace('VCARDUPDATE', 'vcard-temp:x:update');
|
|
|
|
|
Strophe.addNamespace('XFORM', 'jabber:x:data');
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Custom error for indicating timeouts
|
|
|
|
|
* @namespace _converse
|
|
|
|
|
*/
|
|
|
|
|
class TimeoutError extends Error {}
|
|
|
|
|
|
|
|
|
|
|
2019-06-04 14:26:32 +02:00
|
|
|
|
// Core plugins are whitelisted automatically
|
|
|
|
|
// These are just the @converse/headless plugins, for the full converse,
|
|
|
|
|
// the other plugins are whitelisted in src/converse.js
|
|
|
|
|
const CORE_PLUGINS = [
|
2020-04-15 13:59:55 +02:00
|
|
|
|
'converse-adhoc',
|
2019-06-04 14:26:32 +02:00
|
|
|
|
'converse-bookmarks',
|
2019-06-05 10:01:55 +02:00
|
|
|
|
'converse-bosh',
|
2019-06-04 14:26:32 +02:00
|
|
|
|
'converse-caps',
|
2020-09-10 09:00:23 +02:00
|
|
|
|
'converse-carbons',
|
2019-11-01 16:04:55 +01:00
|
|
|
|
'converse-chat',
|
2020-09-10 09:00:23 +02:00
|
|
|
|
'converse-chatboxes',
|
2019-06-04 14:26:32 +02:00
|
|
|
|
'converse-disco',
|
2019-07-11 12:30:51 +02:00
|
|
|
|
'converse-emoji',
|
2020-09-10 09:00:23 +02:00
|
|
|
|
'converse-headlines',
|
2019-06-04 14:26:32 +02:00
|
|
|
|
'converse-mam',
|
|
|
|
|
'converse-muc',
|
|
|
|
|
'converse-ping',
|
|
|
|
|
'converse-pubsub',
|
|
|
|
|
'converse-roster',
|
|
|
|
|
'converse-smacks',
|
2019-10-15 12:55:11 +02:00
|
|
|
|
'converse-status',
|
2019-09-24 15:33:41 +02:00
|
|
|
|
'converse-vcard'
|
2019-06-04 14:26:32 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
|
// Default configuration values
|
|
|
|
|
// ----------------------------
|
2020-03-30 16:29:09 +02:00
|
|
|
|
const DEFAULT_SETTINGS = {
|
2018-10-23 03:41:38 +02:00
|
|
|
|
allow_non_roster_messaging: false,
|
2020-02-16 12:30:25 +01:00
|
|
|
|
assets_path: '/dist',
|
2018-10-23 03:41:38 +02:00
|
|
|
|
authentication: 'login', // Available values are "login", "prebind", "anonymous" and "external".
|
|
|
|
|
auto_login: false, // Currently only used in connection with anonymous login
|
|
|
|
|
auto_reconnect: true,
|
|
|
|
|
blacklisted_plugins: [],
|
2020-10-20 06:45:35 +02:00
|
|
|
|
clear_cache_on_logout: false,
|
2018-10-23 03:41:38 +02:00
|
|
|
|
connection_options: {},
|
|
|
|
|
credentials_url: null, // URL from where login credentials can be fetched
|
2020-04-10 15:21:13 +02:00
|
|
|
|
discover_connection_methods: true,
|
2019-07-11 12:30:14 +02:00
|
|
|
|
geouri_regex: /https\:\/\/www.openstreetmap.org\/.*#map=[0-9]+\/([\-0-9.]+)\/([\-0-9.]+)\S*/g,
|
2018-10-23 03:41:38 +02:00
|
|
|
|
geouri_replacement: 'https://www.openstreetmap.org/?mlat=$1&mlon=$2#map=18/$1/$2',
|
2020-04-07 13:47:34 +02:00
|
|
|
|
i18n: 'en',
|
2020-10-20 06:45:35 +02:00
|
|
|
|
idle_presence_timeout: 300, // Seconds after which an idle presence is sent
|
2018-10-23 03:41:38 +02:00
|
|
|
|
jid: undefined,
|
2019-07-26 17:53:18 +02:00
|
|
|
|
keepalive: true,
|
2020-02-16 12:30:25 +01:00
|
|
|
|
loglevel: 'info',
|
2018-10-23 03:41:38 +02:00
|
|
|
|
locales: [
|
2020-04-07 13:47:34 +02:00
|
|
|
|
'af', 'ar', 'bg', 'ca', 'cs', 'de', 'eo', 'es', 'eu', 'en', 'fi', 'fr',
|
|
|
|
|
'gl', 'he', 'hi', 'hu', 'id', 'it', 'ja', 'nb', 'nl', 'mr', 'oc',
|
2019-10-06 11:04:47 +02:00
|
|
|
|
'pl', 'pt', 'pt_BR', 'ro', 'ru', 'tr', 'uk', 'vi', 'zh_CN', 'zh_TW'
|
2018-10-23 03:41:38 +02:00
|
|
|
|
],
|
|
|
|
|
nickname: undefined,
|
|
|
|
|
password: undefined,
|
2019-12-03 13:51:57 +01:00
|
|
|
|
persistent_store: 'localStorage',
|
2018-10-23 03:41:38 +02:00
|
|
|
|
rid: undefined,
|
|
|
|
|
root: window.document,
|
|
|
|
|
sid: undefined,
|
2018-12-04 12:52:25 +01:00
|
|
|
|
singleton: false,
|
2018-10-23 03:41:38 +02:00
|
|
|
|
strict_plugin_dependencies: false,
|
|
|
|
|
view_mode: 'overlayed', // Choices are 'overlayed', 'fullscreen', 'mobile'
|
|
|
|
|
websocket_url: undefined,
|
|
|
|
|
whitelisted_plugins: []
|
|
|
|
|
};
|
|
|
|
|
|
2018-08-10 14:09:21 +02:00
|
|
|
|
|
2020-05-12 14:51:34 +02:00
|
|
|
|
const CONNECTION_STATUS = {};
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.ATTACHED] = 'ATTACHED';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.AUTHENTICATING] = 'AUTHENTICATING';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.AUTHFAIL] = 'AUTHFAIL';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.CONNECTED] = 'CONNECTED';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.CONNECTING] = 'CONNECTING';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.CONNFAIL] = 'CONNFAIL';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.DISCONNECTED] = 'DISCONNECTED';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.DISCONNECTING] = 'DISCONNECTING';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.ERROR] = 'ERROR';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.RECONNECTING] = 'RECONNECTING';
|
|
|
|
|
CONNECTION_STATUS[Strophe.Status.REDIRECT] = 'REDIRECT';
|
|
|
|
|
|
2020-09-10 07:33:00 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @namespace i18n
|
|
|
|
|
*/
|
|
|
|
|
export const i18n = {
|
|
|
|
|
initialize () {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Overridable string wrapper method which can be used to provide i18n
|
|
|
|
|
* support.
|
|
|
|
|
*
|
|
|
|
|
* The default implementation in @converse/headless simply calls sprintf
|
|
|
|
|
* with the passed in arguments.
|
|
|
|
|
*
|
|
|
|
|
* If you install the full version of Converse, then this method gets
|
|
|
|
|
* overwritten in src/i18n/index.js to return a translated string.
|
|
|
|
|
* @method __
|
|
|
|
|
* @private
|
|
|
|
|
* @memberOf i18n
|
|
|
|
|
* @param { String } str
|
|
|
|
|
*/
|
|
|
|
|
__ (...args) {
|
|
|
|
|
return sprintf(...args);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-29 23:47:56 +01:00
|
|
|
|
/**
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* A private, closured object containing the private api (via {@link _converse.api})
|
|
|
|
|
* as well as private methods and internal data-structures.
|
|
|
|
|
* @global
|
|
|
|
|
* @namespace _converse
|
2019-03-29 23:47:56 +01:00
|
|
|
|
*/
|
2020-04-23 13:22:31 +02:00
|
|
|
|
export const _converse = {
|
2020-04-29 10:19:57 +02:00
|
|
|
|
log,
|
2020-05-12 14:51:34 +02:00
|
|
|
|
CONNECTION_STATUS,
|
2020-09-03 16:05:56 +02:00
|
|
|
|
templates: {},
|
|
|
|
|
promises: {
|
|
|
|
|
'initialized': u.getResolveablePromise()
|
|
|
|
|
},
|
2020-03-31 12:51:30 +02:00
|
|
|
|
|
|
|
|
|
STATUS_WEIGHTS: {
|
|
|
|
|
'offline': 6,
|
|
|
|
|
'unavailable': 5,
|
|
|
|
|
'xa': 4,
|
|
|
|
|
'away': 3,
|
|
|
|
|
'dnd': 2,
|
|
|
|
|
'chat': 1, // We currently don't differentiate between "chat" and "online"
|
|
|
|
|
'online': 1
|
|
|
|
|
},
|
|
|
|
|
ANONYMOUS: 'anonymous',
|
|
|
|
|
CLOSED: 'closed',
|
|
|
|
|
EXTERNAL: 'external',
|
|
|
|
|
LOGIN: 'login',
|
|
|
|
|
LOGOUT: 'logout',
|
|
|
|
|
OPENED: 'opened',
|
|
|
|
|
PREBIND: 'prebind',
|
|
|
|
|
|
2020-09-25 13:17:56 +02:00
|
|
|
|
/**
|
|
|
|
|
* @constant
|
|
|
|
|
* @type { integer }
|
|
|
|
|
*/
|
2020-03-31 12:51:30 +02:00
|
|
|
|
STANZA_TIMEOUT: 10000,
|
|
|
|
|
|
|
|
|
|
SUCCESS: 'success',
|
|
|
|
|
FAILURE: 'failure',
|
2019-10-16 17:17:29 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// Generated from css/images/user.svg
|
|
|
|
|
DEFAULT_IMAGE_TYPE: 'image/svg+xml',
|
|
|
|
|
DEFAULT_IMAGE: "PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCI+CiA8cmVjdCB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCIgZmlsbD0iIzU1NSIvPgogPGNpcmNsZSBjeD0iNjQiIGN5PSI0MSIgcj0iMjQiIGZpbGw9IiNmZmYiLz4KIDxwYXRoIGQ9Im0yOC41IDExMiB2LTEyIGMwLTEyIDEwLTI0IDI0LTI0IGgyMyBjMTQgMCAyNCAxMiAyNCAyNCB2MTIiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==",
|
2019-10-16 17:17:29 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
TIMEOUTS: {
|
|
|
|
|
// Set as module attr so that we can override in tests.
|
|
|
|
|
PAUSED: 10000,
|
|
|
|
|
INACTIVE: 90000
|
|
|
|
|
},
|
2019-10-16 17:17:29 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// XEP-0085 Chat states
|
|
|
|
|
// https://xmpp.org/extensions/xep-0085.html
|
|
|
|
|
INACTIVE: 'inactive',
|
|
|
|
|
ACTIVE: 'active',
|
|
|
|
|
COMPOSING: 'composing',
|
|
|
|
|
PAUSED: 'paused',
|
|
|
|
|
GONE: 'gone',
|
2017-01-23 11:15:07 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// Chat types
|
|
|
|
|
PRIVATE_CHAT_TYPE: 'chatbox',
|
|
|
|
|
CHATROOMS_TYPE: 'chatroom',
|
|
|
|
|
HEADLINES_TYPE: 'headline',
|
|
|
|
|
CONTROLBOX_TYPE: 'controlbox',
|
2019-12-18 16:09:44 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
default_connection_options: {'explicitResourceBinding': true},
|
|
|
|
|
router: new Router(),
|
2018-10-23 03:41:38 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
TimeoutError: TimeoutError,
|
2019-04-22 14:04:21 +02:00
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
isTestEnv: () => {
|
|
|
|
|
return initialization_settings.bosh_service_url === 'montague.lit/http-bind';
|
|
|
|
|
},
|
2019-04-22 14:04:21 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Translate the given string based on the current locale.
|
|
|
|
|
* @method __
|
|
|
|
|
* @private
|
|
|
|
|
* @memberOf _converse
|
2020-09-10 07:33:00 +02:00
|
|
|
|
* @param { String } str
|
2020-03-31 12:51:30 +02:00
|
|
|
|
*/
|
2020-09-10 07:33:00 +02:00
|
|
|
|
'__': (...args) => i18n.__(...args),
|
2019-06-05 11:31:34 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* A no-op method which is used to signal to gettext that the passed in string
|
|
|
|
|
* should be included in the pot translation file.
|
2018-12-04 12:14:52 +01:00
|
|
|
|
*
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* In contrast to the double-underscore method, the triple underscore method
|
|
|
|
|
* doesn't actually translate the strings.
|
|
|
|
|
*
|
|
|
|
|
* One reason for this method might be because we're using strings we cannot
|
|
|
|
|
* send to the translation function because they require variable interpolation
|
|
|
|
|
* and we don't yet have the variables at scan time.
|
|
|
|
|
*
|
|
|
|
|
* @method ___
|
|
|
|
|
* @private
|
|
|
|
|
* @memberOf _converse
|
|
|
|
|
* @param { String } str
|
2018-12-04 12:14:52 +01:00
|
|
|
|
*/
|
2020-03-31 12:51:30 +02:00
|
|
|
|
'___': str => str
|
2019-10-11 20:29:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-11-23 10:29:42 +01:00
|
|
|
|
_converse.VERSION_NAME = "v7.0.3dev";
|
2018-11-15 22:59:55 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
Object.assign(_converse, Events);
|
2018-11-15 22:59:55 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// Make converse pluggable
|
|
|
|
|
pluggable.enable(_converse, '_converse', 'pluggable');
|
2019-05-21 11:12:34 +02:00
|
|
|
|
|
2018-11-15 22:59:55 +01:00
|
|
|
|
|
2020-06-03 09:11:16 +02:00
|
|
|
|
let user_settings; // User settings, populated via api.users.settings
|
|
|
|
|
let initialization_settings = {}; // Container for settings passed in via converse.initialize
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function initSettings (settings) {
|
|
|
|
|
_converse.settings = {};
|
|
|
|
|
initialization_settings = settings;
|
|
|
|
|
// Allow only whitelisted settings to be overwritten via converse.initialize
|
|
|
|
|
const allowed_settings = pick(settings, Object.keys(DEFAULT_SETTINGS));
|
|
|
|
|
assignIn(_converse.settings, DEFAULT_SETTINGS, allowed_settings);
|
|
|
|
|
assignIn(_converse, DEFAULT_SETTINGS, allowed_settings); // FIXME: remove
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-31 14:46:38 +02:00
|
|
|
|
|
|
|
|
|
function initUserSettings () {
|
|
|
|
|
if (!_converse.bare_jid) {
|
|
|
|
|
const msg = "No JID to fetch user settings for";
|
|
|
|
|
log.error(msg);
|
|
|
|
|
throw Error(msg);
|
|
|
|
|
}
|
2020-04-07 19:07:51 +02:00
|
|
|
|
if (!user_settings?.fetched) {
|
2020-03-31 14:46:38 +02:00
|
|
|
|
const id = `converse.user-settings.${_converse.bare_jid}`;
|
2020-04-07 19:07:51 +02:00
|
|
|
|
user_settings = new Model({id});
|
2020-06-03 17:59:41 +02:00
|
|
|
|
user_settings.browserStorage = createStore(id);
|
2020-03-31 14:46:38 +02:00
|
|
|
|
user_settings.fetched = user_settings.fetch({'promise': true});
|
|
|
|
|
}
|
|
|
|
|
return user_settings.fetched;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* ### The private API
|
|
|
|
|
*
|
|
|
|
|
* The private API methods are only accessible via the closured {@link _converse}
|
|
|
|
|
* object, which is only available to plugins.
|
|
|
|
|
*
|
|
|
|
|
* These methods are kept private (i.e. not global) because they may return
|
|
|
|
|
* sensitive data which should be kept off-limits to other 3rd-party scripts
|
|
|
|
|
* that might be running in the page.
|
|
|
|
|
*
|
|
|
|
|
* @namespace _converse.api
|
|
|
|
|
* @memberOf _converse
|
|
|
|
|
*/
|
2020-04-15 13:59:55 +02:00
|
|
|
|
export const api = _converse.api = {
|
2019-03-22 08:15:35 +01:00
|
|
|
|
/**
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* This grouping collects API functions related to the XMPP connection.
|
2019-03-22 08:15:35 +01:00
|
|
|
|
*
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* @namespace _converse.api.connection
|
|
|
|
|
* @memberOf _converse.api
|
2019-03-22 08:15:35 +01:00
|
|
|
|
*/
|
2020-03-31 12:51:30 +02:00
|
|
|
|
connection: {
|
|
|
|
|
/**
|
|
|
|
|
* @method _converse.api.connection.connected
|
|
|
|
|
* @memberOf _converse.api.connection
|
|
|
|
|
* @returns {boolean} Whether there is an established connection or not.
|
|
|
|
|
*/
|
|
|
|
|
connected () {
|
|
|
|
|
return _converse?.connection?.connected && true;
|
|
|
|
|
},
|
2018-05-29 12:00:23 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Terminates the connection.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.connection.disconnectkjjjkk
|
|
|
|
|
* @memberOf _converse.api.connection
|
|
|
|
|
*/
|
|
|
|
|
disconnect () {
|
|
|
|
|
if (_converse.connection) {
|
|
|
|
|
_converse.connection.disconnect();
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-06-01 15:37:18 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Can be called once the XMPP connection has dropped and we want
|
|
|
|
|
* to attempt reconnection.
|
|
|
|
|
* Only needs to be called once, if reconnect fails Converse will
|
|
|
|
|
* attempt to reconnect every two seconds, alternating between BOSH and
|
|
|
|
|
* Websocket if URLs for both were provided.
|
|
|
|
|
* @method reconnect
|
|
|
|
|
* @memberOf _converse.api.connection
|
|
|
|
|
*/
|
|
|
|
|
async reconnect () {
|
|
|
|
|
const conn_status = _converse.connfeedback.get('connection_status');
|
2019-06-01 15:37:18 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
if (api.settings.get("authentication") === _converse.ANONYMOUS) {
|
|
|
|
|
await tearDown();
|
|
|
|
|
await clearSession();
|
|
|
|
|
}
|
|
|
|
|
if (conn_status === Strophe.Status.CONNFAIL) {
|
|
|
|
|
// When reconnecting with a new transport, we call setUserJID
|
|
|
|
|
// so that a new resource is generated, to avoid multiple
|
|
|
|
|
// server-side sessions with the same resource.
|
|
|
|
|
//
|
|
|
|
|
// We also call `_proto._doDisconnect` so that connection event handlers
|
|
|
|
|
// for the old transport are removed.
|
|
|
|
|
if (api.connection.isType('websocket') && api.settings.get('bosh_service_url')) {
|
|
|
|
|
await _converse.setUserJID(_converse.bare_jid);
|
|
|
|
|
_converse.connection._proto._doDisconnect();
|
|
|
|
|
_converse.connection._proto = new Strophe.Bosh(_converse.connection);
|
|
|
|
|
_converse.connection.service = api.settings.get('bosh_service_url');
|
|
|
|
|
} else if (api.connection.isType('bosh') && api.settings.get("websocket_url")) {
|
|
|
|
|
if (api.settings.get("authentication") === _converse.ANONYMOUS) {
|
|
|
|
|
// When reconnecting anonymously, we need to connect with only
|
|
|
|
|
// the domain, not the full JID that we had in our previous
|
|
|
|
|
// (now failed) session.
|
|
|
|
|
await _converse.setUserJID(api.settings.get("jid"));
|
|
|
|
|
} else {
|
|
|
|
|
await _converse.setUserJID(_converse.bare_jid);
|
|
|
|
|
}
|
|
|
|
|
_converse.connection._proto._doDisconnect();
|
|
|
|
|
_converse.connection._proto = new Strophe.Websocket(_converse.connection);
|
|
|
|
|
_converse.connection.service = api.settings.get("websocket_url");
|
|
|
|
|
}
|
2020-05-12 11:22:35 +02:00
|
|
|
|
} else if (conn_status === Strophe.Status.AUTHFAIL && api.settings.get("authentication") === _converse.ANONYMOUS) {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// When reconnecting anonymously, we need to connect with only
|
|
|
|
|
// the domain, not the full JID that we had in our previous
|
|
|
|
|
// (now failed) session.
|
|
|
|
|
await _converse.setUserJID(api.settings.get("jid"));
|
|
|
|
|
}
|
2019-07-23 10:18:02 +02:00
|
|
|
|
|
2020-05-12 11:22:35 +02:00
|
|
|
|
if (_converse.connection.reconnecting) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.connection.debouncedReconnect();
|
2020-03-31 12:51:30 +02:00
|
|
|
|
} else {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
return _converse.connection.reconnect();
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-07-23 10:18:02 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Utility method to determine the type of connection we have
|
|
|
|
|
* @method isType
|
|
|
|
|
* @memberOf _converse.api.connection
|
|
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
|
|
|
|
isType (type) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
return _converse.connection.isType(type);
|
2019-07-23 10:18:02 +02:00
|
|
|
|
}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
},
|
2019-07-23 10:18:02 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Lets you trigger events, which can be listened to via
|
|
|
|
|
* {@link _converse.api.listen.on} or {@link _converse.api.listen.once}
|
|
|
|
|
* (see [_converse.api.listen](http://localhost:8000/docs/html/api/-_converse.api.listen.html)).
|
|
|
|
|
*
|
|
|
|
|
* Some events also double as promises and can be waited on via {@link _converse.api.waitUntil}.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.trigger
|
|
|
|
|
* @param {string} name - The event name
|
|
|
|
|
* @param {...any} [argument] - Argument to be passed to the event handler
|
|
|
|
|
* @param {object} [options]
|
|
|
|
|
* @param {boolean} [options.synchronous] - Whether the event is synchronous or not.
|
|
|
|
|
* When a synchronous event is fired, a promise will be returned
|
|
|
|
|
* by {@link _converse.api.trigger} which resolves once all the
|
|
|
|
|
* event handlers' promises have been resolved.
|
|
|
|
|
*/
|
|
|
|
|
async trigger (name) {
|
2020-07-30 11:25:53 +02:00
|
|
|
|
if (!_converse._events) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
const args = Array.from(arguments);
|
|
|
|
|
const options = args.pop();
|
|
|
|
|
if (options && options.synchronous) {
|
|
|
|
|
const events = _converse._events[name] || [];
|
|
|
|
|
await Promise.all(events.map(e => e.callback.apply(e.ctx, args.splice(1))));
|
|
|
|
|
} else {
|
|
|
|
|
_converse.trigger.apply(_converse, arguments);
|
|
|
|
|
}
|
|
|
|
|
const promise = _converse.promises[name];
|
|
|
|
|
if (promise !== undefined) {
|
|
|
|
|
promise.resolve();
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-07-23 10:18:02 +02:00
|
|
|
|
|
2020-04-06 16:04:31 +02:00
|
|
|
|
/**
|
|
|
|
|
* Triggers a hook which can be intercepted by registered listeners via
|
|
|
|
|
* {@link _converse.api.listen.on} or {@link _converse.api.listen.once}.
|
|
|
|
|
* (see [_converse.api.listen](http://localhost:8000/docs/html/api/-_converse.api.listen.html)).
|
|
|
|
|
* A hook is a special kind of event which allows you to intercept a data
|
|
|
|
|
* structure in order to modify it, before passing it back.
|
|
|
|
|
* @async
|
|
|
|
|
* @param {string} name - The hook name
|
|
|
|
|
* @param {...any} context - The context to which the hook applies (could be for example, a {@link _converse.ChatBox)).
|
2020-09-16 13:28:59 +02:00
|
|
|
|
* @param {...any} data - The data structure to be intercepted and modified by the hook listeners.
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* @returns {Promise<any>} - A promise that resolves with the modified data structure.
|
2020-04-06 16:04:31 +02:00
|
|
|
|
*/
|
|
|
|
|
hook (name, context, data) {
|
|
|
|
|
const events = _converse._events[name] || [];
|
|
|
|
|
if (events.length) {
|
|
|
|
|
// Create a chain of promises, with each one feeding its output to
|
|
|
|
|
// the next. The first input is a promise with the original data
|
|
|
|
|
// sent to this hook.
|
|
|
|
|
const o = events.reduce((o, e) => o.then(d => e.callback(context, d)), Promise.resolve(data));
|
|
|
|
|
o.catch(e => {
|
|
|
|
|
log.error(e)
|
|
|
|
|
throw e;
|
|
|
|
|
});
|
|
|
|
|
return o;
|
|
|
|
|
} else {
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2019-06-01 19:36:23 +02:00
|
|
|
|
/**
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* This grouping collects API functions related to the current logged in user.
|
2019-06-01 19:36:23 +02:00
|
|
|
|
*
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* @namespace _converse.api.user
|
|
|
|
|
* @memberOf _converse.api
|
2019-06-01 19:36:23 +02:00
|
|
|
|
*/
|
2020-03-31 12:51:30 +02:00
|
|
|
|
user: {
|
|
|
|
|
/**
|
|
|
|
|
* @method _converse.api.user.jid
|
|
|
|
|
* @returns {string} The current user's full JID (Jabber ID)
|
|
|
|
|
* @example _converse.api.user.jid())
|
|
|
|
|
*/
|
|
|
|
|
jid () {
|
|
|
|
|
return _converse.connection.jid;
|
|
|
|
|
},
|
2019-06-01 19:36:23 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Logs the user in.
|
|
|
|
|
*
|
|
|
|
|
* If called without any parameters, Converse will try
|
|
|
|
|
* to log the user in by calling the `prebind_url` or `credentials_url` depending
|
|
|
|
|
* on whether prebinding is used or not.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.user.login
|
|
|
|
|
* @param {string} [jid]
|
|
|
|
|
* @param {string} [password]
|
|
|
|
|
* @param {boolean} [automatic=false] - An internally used flag that indicates whether
|
|
|
|
|
* this method was called automatically once the connection has been
|
|
|
|
|
* initialized. It's used together with the `auto_login` configuration flag
|
|
|
|
|
* to determine whether Converse should try to log the user in if it
|
|
|
|
|
* fails to restore a previous auth'd session.
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* @returns {void}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
*/
|
|
|
|
|
async login (jid, password, automatic=false) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
jid = jid || _converse.jid;
|
|
|
|
|
if (!_converse.connection?.jid || (jid && !u.isSameDomain(_converse.connection.jid, jid))) {
|
|
|
|
|
await _converse.initConnection();
|
|
|
|
|
}
|
|
|
|
|
if (api.settings.get("connection_options")?.worker && (await _converse.connection.restoreWorkerSession())) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (jid) {
|
|
|
|
|
jid = await _converse.setUserJID(jid);
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
2019-06-01 19:36:23 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// See whether there is a BOSH session to re-attach to
|
|
|
|
|
const bosh_plugin = _converse.pluggable.plugins['converse-bosh'];
|
|
|
|
|
if (bosh_plugin && bosh_plugin.enabled()) {
|
|
|
|
|
if (await _converse.restoreBOSHSession()) {
|
|
|
|
|
return;
|
|
|
|
|
} else if (api.settings.get("authentication") === _converse.PREBIND && (!automatic || api.settings.get("auto_login"))) {
|
|
|
|
|
return _converse.startNewPreboundBOSHSession();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
password = password || api.settings.get("password");
|
|
|
|
|
const credentials = (jid && password) ? { jid, password } : null;
|
|
|
|
|
attemptNonPreboundSession(credentials, automatic);
|
|
|
|
|
},
|
2019-06-01 19:36:23 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Logs the user out of the current XMPP session.
|
|
|
|
|
* @method _converse.api.user.logout
|
|
|
|
|
* @example _converse.api.user.logout();
|
|
|
|
|
*/
|
|
|
|
|
logout () {
|
|
|
|
|
const promise = u.getResolveablePromise();
|
|
|
|
|
const complete = () => {
|
|
|
|
|
// Recreate all the promises
|
|
|
|
|
Object.keys(_converse.promises).forEach(replacePromise);
|
|
|
|
|
delete _converse.jid
|
|
|
|
|
/**
|
|
|
|
|
* Triggered once the user has logged out.
|
|
|
|
|
* @event _converse#logout
|
|
|
|
|
*/
|
|
|
|
|
api.trigger('logout');
|
|
|
|
|
promise.resolve();
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.connection.setDisconnectionCause(_converse.LOGOUT, undefined, true);
|
2020-03-31 12:51:30 +02:00
|
|
|
|
if (_converse.connection !== undefined) {
|
|
|
|
|
api.listen.once('disconnected', () => complete());
|
|
|
|
|
_converse.connection.disconnect();
|
|
|
|
|
} else {
|
|
|
|
|
complete();
|
|
|
|
|
}
|
|
|
|
|
return promise;
|
2020-03-31 14:46:38 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* API for accessing and setting user settings. User settings are
|
|
|
|
|
* different from the application settings from {@link _converse.api.settings}
|
|
|
|
|
* because they are per-user and set via user action.
|
|
|
|
|
* @namespace _converse.api.user.settings
|
|
|
|
|
* @memberOf _converse.api.user
|
|
|
|
|
*/
|
|
|
|
|
settings: {
|
2020-04-06 14:27:44 +02:00
|
|
|
|
/**
|
|
|
|
|
* Returns the user settings model. Useful when you want to listen for change events.
|
|
|
|
|
* @method _converse.api.user.settings.getModel
|
2020-04-07 19:07:51 +02:00
|
|
|
|
* @returns {Promise<Model>}
|
|
|
|
|
* @example const settings = await _converse.api.user.settings.getModel();
|
2020-04-06 14:27:44 +02:00
|
|
|
|
*/
|
2020-04-07 19:07:51 +02:00
|
|
|
|
async getModel () {
|
|
|
|
|
await initUserSettings();
|
2020-04-06 14:27:44 +02:00
|
|
|
|
return user_settings;
|
|
|
|
|
},
|
|
|
|
|
|
2020-03-31 14:46:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Get the value of a particular user setting.
|
|
|
|
|
* @method _converse.api.user.settings.get
|
2020-10-20 06:45:35 +02:00
|
|
|
|
* @param {String} key - The setting name
|
2020-03-31 17:22:05 +02:00
|
|
|
|
* @param {*} fallback - An optional fallback value if the user setting is undefined
|
2020-03-31 14:46:38 +02:00
|
|
|
|
* @returns {Promise} Promise which resolves with the value of the particular configuration setting.
|
|
|
|
|
* @example _converse.api.user.settings.get("foo");
|
|
|
|
|
*/
|
2020-03-31 17:22:05 +02:00
|
|
|
|
async get (key, fallback) {
|
2020-03-31 14:46:38 +02:00
|
|
|
|
await initUserSettings();
|
2020-03-31 17:22:05 +02:00
|
|
|
|
return user_settings.get(key) === undefined ? fallback : user_settings.get(key);
|
2020-03-31 14:46:38 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set one or many user settings.
|
|
|
|
|
* @async
|
|
|
|
|
* @method _converse.api.user.settings.set
|
|
|
|
|
* @param {Object} [settings] An object containing configuration settings.
|
|
|
|
|
* @param {string} [key] Alternatively to passing in an object, you can pass in a key and a value.
|
|
|
|
|
* @param {string} [value]
|
|
|
|
|
* @example _converse.api.user.settings.set("foo", "bar");
|
|
|
|
|
* @example
|
|
|
|
|
* _converse.api.user.settings.set({
|
|
|
|
|
* "foo": "bar",
|
|
|
|
|
* "baz": "buz"
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
async set (key, val) {
|
|
|
|
|
await initUserSettings();
|
2020-04-06 14:27:44 +02:00
|
|
|
|
if (isObject(key)) {
|
|
|
|
|
return user_settings.save(key, {'promise': true});
|
|
|
|
|
} else {
|
|
|
|
|
const o = {};
|
|
|
|
|
o[key] = val;
|
|
|
|
|
return user_settings.save(o, {'promise': true});
|
|
|
|
|
}
|
2020-04-07 19:07:51 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Clears all the user settings
|
|
|
|
|
* @method _converse.api.user.settings.clear
|
|
|
|
|
*/
|
|
|
|
|
async clear () {
|
|
|
|
|
await initUserSettings();
|
|
|
|
|
user_settings.clear();
|
2020-03-31 14:46:38 +02:00
|
|
|
|
}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-08-01 10:26:35 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* This grouping allows access to the
|
|
|
|
|
* [configuration settings](/docs/html/configuration.html#configuration-settings)
|
|
|
|
|
* of Converse.
|
|
|
|
|
*
|
|
|
|
|
* @namespace _converse.api.settings
|
|
|
|
|
* @memberOf _converse.api
|
|
|
|
|
*/
|
|
|
|
|
settings: {
|
|
|
|
|
/**
|
|
|
|
|
* Allows new configuration settings to be specified, or new default values for
|
|
|
|
|
* existing configuration settings to be specified.
|
|
|
|
|
*
|
2020-06-03 09:17:13 +02:00
|
|
|
|
* Note, calling this method *after* converse.initialize has been
|
|
|
|
|
* called will *not* change the initialization settings provided via
|
|
|
|
|
* `converse.initialize`.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.settings.extend
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* @param {object} settings The configuration settings
|
|
|
|
|
* @example
|
2020-06-03 09:17:13 +02:00
|
|
|
|
* _converse.api.settings.extend({
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* 'enable_foo': true
|
|
|
|
|
* });
|
|
|
|
|
*
|
|
|
|
|
* // The user can then override the default value of the configuration setting when
|
|
|
|
|
* // calling `converse.initialize`.
|
|
|
|
|
* converse.initialize({
|
|
|
|
|
* 'enable_foo': false
|
|
|
|
|
* });
|
|
|
|
|
*/
|
2020-06-03 09:17:13 +02:00
|
|
|
|
extend (settings) {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
u.merge(DEFAULT_SETTINGS, settings);
|
2020-06-03 09:11:16 +02:00
|
|
|
|
// When updating the settings, we need to avoid overwriting the
|
|
|
|
|
// initialization_settings (i.e. the settings passed in via converse.initialize).
|
2020-08-12 10:12:10 +02:00
|
|
|
|
const allowed_keys = Object.keys(pick(settings,Object.keys(DEFAULT_SETTINGS)));
|
2020-06-03 09:11:16 +02:00
|
|
|
|
const allowed_site_settings = pick(initialization_settings, allowed_keys);
|
|
|
|
|
const updated_settings = assignIn(pick(settings, allowed_keys), allowed_site_settings);
|
|
|
|
|
u.merge(_converse.settings, updated_settings);
|
|
|
|
|
u.merge(_converse, updated_settings); // FIXME: remove
|
2020-03-31 12:51:30 +02:00
|
|
|
|
},
|
|
|
|
|
|
2020-06-03 09:17:13 +02:00
|
|
|
|
update (settings) {
|
2020-08-10 08:06:24 +02:00
|
|
|
|
log.warn("The api.settings.update method has been deprecated and will be removed. "+
|
2020-06-03 09:17:13 +02:00
|
|
|
|
"Please use api.settings.extend instead.");
|
|
|
|
|
return this.extend(settings);
|
|
|
|
|
},
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* @method _converse.api.settings.get
|
|
|
|
|
* @returns {*} Value of the particular configuration setting.
|
|
|
|
|
* @example _converse.api.settings.get("play_sounds");
|
|
|
|
|
*/
|
|
|
|
|
get (key) {
|
|
|
|
|
if (Object.keys(DEFAULT_SETTINGS).includes(key)) {
|
|
|
|
|
return _converse[key];
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-10-20 06:45:35 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Set one or many configuration settings.
|
|
|
|
|
*
|
|
|
|
|
* Note, this is not an alternative to calling {@link converse.initialize}, which still needs
|
|
|
|
|
* to be called. Generally, you'd use this method after Converse is already
|
|
|
|
|
* running and you want to change the configuration on-the-fly.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.settings.set
|
|
|
|
|
* @param {Object} [settings] An object containing configuration settings.
|
|
|
|
|
* @param {string} [key] Alternatively to passing in an object, you can pass in a key and a value.
|
|
|
|
|
* @param {string} [value]
|
|
|
|
|
* @example _converse.api.settings.set("play_sounds", true);
|
|
|
|
|
* @example
|
|
|
|
|
* _converse.api.settings.set({
|
2020-03-31 14:46:38 +02:00
|
|
|
|
* "play_sounds": true,
|
|
|
|
|
* "hide_offline_users": true
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
set (key, val) {
|
|
|
|
|
const o = {};
|
|
|
|
|
if (isObject(key)) {
|
|
|
|
|
assignIn(_converse, pick(key, Object.keys(DEFAULT_SETTINGS)));
|
|
|
|
|
assignIn(_converse.settings, pick(key, Object.keys(DEFAULT_SETTINGS)));
|
2020-10-01 11:13:13 +02:00
|
|
|
|
} else if (typeof key === 'string') {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
o[key] = val;
|
|
|
|
|
assignIn(_converse, pick(o, Object.keys(DEFAULT_SETTINGS)));
|
|
|
|
|
assignIn(_converse.settings, pick(o, Object.keys(DEFAULT_SETTINGS)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converse and its plugins trigger various events which you can listen to via the
|
|
|
|
|
* {@link _converse.api.listen} namespace.
|
|
|
|
|
*
|
|
|
|
|
* Some of these events are also available as [ES2015 Promises](http://es6-features.org/#PromiseUsage)
|
|
|
|
|
* although not all of them could logically act as promises, since some events
|
|
|
|
|
* might be fired multpile times whereas promises are to be resolved (or
|
|
|
|
|
* rejected) only once.
|
|
|
|
|
*
|
|
|
|
|
* Events which are also promises include:
|
|
|
|
|
*
|
|
|
|
|
* * [cachedRoster](/docs/html/events.html#cachedroster)
|
|
|
|
|
* * [chatBoxesFetched](/docs/html/events.html#chatBoxesFetched)
|
|
|
|
|
* * [pluginsInitialized](/docs/html/events.html#pluginsInitialized)
|
|
|
|
|
* * [roster](/docs/html/events.html#roster)
|
|
|
|
|
* * [rosterContactsFetched](/docs/html/events.html#rosterContactsFetched)
|
|
|
|
|
* * [rosterGroupsFetched](/docs/html/events.html#rosterGroupsFetched)
|
|
|
|
|
* * [rosterInitialized](/docs/html/events.html#rosterInitialized)
|
|
|
|
|
* * [roomsPanelRendered](/docs/html/events.html#roomsPanelRendered)
|
|
|
|
|
*
|
|
|
|
|
* The various plugins might also provide promises, and they do this by using the
|
|
|
|
|
* `promises.add` api method.
|
|
|
|
|
*
|
|
|
|
|
* @namespace _converse.api.promises
|
|
|
|
|
* @memberOf _converse.api
|
|
|
|
|
*/
|
|
|
|
|
promises: {
|
|
|
|
|
/**
|
|
|
|
|
* By calling `promises.add`, a new [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)
|
|
|
|
|
* is made available for other code or plugins to depend on via the
|
|
|
|
|
* {@link _converse.api.waitUntil} method.
|
|
|
|
|
*
|
|
|
|
|
* Generally, it's the responsibility of the plugin which adds the promise to
|
|
|
|
|
* also resolve it.
|
|
|
|
|
*
|
|
|
|
|
* This is done by calling {@link _converse.api.trigger}, which not only resolves the
|
|
|
|
|
* promise, but also emits an event with the same name (which can be listened to
|
|
|
|
|
* via {@link _converse.api.listen}).
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.promises.add
|
|
|
|
|
* @param {string|array} [name|names] The name or an array of names for the promise(s) to be added
|
|
|
|
|
* @param {boolean} [replace=true] Whether this promise should be replaced with a new one when the user logs out.
|
|
|
|
|
* @example _converse.api.promises.add('foo-completed');
|
|
|
|
|
*/
|
|
|
|
|
add (promises, replace=true) {
|
|
|
|
|
promises = Array.isArray(promises) ? promises : [promises];
|
|
|
|
|
promises.forEach(name => {
|
|
|
|
|
const promise = u.getResolveablePromise();
|
|
|
|
|
promise.replace = replace;
|
|
|
|
|
_converse.promises[name] = promise;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converse emits events to which you can subscribe to.
|
|
|
|
|
*
|
|
|
|
|
* The `listen` namespace exposes methods for creating event listeners
|
|
|
|
|
* (aka handlers) for these events.
|
|
|
|
|
*
|
|
|
|
|
* @namespace _converse.api.listen
|
|
|
|
|
* @memberOf _converse
|
|
|
|
|
*/
|
|
|
|
|
listen: {
|
|
|
|
|
/**
|
|
|
|
|
* Lets you listen to an event exactly once.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.listen.once
|
|
|
|
|
* @param {string} name The event's name
|
|
|
|
|
* @param {function} callback The callback method to be called when the event is emitted.
|
|
|
|
|
* @param {object} [context] The value of the `this` parameter for the callback.
|
|
|
|
|
* @example _converse.api.listen.once('message', function (messageXML) { ... });
|
|
|
|
|
*/
|
|
|
|
|
once: _converse.once.bind(_converse),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Lets you subscribe to an event.
|
|
|
|
|
*
|
|
|
|
|
* Every time the event fires, the callback method specified by `callback` will be called.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.listen.on
|
|
|
|
|
* @param {string} name The event's name
|
|
|
|
|
* @param {function} callback The callback method to be called when the event is emitted.
|
|
|
|
|
* @param {object} [context] The value of the `this` parameter for the callback.
|
|
|
|
|
* @example _converse.api.listen.on('message', function (messageXML) { ... });
|
|
|
|
|
*/
|
|
|
|
|
on: _converse.on.bind(_converse),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* To stop listening to an event, you can use the `not` method.
|
|
|
|
|
*
|
|
|
|
|
* Every time the event fires, the callback method specified by `callback` will be called.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse.api.listen.not
|
|
|
|
|
* @param {string} name The event's name
|
|
|
|
|
* @param {function} callback The callback method that is to no longer be called when the event fires
|
|
|
|
|
* @example _converse.api.listen.not('message', function (messageXML);
|
|
|
|
|
*/
|
|
|
|
|
not: _converse.off.bind(_converse),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Subscribe to an incoming stanza
|
|
|
|
|
* Every a matched stanza is received, the callback method specified by
|
|
|
|
|
* `callback` will be called.
|
|
|
|
|
* @method _converse.api.listen.stanza
|
|
|
|
|
* @param {string} name The stanza's name
|
|
|
|
|
* @param {object} options Matching options (e.g. 'ns' for namespace, 'type' for stanza type, also 'id' and 'from');
|
|
|
|
|
* @param {function} handler The callback method to be called when the stanza appears
|
|
|
|
|
*/
|
|
|
|
|
stanza (name, options, handler) {
|
|
|
|
|
if (isFunction(options)) {
|
|
|
|
|
handler = options;
|
|
|
|
|
options = {};
|
|
|
|
|
} else {
|
|
|
|
|
options = options || {};
|
|
|
|
|
}
|
|
|
|
|
_converse.connection.addHandler(
|
|
|
|
|
handler,
|
|
|
|
|
options.ns,
|
|
|
|
|
name,
|
|
|
|
|
options.type,
|
|
|
|
|
options.id,
|
|
|
|
|
options.from,
|
|
|
|
|
options
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Wait until a promise is resolved or until the passed in function returns
|
|
|
|
|
* a truthy value.
|
|
|
|
|
* @method _converse.api.waitUntil
|
|
|
|
|
* @param {string|function} condition - The name of the promise to wait for,
|
|
|
|
|
* or a function which should eventually return a truthy value.
|
|
|
|
|
* @returns {Promise}
|
|
|
|
|
*/
|
|
|
|
|
waitUntil (condition) {
|
|
|
|
|
if (isFunction(condition)) {
|
|
|
|
|
return u.waitUntil(condition);
|
|
|
|
|
} else {
|
|
|
|
|
const promise = _converse.promises[condition];
|
|
|
|
|
if (promise === undefined) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return promise;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Allows you to send XML stanzas.
|
|
|
|
|
* @method _converse.api.send
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* @param {XMLElement} stanza
|
|
|
|
|
* @return {void}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* @example
|
|
|
|
|
* const msg = converse.env.$msg({
|
|
|
|
|
* 'from': 'juliet@example.com/balcony',
|
|
|
|
|
* 'to': 'romeo@example.net',
|
|
|
|
|
* 'type':'chat'
|
|
|
|
|
* });
|
|
|
|
|
* _converse.api.send(msg);
|
|
|
|
|
*/
|
|
|
|
|
send (stanza) {
|
|
|
|
|
if (!api.connection.connected()) {
|
|
|
|
|
log.warn("Not sending stanza because we're not connected!");
|
|
|
|
|
log.warn(Strophe.serialize(stanza));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-10-01 11:13:13 +02:00
|
|
|
|
if (typeof stanza === 'string') {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
stanza = u.toStanza(stanza);
|
|
|
|
|
}
|
|
|
|
|
if (stanza.tagName === 'iq') {
|
|
|
|
|
return api.sendIQ(stanza);
|
|
|
|
|
} else {
|
|
|
|
|
_converse.connection.send(stanza);
|
|
|
|
|
api.trigger('send', stanza);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* Send an IQ stanza
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* @method _converse.api.sendIQ
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* @param {XMLElement} stanza
|
|
|
|
|
* @param {Integer} [timeout=_converse.STANZA_TIMEOUT]
|
|
|
|
|
* @param {Boolean} [reject=true] - Whether an error IQ should cause the promise
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* to be rejected. If `false`, the promise will resolve instead of being rejected.
|
2020-09-25 13:17:56 +02:00
|
|
|
|
* @returns {Promise} A promise which resolves (or potentially rejected) once we
|
|
|
|
|
* receive a `result` or `error` stanza or once a timeout is reached.
|
|
|
|
|
* If the IQ stanza being sent is of type `result` or `error`, there's
|
|
|
|
|
* nothing to wait for, so an already resolved promise is returned.
|
2020-03-31 12:51:30 +02:00
|
|
|
|
*/
|
2020-09-25 13:17:56 +02:00
|
|
|
|
sendIQ (stanza, timeout=_converse.STANZA_TIMEOUT, reject=true) {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
let promise;
|
2020-09-25 13:17:56 +02:00
|
|
|
|
stanza = stanza?.nodeTree ?? stanza;
|
|
|
|
|
if (['get', 'set'].includes(stanza.getAttribute('type'))) {
|
|
|
|
|
timeout = timeout || _converse.STANZA_TIMEOUT;
|
|
|
|
|
if (reject) {
|
|
|
|
|
promise = new Promise((resolve, reject) => _converse.connection.sendIQ(stanza, resolve, reject, timeout));
|
|
|
|
|
promise.catch(e => {
|
|
|
|
|
if (e === null) {
|
|
|
|
|
throw new TimeoutError(
|
|
|
|
|
`Timeout error after ${timeout}ms for the following IQ stanza: ${Strophe.serialize(stanza)}`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
promise = new Promise(resolve => _converse.connection.sendIQ(stanza, resolve, resolve, timeout));
|
|
|
|
|
}
|
2020-03-31 12:51:30 +02:00
|
|
|
|
} else {
|
2020-09-25 13:17:56 +02:00
|
|
|
|
_converse.connection.sendIQ(stanza);
|
2020-09-25 19:29:23 +02:00
|
|
|
|
promise = Promise.resolve();
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
|
|
|
|
api.trigger('send', stanza);
|
|
|
|
|
return promise;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function replacePromise (name) {
|
|
|
|
|
const existing_promise = _converse.promises[name];
|
|
|
|
|
if (!existing_promise) {
|
|
|
|
|
throw new Error(`Tried to replace non-existing promise: ${name}`);
|
|
|
|
|
}
|
|
|
|
|
if (existing_promise.replace) {
|
|
|
|
|
const promise = u.getResolveablePromise();
|
|
|
|
|
promise.replace = existing_promise.replace;
|
|
|
|
|
_converse.promises[name] = promise;
|
|
|
|
|
} else {
|
|
|
|
|
log.debug(`Not replacing promise "${name}"`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_converse.isUniView = function () {
|
|
|
|
|
/* We distinguish between UniView and MultiView instances.
|
|
|
|
|
*
|
|
|
|
|
* UniView means that only one chat is visible, even though there might be multiple ongoing chats.
|
|
|
|
|
* MultiView means that multiple chats may be visible simultaneously.
|
|
|
|
|
*/
|
|
|
|
|
return ['mobile', 'fullscreen', 'embedded'].includes(api.settings.get("view_mode"));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function initSessionStorage () {
|
|
|
|
|
await Storage.sessionStorageInitialized;
|
|
|
|
|
_converse.storage = {
|
|
|
|
|
'session': Storage.localForage.createInstance({
|
|
|
|
|
'name': _converse.isTestEnv() ? 'converse-test-session' : 'converse-session',
|
|
|
|
|
'description': 'sessionStorage instance',
|
|
|
|
|
'driver': ['sessionStorageWrapper']
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function initPersistentStorage () {
|
2020-10-20 06:45:35 +02:00
|
|
|
|
if (api.settings.get('persistent_store') === 'sessionStorage') {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
return;
|
2020-10-30 12:51:55 +01:00
|
|
|
|
} else if (_converse.api.settings.get("persistent_store") === 'BrowserExtLocal') {
|
2020-11-05 14:26:04 +01:00
|
|
|
|
Storage.localForage.defineDriver(localDriver).then(
|
|
|
|
|
() => Storage.localForage.setDriver('webExtensionLocalStorage')
|
|
|
|
|
);
|
2020-10-30 12:51:55 +01:00
|
|
|
|
_converse.storage['persistent'] = Storage.localForage;
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
} else if (_converse.api.settings.get("persistent_store") === 'BrowserExtSync') {
|
2020-11-05 14:26:04 +01:00
|
|
|
|
Storage.localForage.defineDriver(syncDriver).then(
|
|
|
|
|
() => Storage.localForage.setDriver('webExtensionSyncStorage')
|
|
|
|
|
);
|
2020-10-30 12:51:55 +01:00
|
|
|
|
_converse.storage['persistent'] = Storage.localForage;
|
|
|
|
|
return;
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
2020-10-30 12:51:55 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
const config = {
|
|
|
|
|
'name': _converse.isTestEnv() ? 'converse-test-persistent' : 'converse-persistent',
|
|
|
|
|
'storeName': _converse.bare_jid
|
|
|
|
|
}
|
|
|
|
|
if (_converse.api.settings.get("persistent_store") === 'localStorage') {
|
|
|
|
|
config['description'] = 'localStorage instance';
|
|
|
|
|
config['driver'] = [Storage.localForage.LOCALSTORAGE];
|
|
|
|
|
} else if (_converse.api.settings.get("persistent_store") === 'IndexedDB') {
|
|
|
|
|
config['description'] = 'indexedDB instance';
|
|
|
|
|
config['driver'] = [Storage.localForage.INDEXEDDB];
|
|
|
|
|
}
|
|
|
|
|
_converse.storage['persistent'] = Storage.localForage.createInstance(config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-10-20 06:45:35 +02:00
|
|
|
|
_converse.getDefaultStore = function () {
|
|
|
|
|
if (_converse.config.get('trusted')) {
|
|
|
|
|
const is_non_persistent = api.settings.get('persistent_store') === 'sessionStorage';
|
|
|
|
|
return is_non_persistent ? 'session': 'persistent';
|
|
|
|
|
} else {
|
|
|
|
|
return 'session';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
function createStore (id, storage) {
|
2020-10-20 06:45:35 +02:00
|
|
|
|
const s = _converse.storage[storage || _converse.getDefaultStore()];
|
2020-03-31 12:51:30 +02:00
|
|
|
|
return new Storage(id, s);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.createStore = createStore;
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
|
|
|
|
|
function initPlugins () {
|
|
|
|
|
// If initialize gets called a second time (e.g. during tests), then we
|
|
|
|
|
// need to re-apply all plugins (for a new converse instance), and we
|
|
|
|
|
// therefore need to clear this array that prevents plugins from being
|
|
|
|
|
// initialized twice.
|
|
|
|
|
// If initialize is called for the first time, then this array is empty
|
|
|
|
|
// in any case.
|
|
|
|
|
_converse.pluggable.initialized_plugins = [];
|
|
|
|
|
const whitelist = CORE_PLUGINS.concat(_converse.api.settings.get("whitelisted_plugins"));
|
|
|
|
|
|
|
|
|
|
if (_converse.api.settings.get("singleton")) {
|
|
|
|
|
[
|
|
|
|
|
'converse-bookmarks',
|
|
|
|
|
'converse-controlbox',
|
|
|
|
|
'converse-headline',
|
|
|
|
|
'converse-register'
|
|
|
|
|
].forEach(name => _converse.api.settings.get("blacklisted_plugins").push(name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_converse.pluggable.initializePlugins(
|
|
|
|
|
{ '_converse': _converse },
|
|
|
|
|
whitelist,
|
|
|
|
|
_converse.api.settings.get("blacklisted_plugins")
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Triggered once all plugins have been initialized. This is a useful event if you want to
|
|
|
|
|
* register event handlers but would like your own handlers to be overridable by
|
|
|
|
|
* plugins. In that case, you need to first wait until all plugins have been
|
|
|
|
|
* initialized, so that their overrides are active. One example where this is used
|
|
|
|
|
* is in [converse-notifications.js](https://github.com/jcbrand/converse.js/blob/master/src/converse-notification.js)`.
|
|
|
|
|
*
|
|
|
|
|
* Also available as an [ES2015 Promise](http://es6-features.org/#PromiseUsage)
|
|
|
|
|
* which can be listened to with `_converse.api.waitUntil`.
|
|
|
|
|
*
|
|
|
|
|
* @event _converse#pluginsInitialized
|
|
|
|
|
* @memberOf _converse
|
|
|
|
|
* @example _converse.api.listen.on('pluginsInitialized', () => { ... });
|
|
|
|
|
*/
|
|
|
|
|
_converse.api.trigger('pluginsInitialized');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-11-18 11:43:53 +01:00
|
|
|
|
async function initClientConfig () {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/* The client config refers to configuration of the client which is
|
|
|
|
|
* independent of any particular user.
|
|
|
|
|
* What this means is that config values need to persist across
|
|
|
|
|
* user sessions.
|
|
|
|
|
*/
|
|
|
|
|
const id = 'converse.client-config';
|
2020-10-20 06:45:35 +02:00
|
|
|
|
_converse.config = new Model({ id, 'trusted': true });
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.config.browserStorage = createStore(id, "session");
|
2020-11-18 11:43:53 +01:00
|
|
|
|
await new Promise(r => _converse.config.fetch({'success': r, 'error': r}));
|
2020-03-31 12:51:30 +02:00
|
|
|
|
/**
|
|
|
|
|
* Triggered once the XMPP-client configuration has been initialized.
|
|
|
|
|
* The client configuration is independent of any particular and its values
|
|
|
|
|
* persist across user sessions.
|
|
|
|
|
*
|
|
|
|
|
* @event _converse#clientConfigInitialized
|
|
|
|
|
* @example
|
|
|
|
|
* _converse.api.listen.on('clientConfigInitialized', () => { ... });
|
|
|
|
|
*/
|
|
|
|
|
_converse.api.trigger('clientConfigInitialized');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
export async function tearDown () {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
await _converse.api.trigger('beforeTearDown', {'synchronous': true});
|
|
|
|
|
window.removeEventListener('click', _converse.onUserActivity);
|
|
|
|
|
window.removeEventListener('focus', _converse.onUserActivity);
|
|
|
|
|
window.removeEventListener('keypress', _converse.onUserActivity);
|
|
|
|
|
window.removeEventListener('mousemove', _converse.onUserActivity);
|
|
|
|
|
window.removeEventListener(_converse.unloadevent, _converse.onUserActivity);
|
|
|
|
|
window.clearInterval(_converse.everySecondTrigger);
|
|
|
|
|
_converse.api.trigger('afterTearDown');
|
|
|
|
|
return _converse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function attemptNonPreboundSession (credentials, automatic) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
const { api } = _converse;
|
|
|
|
|
if (api.settings.get("authentication") === _converse.LOGIN) {
|
2020-03-31 12:51:30 +02:00
|
|
|
|
// XXX: If EITHER ``keepalive`` or ``auto_login`` is ``true`` and
|
|
|
|
|
// ``authentication`` is set to ``login``, then Converse will try to log the user in,
|
|
|
|
|
// since we don't have a way to distinguish between wether we're
|
|
|
|
|
// restoring a previous session (``keepalive``) or whether we're
|
|
|
|
|
// automatically setting up a new session (``auto_login``).
|
|
|
|
|
// So we can't do the check (!automatic || _converse.api.settings.get("auto_login")) here.
|
|
|
|
|
if (credentials) {
|
|
|
|
|
connect(credentials);
|
|
|
|
|
} else if (_converse.api.settings.get("credentials_url")) {
|
|
|
|
|
// We give credentials_url preference, because
|
|
|
|
|
// _converse.connection.pass might be an expired token.
|
|
|
|
|
connect(await getLoginCredentials());
|
|
|
|
|
} else if (_converse.jid && (_converse.api.settings.get("password") || _converse.connection.pass)) {
|
|
|
|
|
connect();
|
|
|
|
|
} else if (!_converse.isTestEnv() && 'credentials' in navigator) {
|
|
|
|
|
connect(await getLoginCredentialsFromBrowser());
|
|
|
|
|
} else {
|
2020-04-23 13:40:02 +02:00
|
|
|
|
!_converse.isTestEnv() && log.warn("attemptNonPreboundSession: Couldn't find credentials to log in with");
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
|
|
|
|
} else if ([_converse.ANONYMOUS, _converse.EXTERNAL].includes(_converse.api.settings.get("authentication")) && (!automatic || _converse.api.settings.get("auto_login"))) {
|
|
|
|
|
connect();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function connect (credentials) {
|
|
|
|
|
if ([_converse.ANONYMOUS, _converse.EXTERNAL].includes(_converse.api.settings.get("authentication"))) {
|
|
|
|
|
if (!_converse.jid) {
|
|
|
|
|
throw new Error("Config Error: when using anonymous login " +
|
|
|
|
|
"you need to provide the server's domain via the 'jid' option. " +
|
|
|
|
|
"Either when calling converse.initialize, or when calling " +
|
|
|
|
|
"_converse.api.user.login.");
|
|
|
|
|
}
|
|
|
|
|
if (!_converse.connection.reconnecting) {
|
|
|
|
|
_converse.connection.reset();
|
|
|
|
|
}
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.connection.connect(_converse.jid.toLowerCase());
|
2020-03-31 12:51:30 +02:00
|
|
|
|
} else if (_converse.api.settings.get("authentication") === _converse.LOGIN) {
|
|
|
|
|
const password = credentials ? credentials.password : (_converse.connection?.pass || _converse.api.settings.get("password"));
|
|
|
|
|
if (!password) {
|
|
|
|
|
if (_converse.api.settings.get("auto_login")) {
|
|
|
|
|
throw new Error("autoLogin: If you use auto_login and "+
|
|
|
|
|
"authentication='login' then you also need to provide a password.");
|
|
|
|
|
}
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.connection.setDisconnectionCause(Strophe.Status.AUTHFAIL, undefined, true);
|
2020-03-31 12:51:30 +02:00
|
|
|
|
_converse.api.connection.disconnect();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!_converse.connection.reconnecting) {
|
|
|
|
|
_converse.connection.reset();
|
|
|
|
|
}
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.connection.connect(_converse.jid, password);
|
2020-03-31 12:51:30 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-10-20 06:45:35 +02:00
|
|
|
|
_converse.shouldClearCache = () => (
|
|
|
|
|
!_converse.config.get('trusted') ||
|
|
|
|
|
api.settings.get('clear_cache_on_logout') ||
|
|
|
|
|
_converse.isTestEnv()
|
|
|
|
|
);
|
2020-03-31 12:51:30 +02:00
|
|
|
|
|
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
export function clearSession () {
|
|
|
|
|
_converse.session?.destroy();
|
|
|
|
|
delete _converse.session;
|
|
|
|
|
_converse.shouldClearCache() && _converse.api.user.settings.clear();
|
2018-05-29 12:00:23 +02:00
|
|
|
|
/**
|
2020-03-02 16:29:21 +01:00
|
|
|
|
* Synchronouse event triggered once the user session has been cleared,
|
2018-05-29 12:00:23 +02:00
|
|
|
|
* for example when the user has logged out or when Converse has
|
|
|
|
|
* disconnected for some other reason.
|
|
|
|
|
* @event _converse#clearSession
|
|
|
|
|
*/
|
2020-03-02 16:29:21 +01:00
|
|
|
|
return _converse.api.trigger('clearSession', {'synchronous': true});
|
2018-05-29 12:00:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-05 10:01:55 +02:00
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.initConnection = function () {
|
|
|
|
|
const api = _converse.api;
|
2018-11-18 19:14:22 +01:00
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
if (! api.settings.get('bosh_service_url')) {
|
|
|
|
|
if (api.settings.get("authentication") === _converse.PREBIND) {
|
2018-11-18 19:14:22 +01:00
|
|
|
|
throw new Error("authentication is set to 'prebind' but we don't have a BOSH connection");
|
2018-11-20 17:31:53 +01:00
|
|
|
|
}
|
2020-06-03 17:59:41 +02:00
|
|
|
|
if (! api.settings.get("websocket_url")) {
|
2018-11-18 19:14:22 +01:00
|
|
|
|
throw new Error("initConnection: you must supply a value for either the bosh_service_url or websocket_url or both.");
|
2019-07-26 16:42:13 +02:00
|
|
|
|
}
|
2018-11-20 17:31:53 +01:00
|
|
|
|
}
|
2018-11-18 19:14:22 +01:00
|
|
|
|
|
2020-06-03 17:59:41 +02:00
|
|
|
|
const XMPPConnection = _converse.isTestEnv() ? MockConnection : Connection;
|
|
|
|
|
if (('WebSocket' in window || 'MozWebSocket' in window) && api.settings.get("websocket_url")) {
|
|
|
|
|
_converse.connection = new XMPPConnection(
|
|
|
|
|
api.settings.get("websocket_url"),
|
|
|
|
|
Object.assign(_converse.default_connection_options, api.settings.get("connection_options"))
|
2018-11-18 19:14:22 +01:00
|
|
|
|
);
|
2020-06-03 17:59:41 +02:00
|
|
|
|
} else if (api.settings.get('bosh_service_url')) {
|
|
|
|
|
_converse.connection = new XMPPConnection(
|
|
|
|
|
api.settings.get('bosh_service_url'),
|
2018-11-18 19:14:22 +01:00
|
|
|
|
Object.assign(
|
|
|
|
|
_converse.default_connection_options,
|
2020-06-03 17:59:41 +02:00
|
|
|
|
api.settings.get("connection_options"),
|
|
|
|
|
{'keepalive': api.settings.get("keepalive")}
|
2018-11-18 19:14:22 +01:00
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error("initConnection: this browser does not support "+
|
|
|
|
|
"websockets and bosh_service_url wasn't specified.");
|
|
|
|
|
}
|
2019-03-14 21:05:39 +01:00
|
|
|
|
setUpXMLLogging();
|
2019-03-22 08:15:35 +01:00
|
|
|
|
/**
|
2020-06-03 17:59:41 +02:00
|
|
|
|
* Triggered once the `Connection` constructor has been initialized, which
|
2019-03-22 08:15:35 +01:00
|
|
|
|
* will be responsible for managing the connection to the XMPP server.
|
|
|
|
|
*
|
|
|
|
|
* @event _converse#connectionInitialized
|
|
|
|
|
*/
|
2020-06-03 17:59:41 +02:00
|
|
|
|
api.trigger('connectionInitialized');
|
2018-11-18 19:14:22 +01:00
|
|
|
|
}
|
2018-11-15 22:59:55 +01:00
|
|
|
|
|
2018-05-29 12:00:23 +02:00
|
|
|
|
|
2018-11-18 19:14:22 +01:00
|
|
|
|
async function initSession (jid) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
const is_shared_session = api.settings.get('connection_options').worker;
|
|
|
|
|
|
2019-06-27 15:12:10 +02:00
|
|
|
|
const bare_jid = Strophe.getBareJidFromJid(jid).toLowerCase();
|
2019-06-27 15:09:06 +02:00
|
|
|
|
const id = `converse.session-${bare_jid}`;
|
2020-06-03 17:59:41 +02:00
|
|
|
|
if (_converse.session?.get('id') !== id) {
|
2019-09-19 16:54:55 +02:00
|
|
|
|
_converse.session = new Model({id});
|
2020-06-03 17:59:41 +02:00
|
|
|
|
_converse.session.browserStorage = createStore(id, is_shared_session ? "persistent" : "session");
|
2019-06-05 06:57:20 +02:00
|
|
|
|
await new Promise(r => _converse.session.fetch({'success': r, 'error': r}));
|
2020-06-03 17:59:41 +02:00
|
|
|
|
|
|
|
|
|
if (!is_shared_session && _converse.session.get('active')) {
|
|
|
|
|
// If the `active` flag is set, it means this tab was cloned from
|
|
|
|
|
// another (e.g. via middle-click), and its session data was copied over.
|
2019-06-27 15:12:10 +02:00
|
|
|
|
_converse.session.clear();
|
2019-10-24 14:29:15 +02:00
|
|
|
|
_converse.session.save({id});
|
2019-06-27 15:12:10 +02:00
|
|
|
|
}
|
2019-08-01 08:55:44 +02:00
|
|
|
|
saveJIDtoSession(jid);
|
2019-12-17 13:39:32 +01:00
|
|
|
|
initPersistentStorage();
|
2019-06-05 06:57:20 +02:00
|
|
|
|
/**
|
|
|
|
|
* Triggered once the user's session has been initialized. The session is a
|
|
|
|
|
* cache which stores information about the user's current session.
|
|
|
|
|
* @event _converse#userSessionInitialized
|
|
|
|
|
* @memberOf _converse
|
|
|
|
|
*/
|
|
|
|
|
_converse.api.trigger('userSessionInitialized');
|
2019-08-01 08:55:44 +02:00
|
|
|
|
} else {
|
|
|
|
|
saveJIDtoSession(jid);
|
2019-06-05 06:57:20 +02:00
|
|
|
|
}
|
2018-05-29 12:00:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-18 19:14:22 +01:00
|
|
|
|
|
2019-08-01 08:55:44 +02:00
|
|
|
|
function saveJIDtoSession (jid) {
|
2019-06-27 15:12:10 +02:00
|
|
|
|
jid = _converse.session.get('jid') || jid;
|
2020-03-30 16:29:09 +02:00
|
|
|
|
if (_converse.api.settings.get("authentication") !== _converse.ANONYMOUS && !Strophe.getResourceFromJid(jid)) {
|
2020-06-03 17:59:41 +02:00
|
|
|
|
jid = jid.toLowerCase() + Connection.generateResource();
|
2019-06-05 06:57:20 +02:00
|
|
|
|
}
|
|
|
|
|
_converse.jid = jid;
|
|
|
|
|
_converse.bare_jid = Strophe.getBareJidFromJid(jid);
|
|
|
|
|
_converse.resource = Strophe.getResourceFromJid(jid);
|
|
|
|
|
_converse.domain = Strophe.getDomainFromJid(jid);
|
|
|
|
|
_converse.session.save({
|
|
|
|
|
'jid': jid,
|
|
|
|
|
'bare_jid': _converse.bare_jid,
|
|
|
|
|
'resource': _converse.resource,
|
2019-06-27 15:12:10 +02:00
|
|
|
|
'domain': _converse.domain,
|
2020-06-03 17:59:41 +02:00
|
|
|
|
// We use the `active` flag to determine whether we should use the values from sessionStorage.
|
|
|
|
|
// When "cloning" a tab (e.g. via middle-click), the `active` flag will be set and we'll create
|
|
|
|
|
// a new empty user session, otherwise it'll be false and we can re-use the user session.
|
2019-06-27 15:12:10 +02:00
|
|
|
|
'active': true
|
2019-06-05 06:57:20 +02:00
|
|
|
|
});
|
2018-11-18 19:14:22 +01:00
|
|
|
|
// Set JID on the connection object so that when we call `connection.bind`
|
|
|
|
|
// the new resource is found by Strophe.js and sent to the XMPP server.
|
|
|
|
|
_converse.connection.jid = jid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Stores the passed in JID for the current user, potentially creating a
|
|
|
|
|
* resource if the JID is bare.
|
|
|
|
|
*
|
|
|
|
|
* Given that we can only create an XMPP connection if we know the domain of
|
|
|
|
|
* the server connect to and we only know this once we know the JID, we also
|
|
|
|
|
* call {@link _converse.initConnection } (if necessary) to make sure that the
|
|
|
|
|
* connection is set up.
|
|
|
|
|
*
|
|
|
|
|
* @method _converse#setUserJID
|
|
|
|
|
* @emits _converse#setUserJID
|
|
|
|
|
* @params { String } jid
|
|
|
|
|
*/
|
|
|
|
|
_converse.setUserJID = async function (jid) {
|
|
|
|
|
await initSession(jid);
|
|
|
|
|
/**
|
|
|
|
|
* Triggered whenever the user's JID has been updated
|
|
|
|
|
* @event _converse#setUserJID
|
|
|
|
|
*/
|
|
|
|
|
_converse.api.trigger('setUserJID');
|
|
|
|
|
return jid;
|
2018-05-29 12:00:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-11-15 22:59:55 +01:00
|
|
|
|
function setUpXMLLogging () {
|
2019-11-22 14:23:19 +01:00
|
|
|
|
const lmap = {}
|
|
|
|
|
lmap[Strophe.LogLevel.DEBUG] = 'debug';
|
|
|
|
|
lmap[Strophe.LogLevel.INFO] = 'info';
|
|
|
|
|
lmap[Strophe.LogLevel.WARN] = 'warn';
|
|
|
|
|
lmap[Strophe.LogLevel.ERROR] = 'error';
|
|
|
|
|
lmap[Strophe.LogLevel.FATAL] = 'fatal';
|
|
|
|
|
|
|
|
|
|
Strophe.log = (level, msg) => log.log(msg, lmap[level]);
|
|
|
|
|
Strophe.error = (msg) => log.error(msg);
|
|
|
|
|
|
|
|
|
|
_converse.connection.xmlInput = body => log.debug(body.outerHTML, 'color: darkgoldenrod');
|
|
|
|
|
_converse.connection.xmlOutput = body => log.debug(body.outerHTML, 'color: darkcyan');
|
2018-11-15 22:59:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-29 17:29:07 +02:00
|
|
|
|
async function getLoginCredentials () {
|
2019-06-05 06:57:20 +02:00
|
|
|
|
let credentials;
|
|
|
|
|
let wait = 0;
|
|
|
|
|
while (!credentials) {
|
|
|
|
|
try {
|
|
|
|
|
credentials = await fetchLoginCredentials(wait); // eslint-disable-line no-await-in-loop
|
|
|
|
|
} catch (e) {
|
2019-11-06 11:01:34 +01:00
|
|
|
|
log.error('Could not fetch login credentials');
|
|
|
|
|
log.error(e);
|
2019-06-05 06:57:20 +02:00
|
|
|
|
}
|
|
|
|
|
// If unsuccessful, we wait 2 seconds between subsequent attempts to
|
|
|
|
|
// fetch the credentials.
|
2020-03-31 12:51:30 +02:00
|
|
|
|
wait = 2000;
|
|
|
|
|
}
|
|
|
|
|
return credentials;
|
2019-12-05 21:02:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
async function getLoginCredentialsFromBrowser () {
|
|
|
|
|
try {
|
|
|
|
|
const creds = await navigator.credentials.get({'password': true});
|
|
|
|
|
if (creds && creds.type == 'password' && u.isValidJID(creds.id)) {
|
|
|
|
|
await _converse.setUserJID(creds.id);
|
|
|
|
|
return {'jid': creds.id, 'password': creds.password};
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
log.error(e);
|
|
|
|
|
}
|
2018-12-15 19:52:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 13:39:32 +01:00
|
|
|
|
|
2020-07-30 10:57:36 +02:00
|
|
|
|
// Make sure everything is reset in case this is a subsequent call to
|
|
|
|
|
// converse.initialize (happens during tests).
|
|
|
|
|
async function cleanup () {
|
2020-07-30 11:25:53 +02:00
|
|
|
|
await api.trigger('cleanup', {'synchronous': true});
|
2019-09-19 16:54:55 +02:00
|
|
|
|
_converse.router.history.stop();
|
2019-06-05 06:57:20 +02:00
|
|
|
|
unregisterGlobalEventHandlers();
|
2020-07-30 10:57:36 +02:00
|
|
|
|
_converse.connection?.reset();
|
2019-06-05 06:57:20 +02:00
|
|
|
|
_converse.stopListening();
|
|
|
|
|
_converse.off();
|
2020-09-03 16:05:56 +02:00
|
|
|
|
if (_converse.promises['initialized'].isResolved) {
|
|
|
|
|
api.promises.add('initialized')
|
|
|
|
|
}
|
2018-11-15 22:59:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-02 12:15:26 +02:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
function fetchLoginCredentials (wait=0) {
|
|
|
|
|
return new Promise(
|
|
|
|
|
debounce((resolve, reject) => {
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
|
xhr.open('GET', api.settings.get("credentials_url"), true);
|
|
|
|
|
xhr.setRequestHeader('Accept', 'application/json, text/javascript');
|
|
|
|
|
xhr.onload = () => {
|
|
|
|
|
if (xhr.status >= 200 && xhr.status < 400) {
|
|
|
|
|
const data = JSON.parse(xhr.responseText);
|
|
|
|
|
_converse.setUserJID(data.jid).then(() => {
|
|
|
|
|
resolve({
|
|
|
|
|
jid: data.jid,
|
|
|
|
|
password: data.password
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
reject(new Error(`${xhr.status}: ${xhr.responseText}`));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
xhr.onerror = reject;
|
|
|
|
|
xhr.send();
|
|
|
|
|
}, wait)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_converse.saveWindowState = function (ev) {
|
|
|
|
|
// XXX: eventually we should be able to just use
|
|
|
|
|
// document.visibilityState (when we drop support for older
|
|
|
|
|
// browsers).
|
|
|
|
|
let state;
|
|
|
|
|
const event_map = {
|
|
|
|
|
'focus': "visible",
|
|
|
|
|
'focusin': "visible",
|
|
|
|
|
'pageshow': "visible",
|
|
|
|
|
'blur': "hidden",
|
|
|
|
|
'focusout': "hidden",
|
|
|
|
|
'pagehide': "hidden"
|
|
|
|
|
};
|
|
|
|
|
ev = ev || document.createEvent('Events');
|
|
|
|
|
if (ev.type in event_map) {
|
|
|
|
|
state = event_map[ev.type];
|
|
|
|
|
} else {
|
|
|
|
|
state = document.hidden ? "hidden" : "visible";
|
|
|
|
|
}
|
|
|
|
|
_converse.windowState = state;
|
|
|
|
|
/**
|
|
|
|
|
* Triggered when window state has changed.
|
|
|
|
|
* Used to determine when a user left the page and when came back.
|
|
|
|
|
* @event _converse#windowStateChanged
|
|
|
|
|
* @type { object }
|
|
|
|
|
* @property{ string } state - Either "hidden" or "visible"
|
|
|
|
|
* @example _converse.api.listen.on('windowStateChanged', obj => { ... });
|
|
|
|
|
*/
|
|
|
|
|
api.trigger('windowStateChanged', {state});
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-14 15:08:39 +01:00
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
function registerGlobalEventHandlers () {
|
|
|
|
|
document.addEventListener("visibilitychange", _converse.saveWindowState);
|
|
|
|
|
_converse.saveWindowState({'type': document.hidden ? "blur" : "focus"}); // Set initial state
|
2018-09-02 10:11:37 +02:00
|
|
|
|
/**
|
2020-03-31 12:51:30 +02:00
|
|
|
|
* Called once Converse has registered its global event handlers
|
|
|
|
|
* (for events such as window resize or unload).
|
|
|
|
|
* Plugins can listen to this event as cue to register their own
|
|
|
|
|
* global event handlers.
|
|
|
|
|
* @event _converse#registeredGlobalEventHandlers
|
|
|
|
|
* @example _converse.api.listen.on('registeredGlobalEventHandlers', () => { ... });
|
2018-10-23 03:41:38 +02:00
|
|
|
|
*/
|
2020-03-31 12:51:30 +02:00
|
|
|
|
api.trigger('registeredGlobalEventHandlers');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function unregisterGlobalEventHandlers () {
|
|
|
|
|
document.removeEventListener("visibilitychange", _converse.saveWindowState);
|
|
|
|
|
api.trigger('unregisteredGlobalEventHandlers');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_converse.ConnectionFeedback = Model.extend({
|
|
|
|
|
defaults: {
|
|
|
|
|
'connection_status': Strophe.Status.DISCONNECTED,
|
|
|
|
|
'message': ''
|
|
|
|
|
},
|
|
|
|
|
initialize () {
|
|
|
|
|
this.on('change', () => api.trigger('connfeedback', _converse.connfeedback));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2020-03-31 12:28:11 +02:00
|
|
|
|
function setUnloadEvent () {
|
|
|
|
|
if ('onpagehide' in window) {
|
|
|
|
|
// Pagehide gets thrown in more cases than unload. Specifically it
|
|
|
|
|
// gets thrown when the page is cached and not just
|
|
|
|
|
// closed/destroyed. It's the only viable event on mobile Safari.
|
|
|
|
|
// https://www.webkit.org/blog/516/webkit-page-cache-ii-the-unload-event/
|
|
|
|
|
_converse.unloadevent = 'pagehide';
|
|
|
|
|
} else if ('onbeforeunload' in window) {
|
|
|
|
|
_converse.unloadevent = 'beforeunload';
|
|
|
|
|
} else if ('onunload' in window) {
|
|
|
|
|
_converse.unloadevent = 'unload';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-30 13:27:01 +02:00
|
|
|
|
export const converse = window.converse || {};
|
2020-03-31 12:28:11 +02:00
|
|
|
|
|
2019-10-08 16:47:30 +02:00
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* ### The Public API
|
|
|
|
|
*
|
|
|
|
|
* This namespace contains public API methods which are are
|
|
|
|
|
* accessible on the global `converse` object.
|
|
|
|
|
* They are public, because any JavaScript in the
|
|
|
|
|
* page can call them. Public methods therefore don’t expose any sensitive
|
|
|
|
|
* or closured data. To do that, you’ll need to create a plugin, which has
|
|
|
|
|
* access to the private API method.
|
|
|
|
|
*
|
2019-07-20 21:55:42 +02:00
|
|
|
|
* @global
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* @namespace converse
|
|
|
|
|
*/
|
2020-04-23 13:22:31 +02:00
|
|
|
|
Object.assign(converse, {
|
2020-03-18 19:32:03 +01:00
|
|
|
|
|
|
|
|
|
CHAT_STATES: ['active', 'composing', 'gone', 'inactive', 'paused'],
|
|
|
|
|
|
2019-09-11 15:23:58 +02:00
|
|
|
|
keycodes: {
|
|
|
|
|
TAB: 9,
|
|
|
|
|
ENTER: 13,
|
|
|
|
|
SHIFT: 16,
|
|
|
|
|
CTRL: 17,
|
|
|
|
|
ALT: 18,
|
|
|
|
|
ESCAPE: 27,
|
|
|
|
|
LEFT_ARROW: 37,
|
|
|
|
|
UP_ARROW: 38,
|
|
|
|
|
RIGHT_ARROW: 39,
|
|
|
|
|
DOWN_ARROW: 40,
|
|
|
|
|
FORWARD_SLASH: 47,
|
|
|
|
|
AT: 50,
|
|
|
|
|
META: 91,
|
|
|
|
|
META_RIGHT: 93
|
|
|
|
|
},
|
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Public API method which initializes Converse.
|
|
|
|
|
* This method must always be called when using Converse.
|
2020-03-31 12:28:11 +02:00
|
|
|
|
* @async
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* @memberOf converse
|
|
|
|
|
* @method initialize
|
|
|
|
|
* @param {object} config A map of [configuration-settings](https://conversejs.org/docs/html/configuration.html#configuration-settings).
|
|
|
|
|
* @example
|
|
|
|
|
* converse.initialize({
|
|
|
|
|
* auto_list_rooms: false,
|
|
|
|
|
* auto_subscribe: false,
|
|
|
|
|
* bosh_service_url: 'https://bind.example.com',
|
|
|
|
|
* hide_muc_server: false,
|
2019-08-07 10:28:49 +02:00
|
|
|
|
* i18n: 'en',
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* play_sounds: true,
|
|
|
|
|
* show_controlbox_by_default: true,
|
|
|
|
|
* debug: false,
|
|
|
|
|
* roster_groups: true
|
|
|
|
|
* });
|
|
|
|
|
*/
|
2020-03-31 12:28:11 +02:00
|
|
|
|
async initialize (settings) {
|
2020-07-30 10:57:36 +02:00
|
|
|
|
await cleanup();
|
2020-09-03 16:05:56 +02:00
|
|
|
|
|
2020-03-31 12:28:11 +02:00
|
|
|
|
setUnloadEvent();
|
|
|
|
|
initSettings(settings);
|
|
|
|
|
_converse.strict_plugin_dependencies = settings.strict_plugin_dependencies; // Needed by pluggable.js
|
|
|
|
|
log.setLogLevel(api.settings.get("loglevel"));
|
|
|
|
|
|
|
|
|
|
if (api.settings.get("authentication") === _converse.ANONYMOUS) {
|
|
|
|
|
if (api.settings.get("auto_login") && !api.settings.get('jid')) {
|
|
|
|
|
throw new Error("Config Error: you need to provide the server's " +
|
|
|
|
|
"domain via the 'jid' option when using anonymous " +
|
|
|
|
|
"authentication with auto_login.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_converse.router.route(
|
|
|
|
|
/^converse\?loglevel=(debug|info|warn|error|fatal)$/, 'loglevel',
|
|
|
|
|
l => log.setLogLevel(l)
|
|
|
|
|
);
|
|
|
|
|
_converse.connfeedback = new _converse.ConnectionFeedback();
|
|
|
|
|
|
|
|
|
|
/* When reloading the page:
|
|
|
|
|
* For new sessions, we need to send out a presence stanza to notify
|
|
|
|
|
* the server/network that we're online.
|
|
|
|
|
* When re-attaching to an existing session we don't need to again send out a presence stanza,
|
|
|
|
|
* because it's as if "we never left" (see onConnectStatusChanged).
|
|
|
|
|
* https://github.com/conversejs/converse.js/issues/521
|
|
|
|
|
*/
|
|
|
|
|
_converse.send_initial_presence = true;
|
|
|
|
|
|
2020-03-31 12:51:30 +02:00
|
|
|
|
await initSessionStorage();
|
2020-11-18 11:43:53 +01:00
|
|
|
|
await initClientConfig();
|
2020-09-28 12:55:06 +02:00
|
|
|
|
await i18n.initialize();
|
2020-03-31 12:51:30 +02:00
|
|
|
|
initPlugins();
|
|
|
|
|
registerGlobalEventHandlers();
|
|
|
|
|
|
|
|
|
|
!History.started && _converse.router.history.start();
|
|
|
|
|
|
|
|
|
|
if (api.settings.get("idle_presence_timeout") > 0) {
|
|
|
|
|
api.listen.on('addClientFeatures', () => api.disco.own.features.add(Strophe.NS.IDLE));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const plugins = _converse.pluggable.plugins
|
|
|
|
|
if (api.settings.get("auto_login") || api.settings.get("keepalive") && invoke(plugins['converse-bosh'], 'enabled')) {
|
|
|
|
|
await api.user.login(null, null, true);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-26 16:07:59 +02:00
|
|
|
|
/**
|
|
|
|
|
* Triggered once converse.initialize has finished.
|
|
|
|
|
* @event _converse#initialized
|
|
|
|
|
*/
|
|
|
|
|
api.trigger('initialized');
|
|
|
|
|
|
2020-03-31 12:28:11 +02:00
|
|
|
|
if (_converse.isTestEnv()) {
|
|
|
|
|
return _converse;
|
|
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
|
},
|
2020-03-31 12:28:11 +02:00
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
|
/**
|
|
|
|
|
* Exposes methods for adding and removing plugins. You'll need to write a plugin
|
|
|
|
|
* if you want to have access to the private API methods defined further down below.
|
|
|
|
|
*
|
|
|
|
|
* For more information on plugins, read the documentation on [writing a plugin](/docs/html/plugin_development.html).
|
|
|
|
|
* @namespace plugins
|
|
|
|
|
* @memberOf converse
|
|
|
|
|
*/
|
2019-06-05 06:57:20 +02:00
|
|
|
|
plugins: {
|
2019-08-16 15:44:58 +02:00
|
|
|
|
/**
|
|
|
|
|
* Registers a new plugin.
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* @method converse.plugins.add
|
|
|
|
|
* @param {string} name The name of the plugin
|
|
|
|
|
* @param {object} plugin The plugin object
|
2018-09-02 10:11:37 +02:00
|
|
|
|
* @example
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* const plugin = {
|
|
|
|
|
* initialize: function () {
|
|
|
|
|
* // Gets called as soon as the plugin has been loaded.
|
2018-09-02 10:11:37 +02:00
|
|
|
|
*
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* // Inside this method, you have access to the private
|
|
|
|
|
* // API via `_covnerse.api`.
|
2018-09-02 10:11:37 +02:00
|
|
|
|
*
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* // The private _converse object contains the core logic
|
|
|
|
|
* // and data-structures of Converse.
|
|
|
|
|
* }
|
|
|
|
|
* }
|
|
|
|
|
* converse.plugins.add('myplugin', plugin);
|
2018-09-02 10:11:37 +02:00
|
|
|
|
*/
|
2019-06-05 06:57:20 +02:00
|
|
|
|
add (name, plugin) {
|
2018-10-23 03:41:38 +02:00
|
|
|
|
plugin.__name__ = name;
|
2019-07-29 10:19:05 +02:00
|
|
|
|
if (_converse.pluggable.plugins[name] !== undefined) {
|
2018-10-23 03:41:38 +02:00
|
|
|
|
throw new TypeError(
|
2019-06-05 06:57:20 +02:00
|
|
|
|
`Error: plugin with name "${name}" has already been ` + 'registered!'
|
|
|
|
|
);
|
2018-10-23 03:41:38 +02:00
|
|
|
|
} else {
|
|
|
|
|
_converse.pluggable.plugins[name] = plugin;
|
|
|
|
|
}
|
2017-02-14 15:08:39 +01:00
|
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* Utility methods and globals from bundled 3rd party libraries.
|
2020-09-10 14:08:43 +02:00
|
|
|
|
* @typedef ConverseEnv
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* @property {function} converse.env.$build - Creates a Strophe.Builder, for creating stanza objects.
|
|
|
|
|
* @property {function} converse.env.$iq - Creates a Strophe.Builder with an <iq/> element as the root.
|
|
|
|
|
* @property {function} converse.env.$msg - Creates a Strophe.Builder with an <message/> element as the root.
|
|
|
|
|
* @property {function} converse.env.$pres - Creates a Strophe.Builder with an <presence/> element as the root.
|
|
|
|
|
* @property {function} converse.env.Promise - The Promise implementation used by Converse.
|
|
|
|
|
* @property {function} converse.env.Strophe - The [Strophe](http://strophe.im/strophejs) XMPP library used by Converse.
|
|
|
|
|
* @property {function} converse.env.f - And instance of Lodash with its methods wrapped to produce immutable auto-curried iteratee-first data-last methods.
|
|
|
|
|
* @property {function} converse.env.sizzle - [Sizzle](https://sizzlejs.com) CSS selector engine.
|
2020-09-10 14:08:43 +02:00
|
|
|
|
* @property {function} converse.env.sprintf
|
|
|
|
|
* @property {object} converse.env._ - The instance of [lodash-es](http://lodash.com) used by Converse.
|
|
|
|
|
* @property {object} converse.env.dayjs - [DayJS](https://github.com/iamkun/dayjs) date manipulation library.
|
2018-10-23 03:41:38 +02:00
|
|
|
|
* @property {object} converse.env.utils - Module containing common utility methods used by Converse.
|
2020-09-10 14:08:43 +02:00
|
|
|
|
* @memberOf converse
|
2018-10-23 03:41:38 +02:00
|
|
|
|
*/
|
2020-09-10 14:08:43 +02:00
|
|
|
|
'env': {
|
|
|
|
|
$build,
|
|
|
|
|
$iq,
|
|
|
|
|
$msg,
|
|
|
|
|
$pres,
|
|
|
|
|
'utils': u,
|
|
|
|
|
Collection,
|
|
|
|
|
CustomElement,
|
|
|
|
|
Model,
|
|
|
|
|
Promise,
|
|
|
|
|
Strophe,
|
|
|
|
|
dayjs,
|
|
|
|
|
html,
|
|
|
|
|
log,
|
|
|
|
|
sizzle,
|
|
|
|
|
sprintf,
|
|
|
|
|
stanza_utils,
|
|
|
|
|
u,
|
|
|
|
|
}
|
2019-10-06 12:48:05 +02:00
|
|
|
|
});
|
2019-03-22 08:15:35 +01:00
|
|
|
|
|
|
|
|
|
/**
|
2019-03-29 15:47:23 +01:00
|
|
|
|
* Once Converse.js has loaded, it'll dispatch a custom event with the name `converse-loaded`.
|
|
|
|
|
* You can listen for this event in order to be informed as soon as converse.js has been
|
|
|
|
|
* loaded and parsed, which would mean it's safe to call `converse.initialize`.
|
2019-03-22 08:15:35 +01:00
|
|
|
|
* @event converse-loaded
|
2019-03-29 15:47:23 +01:00
|
|
|
|
* @example window.addEventListener('converse-loaded', () => converse.initialize());
|
2019-03-22 08:15:35 +01:00
|
|
|
|
*/
|
2020-10-26 13:09:15 +01:00
|
|
|
|
const ev = new CustomEvent('converse-loaded', {'detail': { converse }});
|
2020-04-30 13:27:01 +02:00
|
|
|
|
window.dispatchEvent(ev);
|