forked from protz/thunderbird-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.js
405 lines (373 loc) · 13.7 KB
/
misc.js
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
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mail utility functions for GMail Conversation View
*
* The Initial Developer of the Original Code is
* Jonathan Protzenko
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/**
* @fileoverview This file provides various utilities: some helpers to deal with
* identity management, some helpers for JS programming, some helpers for
* low-level XPCOM stuff...
* @author Jonathan Protzenko
*/
var EXPORTED_SYMBOLS = [
// Identity management helpers
"gIdentities", "fillIdentities", "getIdentities", "getDefaultIdentity", "getIdentityForEmail",
// JS programming helpers
"range", "MixIn", "combine", "entries",
// XPCOM helpers
"NS_FAILED", "NS_SUCCEEDED",
// Various formatting helpers
"dateAsInMessageList", "escapeHtml", "sanitize", "parseMimeLine",
// Useful for web content
"encodeUrlParameters", "decodeUrlParameters",
// Character set helpers
"systemCharset",
// Platform-specific idioms
"isOSX", "isWindows", "isAccel",
// Compatible with TB60
"generateQI",
];
const {fixIterator} = ChromeUtils.import("resource:///modules/iteratorUtils.jsm", null);
const {XPCOMUtils} = ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm", null);
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm", null);
const {AppConstants} = ChromeUtils.import("resource://gre/modules/AppConstants.jsm", null);
const {MailServices} = ChromeUtils.import("resource:///modules/mailServices.js", null);
if (!Services.intl) {
// That one doesn't belong to MailServices.
XPCOMUtils.defineLazyServiceGetter(MailServices, "i18nDateFormatter",
"@mozilla.org/intl/scriptabledateformat;1",
"nsIScriptableDateFormat");
}
Cu.importGlobalProperties(["URL"]);
const {logRoot, setupLogging} = ChromeUtils.import(new URL("../log.js", this.__URI__), null);
let Log = setupLogging(logRoot + ".Stdlib");
let isOSX = AppConstants.platform === "macosx";
let isWindows = AppConstants.platform === "win";
function isAccel(event) {
return isOSX && event.metaKey || event.ctrlKey;
}
/**
* Low-level XPCOM-style macro. You might need this for the composition and
* sending listeners which will pass you some status codes.
* @param {Int} v The status code
* @return {Bool}
*/
function NS_FAILED(v) {
return (v & 0x80000000);
}
/**
* Low-level XPCOM-style macro. You might need this for the composition and
* sending listeners which will pass you some status codes.
* @param {Int} v The status code
* @return {Bool}
*/
function NS_SUCCEEDED(v) {
return !NS_FAILED(v);
}
/**
* Python-style range function to use in list comprehensions.
* @param {Number} begin
* @param {Number} end
* @return {Generator} An iterator that yields from begin to end - 1.
*/
function* range(begin, end) {
for (let i = begin; i < end; ++i) {
yield i;
}
}
/**
* Helper function to simplify iteration over key/value store objects.
* From https://esdiscuss.org/topic/es6-iteration-over-object-values
* @param {Object} anObject
*/
function* entries(anObject) {
for (let key of Object.keys(anObject)) {
yield [key, anObject[key]];
}
}
/**
* MixIn-style helper. Adds aMixIn properties, getters and setters to
* aConstructor.
* @param {Object} aConstructor
* @param {Object} aMixIn
*/
function MixIn(aConstructor, aMixIn) {
let proto = aConstructor.prototype;
for (let [name, func] of entries(aMixIn)) {
if (name.substring(0, 4) == "get_")
proto.__defineGetter__(name.substring(4), func);
else
proto[name] = func;
}
}
/**
* A global pointer to all the identities known for the user. Feel free to call
* fillIdentities again if you feel that the user has updated them!
* The keys are email addresses, the values are <tt>nsIMsgIdentity</tt> objects.
*
* @const
*/
let gIdentities = {};
/**
* This function you should call to populate the gIdentities global object. The
* recommended time to call this is after the mail-startup-done event, although
* doing this at overlay load-time seems to be fine as well.
* There is a "default" key, that we guarantee to be non-null, by picking the
* first account's first valid identity if the default account doesn't have any
* valid identity associated.
* @param aSkipNntp (optional) Should we avoid including nntp identities in the
* list?
* @deprecated Use getIdenties() instead
*/
function fillIdentities(aSkipNntp) {
Log.warn("fillIdentities is deprecated! Use getIdentities instead!");
Log.debug("Filling identities with skipnntp = ", aSkipNntp);
for (let currentIdentity of getIdentities(aSkipNntp)) {
gIdentities[currentIdentity.identity.email] = currentIdentity.identity;
if (currentIdentity.isDefault) {
gIdentities.default = currentIdentity.identity;
}
}
if (!("default" in gIdentities)) {
gIdentities.default = getIdentities()[0].identity;
}
}
/**
* Returns the default identity in the form { boolean isDefault; nsIMsgIdentity identity }
*/
function getDefaultIdentity() {
return getIdentities().find(x => x.isDefault);
}
/**
* Returns a list of all identities in the form [{ boolean isDefault; nsIMsgIdentity identity }].
* It is assured that there is exactly one default identity.
* If only the default identity is needed, getDefaultIdentity() can be used.
* @param aSkipNntpIdentities (default: true) Should we avoid including nntp identities in the list?
*/
function getIdentities(aSkipNntpIdentities = true) {
let identities = [];
for (let account of fixIterator(MailServices.accounts.accounts, Ci.nsIMsgAccount)) {
let server = account.incomingServer;
if (aSkipNntpIdentities && (!server || server.type != "pop3" && server.type != "imap")) {
continue;
}
for (let currentIdentity of fixIterator(account.identities, Ci.nsIMsgIdentity)) {
// We're only interested in identities that have a real email.
if (currentIdentity.email) {
identities.push({ isDefault: (currentIdentity == MailServices.accounts.defaultAccount.defaultIdentity), identity: currentIdentity });
}
}
}
if (identities.length == 0) {
Log.warn("Didn't find any identities!");
} else if (!identities.some(x => x.isDefault)) {
Log.warn("Didn't find any default key - mark the first identity as default!");
identities[0].isDefault = true;
}
return identities;
}
/*
* Searches a given email address in all identities and returns the corresponding identity.
* @param {String} anEmailAddress Email address to be searched in the identities
* @returns {{Boolean} isDefault, {{nsIMsgIdentity} identity} if found, otherwise undefined
*/
function getIdentityForEmail(anEmailAddress) {
return getIdentities(false).find(ident => ident.identity.email.toLowerCase() == anEmailAddress.toLowerCase());
}
/**
* A stupid formatting function that uses the i18nDateFormatter XPCOM component
* to format a date just like in the message list
* @param {Date} aDate a javascript Date object
* @return {String} a string containing the formatted date
*/
function dateAsInMessageList(aDate) {
let now = new Date();
// Is it today?
let isToday =
now.getFullYear() == aDate.getFullYear() &&
now.getMonth() == aDate.getMonth() &&
now.getDate() == aDate.getDate();
// Supports Thunderbird 52 & older.
if (!Services.intl) {
let format = isToday
? Ci.nsIScriptableDateFormat.dateFormatNone
: Ci.nsIScriptableDateFormat.dateFormatShort;
// That is an ugly XPCOM call!
return MailServices.i18nDateFormatter.FormatDateTime(
"", format, Ci.nsIScriptableDateFormat.timeFormatNoSeconds,
aDate.getFullYear(), aDate.getMonth() + 1, aDate.getDate(),
aDate.getHours(), aDate.getMinutes(), aDate.getSeconds());
}
let format = isToday
? {timeStyle: "short"}
: {dateStyle: "short", timeStyle: "short"};
let dateTimeFormatter;
if ("createDateTimeFormat" in Services.intl) {
// Thunderbird 58 & earlier.
dateTimeFormatter = Services.intl.createDateTimeFormat(undefined, format);
} else {
dateTimeFormatter = new Services.intl.DateTimeFormat(undefined, format);
}
return dateTimeFormatter.format(aDate);
}
// eslint-disable-next-line no-control-regex
const RE_SANITIZE = /[\u0000-\u0008\u000b-\u000c\u000e-\u001f]/g;
/**
* Helper function to remove non-printable characters from a string -- injecting
* these in an XML or XHTML document would cause an error.
* @param {String} s input text
* @param {String} The sanitized string.
*/
function sanitize(s) {
return (s || "").replace(RE_SANITIZE, "");
}
/**
* Helper function to escape some XML chars, so they display properly in
* innerHTML.
* @param {String} s input text
* @return {String} The string with <, >, and & replaced by the corresponding entities.
*/
function escapeHtml(s) {
s += "";
// stolen from selectionsummaries.js (thanks davida!)
return sanitize(s.replace(/[<>&]/g, function(s) {
switch (s) {
case "<": return "<";
case ">": return ">";
case "&": return "&";
default: throw Error("Unexpected match");
}
}
));
}
/**
* Wraps the low-level header parser stuff.
* @param {String} aMimeLine a line that looks like "John <[email protected]>, Jane <[email protected]>"
* @param {Boolean} aDontFix (optional) Default to false. Shall we return an
* empty array in case aMimeLine is empty?
* @return {Array} a list of { email, name } objects
*/
function parseMimeLine(aMimeLine, aDontFix) {
if (aMimeLine == null) {
Log.debug("Empty aMimeLine?!!");
return [];
}
let emails = {};
let fullNames = {};
let names = {};
let numAddresses = MailServices.headerParser.parseHeadersWithArray(aMimeLine,
emails,
names,
fullNames);
if (numAddresses)
return [ ...range(0, numAddresses) ].map(i => {
return { email: emails.value[i], name: names.value[i], fullName: fullNames.value[i] };
});
else if (aDontFix)
return [];
return [{ email: "", name: "-", fullName: "-" }];
}
/**
* Takes an object whose keys are the parameter names, whose values are strings
* that are to be encoded in the url.
* @param aObj
* @return param1=val1¶m2=val2 etc.
*/
function encodeUrlParameters(aObj) {
let kv = [];
for (let [k, v] of entries(aObj)) {
kv.push(k + "=" + encodeURIComponent(v));
}
return kv.join("&");
}
/**
* Takes the <b>entire</b> query string and returns an object whose keys are the
* parameter names and values are corresponding values.
* @param aStr The entire query string
* @return An object that holds the decoded data
*/
function decodeUrlParameters(aStr) {
let params = {};
let i = aStr.indexOf("?");
if (i >= 0) {
let query = aStr.substring(i + 1, aStr.length);
let keyVals = query.split("&");
for (let keyVal of keyVals) {
let [key, val] = keyVal.split("=");
val = decodeURIComponent(val);
params[key] = val;
}
}
return params;
}
/**
* Returns a system character set string, which is system code page on Windows,
* LANG environment variable's encoding on Unix-like OS, otherwise UTF-8.
* @return {String} a character set string
*/
function systemCharset() {
let charset = "UTF-8";
if ("@mozilla.org/windows-registry-key;1" in Cc) {
let registry = Cc["@mozilla.org/windows-registry-key;1"]
.createInstance(Ci.nsIWindowsRegKey);
registry.open(registry.ROOT_KEY_LOCAL_MACHINE,
"SYSTEM\\CurrentControlSet\\Control\\Nls\\CodePage",
registry.ACCESS_READ);
let codePage = registry.readStringValue("ACP");
if (codePage) {
charset = "CP" + codePage;
}
registry.close();
} else {
let env = Cc["@mozilla.org/process/environment;1"]
.getService(Ci.nsIEnvironment);
let lang = env.get("LANG").split(".");
if (lang.length > 1) {
charset = lang[1];
}
}
return charset;
}
function combine(a1, a2) {
if (a1.length != a2.length)
throw new Error("combine: the given arrays have different lengths");
return [ ...range(0, a1.length) ].map(i => [a1[i], a2[i]]);
}
function generateQI(interfaces) {
try {
ChromeUtils.generateQI(interfaces);
} catch (e) {
// compatible with TB60
XPCOMUtils.generateQI(interfaces);
}
}