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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs";
import { l10nHelper } from "resource:///modules/imXPCOMUtils.sys.mjs";
import { GenericProtocolPrototype } from "resource:///modules/jsProtoHelper.sys.mjs";
const lazy = {};
XPCOMUtils.defineLazyGetter(lazy, "_", () =>
l10nHelper("chrome://chat/locale/xmpp.properties")
);
ChromeUtils.defineESModuleGetters(lazy, {
XMPPAccountPrototype: "resource:///modules/xmpp-base.sys.mjs",
});
XPCOMUtils.defineLazyGetter(lazy, "XMPPAccount", () => {
function XMPPAccount(aProtoInstance, aImAccount) {
this._init(aProtoInstance, aImAccount);
}
XMPPAccount.prototype = lazy.XMPPAccountPrototype;
return XMPPAccount;
});
export function XMPPProtocol() {
this.commands = ChromeUtils.importESModule(
"resource:///modules/xmpp-commands.sys.mjs"
).commands;
this.registerCommands();
}
XMPPProtocol.prototype = {
__proto__: GenericProtocolPrototype,
get normalizedName() {
return "jabber";
},
get name() {
return "XMPP";
},
get iconBaseURI() {
return "chrome://prpl-jabber/skin/";
},
getAccount(aImAccount) {
return new lazy.XMPPAccount(this, aImAccount);
},
usernameSplits: [
{
get label() {
return lazy._("options.domain");
},
separator: "@",
defaultValue: "jabber.org",
},
],
options: {
resource: {
get label() {
return lazy._("options.resource");
},
default: "",
},
priority: {
get label() {
return lazy._("options.priority");
},
default: 0,
},
connection_security: {
get label() {
return lazy._("options.connectionSecurity");
},
listValues: {
get require_tls() {
return lazy._("options.connectionSecurity.requireEncryption");
},
get opportunistic_tls() {
return lazy._("options.connectionSecurity.opportunisticTLS");
},
get allow_unencrypted_plain_auth() {
return lazy._("options.connectionSecurity.allowUnencryptedAuth");
},
// "old_ssl" and "none" are also supported, but not exposed in the UI.
// Any unknown value will fallback to the opportunistic_tls behavior.
},
default: "require_tls",
},
server: {
get label() {
return lazy._("options.connectServer");
},
default: "",
},
port: {
get label() {
return lazy._("options.connectPort");
},
default: 5222,
},
},
get chatHasTopic() {
return true;
},
};
|