Update library
This commit is contained in:
parent
92dd8adf82
commit
88cf5df47f
@ -1,109 +1,36 @@
|
|||||||
/*
|
/**
|
||||||
Uninstallation Listener Library
|
* @fileOverview Uninstallation Listener Library
|
||||||
|
* @author YUKI "Piro" Hiroshi
|
||||||
|
* @version 3
|
||||||
|
*
|
||||||
|
* @license
|
||||||
|
* The MIT License, Copyright (c) 2009-2016 YUKI "Piro" Hiroshi.
|
||||||
|
* https://github.com/piroor/fxaddonlib-uninstallation-listener/blob/master/license.txt
|
||||||
|
* @url https://github.com/piroor/fxaddonlib-uninstallation-listener
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* new UninstallationListener({
|
||||||
|
* id : 'test@exmaple.com',
|
||||||
|
* onuninstalled : function() { ... },
|
||||||
|
* ondisabled : function() { ... }
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
|
||||||
Usage:
|
var EXPORTED_SYMBOLS = ['UninstallationListener'];
|
||||||
new window['piro.sakura.ne.jp'].UninstallationListener({
|
|
||||||
id : 'test@exmaple.com',
|
|
||||||
onuninstalled : function() { ... },
|
|
||||||
ondisabled : function() { ... }
|
|
||||||
});
|
|
||||||
|
|
||||||
license: The MIT License, Copyright (c) 2009-2011 YUKI "Piro" Hiroshi
|
|
||||||
http://github.com/piroor/fxaddonlibs/blob/master/license.txt
|
|
||||||
original:
|
|
||||||
http://github.com/piroor/fxaddonlibs/blob/master/UninstallationListener.js
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* To work as a JS Code Module */
|
const Cc = Components.classes;
|
||||||
if (typeof window == 'undefined' ||
|
const Ci = Components.interfaces;
|
||||||
(window && typeof window.constructor == 'function')) {
|
|
||||||
this.EXPORTED_SYMBOLS = ['UninstallationListener'];
|
|
||||||
|
|
||||||
// If namespace.jsm is available, export symbols to the shared namespace.
|
const ObserverService = Cc['@mozilla.org/observer-service;1']
|
||||||
// See: http://github.com/piroor/fxaddonlibs/blob/master/namespace.jsm
|
|
||||||
try {
|
|
||||||
let ns = {};
|
|
||||||
Components.utils.import('resource://my-modules/namespace.jsm', ns);
|
|
||||||
/* var */ window = ns.getNamespaceFor('piro.sakura.ne.jp');
|
|
||||||
}
|
|
||||||
catch(e) {
|
|
||||||
window = {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
const currentRevision = 2;
|
|
||||||
|
|
||||||
if (!('piro.sakura.ne.jp' in window)) window['piro.sakura.ne.jp'] = {};
|
|
||||||
|
|
||||||
var loadedRevision = 'UninstallationListener' in window['piro.sakura.ne.jp'] ?
|
|
||||||
window['piro.sakura.ne.jp'].UninstallationListener.prototype.revision :
|
|
||||||
0 ;
|
|
||||||
if (loadedRevision && loadedRevision > currentRevision) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Cc = Components.classes;
|
|
||||||
const Ci = Components.interfaces;
|
|
||||||
|
|
||||||
const ObserverService = Cc['@mozilla.org/observer-service;1']
|
|
||||||
.getService(Ci.nsIObserverService);
|
.getService(Ci.nsIObserverService);
|
||||||
|
|
||||||
var AddonManager;
|
var { AddonManager } = Components.utils.import('resource://gre/modules/AddonManager.jsm', {});
|
||||||
try {
|
|
||||||
let ns = {};
|
|
||||||
Components.utils.import('resource://gre/modules/AddonManager.jsm', ns);
|
|
||||||
AddonManager = ns.AddonManager;
|
|
||||||
}
|
|
||||||
catch(e) {
|
|
||||||
}
|
|
||||||
|
|
||||||
window['piro.sakura.ne.jp'].UninstallationListener = function(aArguments) {
|
var UninstallationListener = function(aArguments) {
|
||||||
this.init(aArguments);
|
this.init(aArguments);
|
||||||
};
|
};
|
||||||
window['piro.sakura.ne.jp'].UninstallationListener.prototype = {
|
UninstallationListener.prototype = {
|
||||||
revision : currentRevision,
|
|
||||||
|
|
||||||
// for Firefox 3.6 or older
|
|
||||||
observe : function(aSubject, aTopic, aData)
|
|
||||||
{
|
|
||||||
switch (aTopic)
|
|
||||||
{
|
|
||||||
case 'em-action-requested':
|
|
||||||
switch (aData)
|
|
||||||
{
|
|
||||||
case 'item-uninstalled':
|
|
||||||
if (this.isTargetExtension(aSubject))
|
|
||||||
this.toBeUninstalled = true;
|
|
||||||
break;
|
|
||||||
case 'item-cancel-action':
|
|
||||||
if (this.isTargetExtension(aSubject)) {
|
|
||||||
this.toBeUninstalled = false;
|
|
||||||
this.toBeDisabled = false;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'item-disabled':
|
|
||||||
if (this.isTargetExtension(aSubject))
|
|
||||||
this.toBeDisabled = true;
|
|
||||||
break;
|
|
||||||
case 'item-enabled':
|
|
||||||
if (this.isTargetExtension(aSubject))
|
|
||||||
this.toBeDisabled = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
|
|
||||||
case 'quit-application-granted':
|
|
||||||
this.destroy();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
isTargetExtension : function(aSubject)
|
|
||||||
{
|
|
||||||
return (aSubject instanceof Ci.nsIUpdateItem) && (aSubject.id == this.id);
|
|
||||||
},
|
|
||||||
|
|
||||||
// for Firefox 4 or later
|
|
||||||
onEnabling : function(aAddon, aRestartRequired) {},
|
onEnabling : function(aAddon, aRestartRequired) {},
|
||||||
onEnabled : function(aAddon) {},
|
onEnabled : function(aAddon) {},
|
||||||
onDisabling : function(aAddon, aRestartRequired) {
|
onDisabling : function(aAddon, aRestartRequired) {
|
||||||
@ -154,12 +81,7 @@ if (typeof window == 'undefined' ||
|
|||||||
this.ondisabled = aArguments.ondisabled;
|
this.ondisabled = aArguments.ondisabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (AddonManager) { // Firefox 4 or later
|
|
||||||
AddonManager.addAddonListener(this);
|
AddonManager.addAddonListener(this);
|
||||||
}
|
|
||||||
else {
|
|
||||||
ObserverService.addObserver(this, 'em-action-requested', false);
|
|
||||||
}
|
|
||||||
ObserverService.addObserver(this, 'quit-application-granted', false);
|
ObserverService.addObserver(this, 'quit-application-granted', false);
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -173,17 +95,18 @@ if (typeof window == 'undefined' ||
|
|||||||
this.ondisabled();
|
this.ondisabled();
|
||||||
delete this.ondisabled;
|
delete this.ondisabled;
|
||||||
|
|
||||||
if (AddonManager) { // Firefox 4 or later
|
|
||||||
AddonManager.removeAddonListener(this);
|
AddonManager.removeAddonListener(this);
|
||||||
}
|
|
||||||
else {
|
|
||||||
ObserverService.removeObserver(this, 'em-action-requested');
|
|
||||||
}
|
|
||||||
ObserverService.removeObserver(this, 'quit-application-granted');
|
ObserverService.removeObserver(this, 'quit-application-granted');
|
||||||
}
|
},
|
||||||
};
|
|
||||||
})();
|
observe : function(aSubject, aTopic, aData)
|
||||||
|
{
|
||||||
|
switch (aTopic)
|
||||||
|
{
|
||||||
|
case 'quit-application-granted':
|
||||||
|
this.destroy();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (window != this) { // work as a JS Code Module
|
|
||||||
this.UninstallationListener = window['piro.sakura.ne.jp'].UninstallationListener;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user