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
|
/*
* This file is part of DAV-4-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/.
*/
// no need to create namespace, we are in a sandbox
var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
var { cal } = ChromeUtils.import("resource:///modules/calendar/calUtils.jsm");
let component = {};
let onInitDoneObserver = {
observe: async function (aSubject, aTopic, aData) {
let valid = false;
try {
var { TbSync } = ChromeUtils.import("chrome://tbsync/content/tbsync.jsm");
valid = TbSync.enabled;
} catch (e) {
// If this fails, TbSync is not loaded yet and we will get the notification later again.
}
//load this provider add-on into TbSync
if (valid) {
await TbSync.providers.loadProvider(extension, "dav", "chrome://dav4tbsync/content/provider.js");
}
}
}
function startup(data, reason) {
// Possible reasons: APP_STARTUP, ADDON_ENABLE, ADDON_INSTALL, ADDON_UPGRADE, or ADDON_DOWNGRADE.
Services.obs.addObserver(onInitDoneObserver, "tbsync.observer.initialized", false);
// Did we miss the observer?
onInitDoneObserver.observe();
}
function shutdown(data, reason) {
// Possible reasons: APP_STARTUP, ADDON_ENABLE, ADDON_INSTALL, ADDON_UPGRADE, or ADDON_DOWNGRADE.
// When the application is shutting down we normally don't have to clean up.
if (reason == APP_SHUTDOWN) {
return;
}
Services.obs.removeObserver(onInitDoneObserver, "tbsync.observer.initialized");
//unload this provider add-on from TbSync
try {
var { TbSync } = ChromeUtils.import("chrome://tbsync/content/tbsync.jsm");
TbSync.providers.unloadProvider("dav");
} catch (e) {
//if this fails, TbSync has been unloaded already and has unloaded this addon as well
}
Services.obs.notifyObservers(null, "startupcache-invalidate");
Services.obs.notifyObservers(null, "chrome-flush-caches");
}
|