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
|
/*
* This file is part of TbSync.
*
* 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/.
*/
"use strict";
var EXPORTED_SYMBOLS = ["TbSync"];
var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
var { FileUtils } = ChromeUtils.import("resource://gre/modules/FileUtils.jsm");
var { AddonManager } = ChromeUtils.import("resource://gre/modules/AddonManager.jsm");
var { NetUtil } = ChromeUtils.import("resource://gre/modules/NetUtil.jsm");
var { MailServices } = ChromeUtils.import("resource:///modules/MailServices.jsm");
var { OverlayManager } = ChromeUtils.import("chrome://tbsync/content/OverlayManager.jsm");
var TbSync = {
enabled: false,
shutdown: false,
window: null,
addon: null,
version: 0,
debugMode: false,
apiVersion: "2.5",
prefs: Services.prefs.getBranch("extensions.tbsync."),
decoder: new TextDecoder(),
encoder: new TextEncoder(),
modules : [],
extension : null,
// global load
load: async function (window, addon, extension) {
//public module and IO module needs to be loaded beforehand
Services.scriptloader.loadSubScript("chrome://tbsync/content/modules/public.js", this, "UTF-8");
Services.scriptloader.loadSubScript("chrome://tbsync/content/modules/io.js", this, "UTF-8");
//clear debug log on start
this.io.initFile("debug.log");
this.window = window;
this.addon = addon;
this.addon.contributorsURL = "https://github.com/jobisoft/TbSync/blob/master/CONTRIBUTORS.md";
this.extension = extension;
this.dump("TbSync init","Start (" + this.addon.version.toString() + ")");
//print information about Thunderbird version and OS
this.dump(Services.appinfo.name, Services.appinfo.version + " on " + Services.appinfo.OS);
// register modules to be used by TbSync
this.modules.push({name: "db", state: 0});
this.modules.push({name: "addressbook", state: 0});
this.modules.push({name: "lightning", state: 0});
this.modules.push({name: "eventlog", state: 0});
this.modules.push({name: "core", state: 0});
this.modules.push({name: "passwordManager", state: 0});
this.modules.push({name: "network", state: 0});
this.modules.push({name: "tools", state: 0});
this.modules.push({name: "manager", state: 0});
this.modules.push({name: "providers", state: 0});
this.modules.push({name: "messenger", state: 0});
//load modules
for (let module of this.modules) {
try {
Services.scriptloader.loadSubScript("chrome://tbsync/content/modules/" + module.name + ".js", this, "UTF-8");
module.state = 1;
this.dump("Loading module <" + module.name + ">", "OK");
} catch (e) {
this.dump("Loading module <" + module.name + ">", "FAILED!");
Components.utils.reportError(e);
}
}
//call init function of loaded modules
for (let module of this.modules) {
if (module.state == 1) {
try {
this.dump("Initializing module", "<" + module.name + ">");
await this[module.name].load();
module.state = 2;
} catch (e) {
this.dump("Initialization of module <" + module.name + "> FAILED", e.message + "\n" + e.stack);
Components.utils.reportError(e);
}
}
}
//was debug mode enabled during startup?
this.debugMode = (this.prefs.getIntPref("log.userdatalevel") > 0);
//enable TbSync
this.enabled = true;
//notify about finished init of TbSync
Services.obs.notifyObservers(null, "tbsync.observer.manager.updateSyncstate", null);
Services.obs.notifyObservers(null, 'tbsync.observer.initialized', null);
//activate sync timer
this.syncTimer.start();
this.dump("TbSync init","Done");
},
// global unload
unload: async function() {
//cancel sync timer
this.syncTimer.cancel();
//unload modules in reverse order
this.modules.reverse();
for (let module of this.modules) {
if (module.state == 2) {
try {
await this[module.name].unload();
this.dump("Unloading module <" + module.name + ">", "OK");
} catch (e) {
this.dump("Unloading module <" + module.name + ">", "FAILED!");
Components.utils.reportError(e);
}
}
}
},
// timer for periodic sync
syncTimer: {
timer: Components.classes["@mozilla.org/timer;1"].createInstance(Components.interfaces.nsITimer),
start: function () {
this.timer.cancel();
this.timer.initWithCallback(this.event, 60000, 3); //run timer every 60s
},
cancel: function () {
this.timer.cancel();
},
event: {
notify: function (timer) {
if (TbSync.enabled) {
//get all accounts and check, which one needs sync
let accounts = TbSync.db.getAccounts();
for (let i=0; i<accounts.IDs.length; i++) {
let now = Date.now();
let syncInterval = accounts.data[accounts.IDs[i]].autosync * 60 * 1000;
let lastsynctime = accounts.data[accounts.IDs[i]].lastsynctime;
let noAutosyncUntil = accounts.data[accounts.IDs[i]].noAutosyncUntil || 0;
if (TbSync.core.isEnabled(accounts.IDs[i]) && (syncInterval > 0) && (now > (lastsynctime + syncInterval)) && (now > noAutosyncUntil)) {
TbSync.core.syncAccount(accounts.IDs[i]);
}
}
}
}
}
}
};
|