-
Notifications
You must be signed in to change notification settings - Fork 39
/
extensions.js
3674 lines (3177 loc) · 98.6 KB
/
extensions.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* 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";
/* import-globals-from ../../../content/contentAreaUtils.js */
/* import-globals-from aboutaddonsCommon.js */
/* globals ProcessingInstruction */
/* exported gBrowser, loadView */
const { DeferredTask } = ChromeUtils.import(
"resource://gre/modules/DeferredTask.jsm"
);
const { AddonManager } = ChromeUtils.import(
"resource://gre/modules/AddonManager.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"E10SUtils",
"resource://gre/modules/E10SUtils.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"ExtensionParent",
"resource://gre/modules/ExtensionParent.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"ExtensionPermissions",
"resource://gre/modules/ExtensionPermissions.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"PluralForm",
"resource://gre/modules/PluralForm.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"Preferences",
"resource://gre/modules/Preferences.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"ClientID",
"resource://gre/modules/ClientID.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"PrivateBrowsingUtils",
"resource://gre/modules/PrivateBrowsingUtils.jsm"
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"XPINSTALL_ENABLED",
"xpinstall.enabled",
true
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"allowPrivateBrowsingByDefault",
"extensions.allowPrivateBrowsingByDefault",
true
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"SUPPORT_URL",
"app.support.baseURL",
"",
null,
val => Services.urlFormatter.formatURL(val)
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"useHtmlViews",
"extensions.htmlaboutaddons.enabled"
);
const PREF_UI_TYPE_HIDDEN = "extensions.ui.%TYPE%.hidden";
const PREF_UI_LASTCATEGORY = "extensions.ui.lastCategory";
const LOADING_MSG_DELAY = 100;
const UPDATES_RECENT_TIMESPAN = 2 * 24 * 3600000; // 2 days (in milliseconds)
var gViewDefault = "addons://list/extension";
XPCOMUtils.defineLazyGetter(this, "extensionStylesheets", () => {
const { ExtensionParent } = ChromeUtils.import(
"resource://gre/modules/ExtensionParent.jsm"
);
return ExtensionParent.extensionStylesheets;
});
var gStrings = {};
XPCOMUtils.defineLazyServiceGetter(
gStrings,
"bundleSvc",
"@mozilla.org/intl/stringbundle;1",
"nsIStringBundleService"
);
XPCOMUtils.defineLazyGetter(gStrings, "brand", function() {
return this.bundleSvc.createBundle(
"chrome://branding/locale/brand.properties"
);
});
XPCOMUtils.defineLazyGetter(gStrings, "ext", function() {
return this.bundleSvc.createBundle(
"chrome://mozapps/locale/extensions/extensions.properties"
);
});
XPCOMUtils.defineLazyGetter(gStrings, "dl", function() {
return this.bundleSvc.createBundle(
"chrome://mozapps/locale/downloads/downloads.properties"
);
});
XPCOMUtils.defineLazyGetter(gStrings, "brandShortName", function() {
return this.brand.GetStringFromName("brandShortName");
});
XPCOMUtils.defineLazyGetter(gStrings, "appVersion", function() {
return Services.appinfo.version;
});
document.addEventListener("load", initialize, true);
window.addEventListener("unload", shutdown);
var gPendingInitializations = 1;
Object.defineProperty(this, "gIsInitializing", {
get: () => gPendingInitializations > 0,
});
function initialize(event) {
// XXXbz this listener gets _all_ load events for all nodes in the
// document... but relies on not being called "too early".
if (event.target instanceof ProcessingInstruction) {
return;
}
document.removeEventListener("load", initialize, true);
let globalCommandSet = document.getElementById("globalCommandSet");
globalCommandSet.addEventListener("command", function(event) {
gViewController.doCommand(event.target.id);
});
let viewCommandSet = document.getElementById("viewCommandSet");
viewCommandSet.addEventListener("commandupdate", function(event) {
gViewController.updateCommands();
});
viewCommandSet.addEventListener("command", function(event) {
gViewController.doCommand(event.target.id);
});
let addonPage = document.getElementById("addons-page");
addonPage.addEventListener("dragenter", function(event) {
gDragDrop.onDragOver(event);
});
addonPage.addEventListener("dragover", function(event) {
gDragDrop.onDragOver(event);
});
addonPage.addEventListener("drop", function(event) {
gDragDrop.onDrop(event);
});
addonPage.addEventListener("keypress", function(event) {
gHeader.onKeyPress(event);
});
let helpButton = document.getElementById("helpButton");
let helpUrl =
Services.urlFormatter.formatURLPref("app.support.baseURL") + "addons-help";
helpButton.setAttribute("href", helpUrl);
document.getElementById("preferencesButton").addEventListener("click", () => {
let mainWindow = window.windowRoot.ownerGlobal;
if ("switchToTabHavingURI" in mainWindow) {
mainWindow.switchToTabHavingURI("about:preferences", true, {
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
}
});
let categories = document.getElementById("categories");
document.addEventListener("keydown", () => {
categories.setAttribute("keyboard-navigation", "true");
});
categories.addEventListener("mousedown", () => {
categories.removeAttribute("keyboard-navigation");
});
gViewController.initialize();
gCategories.initialize();
gEventManager.initialize();
Services.obs.addObserver(sendEMPong, "EM-ping");
Services.obs.notifyObservers(window, "EM-loaded");
if (!XPINSTALL_ENABLED) {
document.getElementById("cmd_installFromFile").hidden = true;
}
// If the initial view has already been selected (by a call to loadView from
// the above notifications) then bail out now
if (gViewController.initialViewSelected) {
return;
}
// If there is a history state to restore then use that
if (window.history.state) {
gViewController.updateState(window.history.state);
return;
}
// Default to the last selected category
var view = gCategories.node.value;
// Allow passing in a view through the window arguments
if (
"arguments" in window &&
window.arguments.length > 0 &&
window.arguments[0] !== null &&
"view" in window.arguments[0]
) {
view = window.arguments[0].view;
}
gViewController.loadInitialView(view);
}
function notifyInitialized() {
if (!gIsInitializing) {
return;
}
gPendingInitializations--;
if (!gIsInitializing) {
var event = document.createEvent("Events");
event.initEvent("Initialized", true, true);
document.dispatchEvent(event);
}
}
function shutdown() {
gCategories.shutdown();
gEventManager.shutdown();
gViewController.shutdown();
Services.obs.removeObserver(sendEMPong, "EM-ping");
}
function sendEMPong(aSubject, aTopic, aData) {
Services.obs.notifyObservers(window, "EM-pong");
}
function getCurrentViewName() {
let view = gViewController.currentViewObj;
let entries = Object.entries(gViewController.viewObjects);
let viewIndex = entries.findIndex(([name, viewObj]) => {
return viewObj == view;
});
if (viewIndex != -1) {
return entries[viewIndex][0];
}
return "other";
}
// Used by external callers to load a specific view into the manager
function loadView(aViewId) {
if (!gViewController.initialViewSelected) {
// The caller opened the window and immediately loaded the view so it
// should be the initial history entry
gViewController.loadInitialView(aViewId);
} else {
gViewController.loadView(aViewId);
}
}
function isLegacyExtension(addon) {
let legacy = false;
if (addon.type == "extension" && !addon.isWebExtension) {
legacy = true;
}
if (addon.type == "theme") {
legacy = false;
}
if (
legacy &&
(addon.hidden || addon.signedState == AddonManager.SIGNEDSTATE_PRIVILEGED)
) {
legacy = false;
}
return legacy;
}
/**
* A wrapper around the HTML5 session history service that allows the browser
* back/forward controls to work within the manager
*/
var HTML5History = {
get index() {
return window.docShell.QueryInterface(Ci.nsIWebNavigation).sessionHistory
.index;
},
get canGoBack() {
return window.docShell.QueryInterface(Ci.nsIWebNavigation).canGoBack;
},
get canGoForward() {
return window.docShell.QueryInterface(Ci.nsIWebNavigation).canGoForward;
},
back() {
window.history.back();
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
forward() {
window.history.forward();
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
pushState(aState) {
window.history.pushState(aState, document.title);
},
replaceState(aState) {
window.history.replaceState(aState, document.title);
},
popState() {
function onStatePopped(aEvent) {
window.removeEventListener("popstate", onStatePopped, true);
// TODO To ensure we can't go forward again we put an additional entry
// for the current state into the history. Ideally we would just strip
// the history but there doesn't seem to be a way to do that. Bug 590661
window.history.pushState(aEvent.state, document.title);
}
window.addEventListener("popstate", onStatePopped, true);
window.history.back();
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
};
/**
* A wrapper around a fake history service
*/
var FakeHistory = {
pos: 0,
states: [null],
get index() {
return this.pos;
},
get canGoBack() {
return this.pos > 0;
},
get canGoForward() {
return this.pos + 1 < this.states.length;
},
back() {
if (this.pos == 0) {
throw Components.Exception("Cannot go back from this point");
}
this.pos--;
gViewController.updateState(this.states[this.pos]);
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
forward() {
if (this.pos + 1 >= this.states.length) {
throw Components.Exception("Cannot go forward from this point");
}
this.pos++;
gViewController.updateState(this.states[this.pos]);
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
pushState(aState) {
this.pos++;
this.states.splice(this.pos, this.states.length);
this.states.push(aState);
},
replaceState(aState) {
this.states[this.pos] = aState;
},
popState() {
if (this.pos == 0) {
throw Components.Exception("Cannot popState from this view");
}
this.states.splice(this.pos, this.states.length);
this.pos--;
gViewController.updateState(this.states[this.pos]);
gViewController.updateCommand("cmd_back");
gViewController.updateCommand("cmd_forward");
},
};
// If the window has a session history then use the HTML5 History wrapper
// otherwise use our fake history implementation
if (window.docShell.QueryInterface(Ci.nsIWebNavigation).sessionHistory) {
var gHistory = HTML5History;
} else {
gHistory = FakeHistory;
}
var gEventManager = {
_listeners: {},
_installListeners: new Set(),
initialize() {
const ADDON_EVENTS = [
"onEnabling",
"onEnabled",
"onDisabling",
"onDisabled",
"onUninstalling",
"onUninstalled",
"onInstalled",
"onOperationCancelled",
"onUpdateAvailable",
"onUpdateFinished",
"onCompatibilityUpdateAvailable",
"onPropertyChanged",
];
for (let evt of ADDON_EVENTS) {
let event = evt;
this[event] = (...aArgs) => this.delegateAddonEvent(event, aArgs);
}
const INSTALL_EVENTS = [
"onNewInstall",
"onDownloadStarted",
"onDownloadEnded",
"onDownloadFailed",
"onDownloadProgress",
"onDownloadCancelled",
"onInstallStarted",
"onInstallEnded",
"onInstallFailed",
"onInstallCancelled",
"onExternalInstall",
];
for (let evt of INSTALL_EVENTS) {
let event = evt;
this[event] = (...aArgs) => this.delegateInstallEvent(event, aArgs);
}
AddonManager.addManagerListener(this);
AddonManager.addInstallListener(this);
AddonManager.addAddonListener(this);
this.refreshGlobalWarning();
this.refreshAutoUpdateDefault();
var contextMenu = document.getElementById("addonitem-popup");
contextMenu.addEventListener("popupshowing", function() {
var addon = gViewController.currentViewObj.getSelectedAddon();
contextMenu.setAttribute("addontype", addon.type);
var menuSep = document.getElementById("addonitem-menuseparator");
var countMenuItemsBeforeSep = 0;
for (let child of contextMenu.children) {
if (child == menuSep) {
break;
}
if (
child.nodeName == "menuitem" &&
gViewController.isCommandEnabled(child.command)
) {
countMenuItemsBeforeSep++;
}
}
// Hide the separator if there are no visible menu items before it
menuSep.hidden = countMenuItemsBeforeSep == 0;
});
let addonTooltip = document.getElementById("addonitem-tooltip");
addonTooltip.addEventListener("popupshowing", function() {
let addonItem = addonTooltip.triggerNode;
// The way the test triggers the tooltip the richlistitem is the
// tooltipNode but in normal use it is the anonymous node. This allows
// any case
if (addonItem.localName != "richlistitem") {
addonItem = document.getBindingParent(addonItem);
}
let tiptext = addonItem.getAttribute("name");
if (addonItem.mAddon) {
if (shouldShowVersionNumber(addonItem.mAddon)) {
tiptext +=
" " +
(addonItem.hasAttribute("upgrade")
? addonItem.mManualUpdate.version
: addonItem.mAddon.version);
}
} else if (shouldShowVersionNumber(addonItem.mInstall)) {
tiptext += " " + addonItem.mInstall.version;
}
addonTooltip.label = tiptext;
});
},
shutdown() {
AddonManager.removeManagerListener(this);
AddonManager.removeInstallListener(this);
AddonManager.removeAddonListener(this);
},
registerAddonListener(aListener, aAddonId) {
if (!(aAddonId in this._listeners)) {
this._listeners[aAddonId] = new Set();
}
this._listeners[aAddonId].add(aListener);
},
unregisterAddonListener(aListener, aAddonId) {
if (!(aAddonId in this._listeners)) {
return;
}
this._listeners[aAddonId].delete(aListener);
},
registerInstallListener(aListener) {
this._installListeners.add(aListener);
},
unregisterInstallListener(aListener) {
this._installListeners.delete(aListener);
},
delegateAddonEvent(aEvent, aParams) {
var addon = aParams.shift();
if (!(addon.id in this._listeners)) {
return;
}
function tryListener(listener) {
if (!(aEvent in listener)) {
return;
}
try {
listener[aEvent].apply(listener, aParams);
} catch (e) {
// this shouldn't be fatal
Cu.reportError(e);
}
}
for (let listener of this._listeners[addon.id]) {
tryListener(listener);
}
// eslint-disable-next-line dot-notation
for (let listener of this._listeners["ANY"]) {
tryListener(listener);
}
},
delegateInstallEvent(aEvent, aParams) {
var existingAddon =
aEvent == "onExternalInstall" ? aParams[1] : aParams[0].existingAddon;
// If the install is an update then send the event to all listeners
// registered for the existing add-on
if (existingAddon) {
this.delegateAddonEvent(aEvent, [existingAddon].concat(aParams));
}
for (let listener of this._installListeners) {
if (!(aEvent in listener)) {
continue;
}
try {
listener[aEvent].apply(listener, aParams);
} catch (e) {
// this shouldn't be fatal
Cu.reportError(e);
}
}
},
refreshGlobalWarning() {
var page = document.getElementById("addons-page");
if (Services.appinfo.inSafeMode) {
page.setAttribute("warning", "safemode");
return;
}
if (
AddonManager.checkUpdateSecurityDefault &&
!AddonManager.checkUpdateSecurity
) {
page.setAttribute("warning", "updatesecurity");
return;
}
if (!AddonManager.checkCompatibility) {
page.setAttribute("warning", "checkcompatibility");
return;
}
page.removeAttribute("warning");
},
refreshAutoUpdateDefault() {
var updateEnabled = AddonManager.updateEnabled;
var autoUpdateDefault = AddonManager.autoUpdateDefault;
// The checkbox needs to reflect that both prefs need to be true
// for updates to be checked for and applied automatically
document
.getElementById("utils-autoUpdateDefault")
.setAttribute("checked", updateEnabled && autoUpdateDefault);
document.getElementById(
"utils-updateNow"
).hidden = !updateEnabled;
let e = document.getElementById(
"utils-viewUpdates"
);
e.hidden = !updateEnabled;
e.nextElementSibling.hidden = !updateEnabled;
document.getElementById(
"utils-autoUpdateDefault"
).hidden = !updateEnabled;
document.getElementById(
"utils-resetAddonUpdatesToAutomatic"
).hidden = !autoUpdateDefault || !updateEnabled;
e = document.getElementById(
"utils-resetAddonUpdatesToManual"
);
e.hidden = autoUpdateDefault || !updateEnabled;
e.nextElementSibling.hidden = !updateEnabled;
},
onCompatibilityModeChanged() {
this.refreshGlobalWarning();
},
onCheckUpdateSecurityChanged() {
this.refreshGlobalWarning();
},
onUpdateModeChanged() {
this.refreshAutoUpdateDefault();
},
};
var gViewController = {
viewPort: null,
currentViewId: "",
currentViewObj: null,
currentViewRequest: 0,
viewObjects: {},
viewChangeCallback: null,
initialViewSelected: false,
lastHistoryIndex: -1,
backButton: null,
initialize() {
this.viewPort = document.getElementById("view-port");
this.headeredViews = document.getElementById("headered-views");
this.headeredViewsDeck = document.getElementById("headered-views-content");
this.backButton = document.getElementById("go-back");
this.viewObjects.legacy = gLegacyView;
this.viewObjects.shortcuts = gShortcutsView;
if (useHtmlViews) {
this.viewObjects.list = htmlView("list");
this.viewObjects.detail = htmlView("detail");
this.viewObjects.updates = htmlView("updates");
// gUpdatesView still handles when the Available Updates category is
// shown. Include it in viewObjects so it gets initialized and shutdown.
this.viewObjects._availableUpdatesSidebar = gUpdatesView;
} else {
this.viewObjects.list = gListView;
this.viewObjects.detail = gDetailView;
this.viewObjects.updates = gUpdatesView;
}
for (let type in this.viewObjects) {
let view = this.viewObjects[type];
view.initialize();
}
window.controllers.appendController(this);
window.addEventListener("popstate", function(e) {
gViewController.updateState(e.state);
});
},
shutdown() {
if (this.currentViewObj) {
this.currentViewObj.hide();
}
this.currentViewRequest = 0;
for (let type in this.viewObjects) {
let view = this.viewObjects[type];
if ("shutdown" in view) {
try {
view.shutdown();
} catch (e) {
// this shouldn't be fatal
Cu.reportError(e);
}
}
}
window.controllers.removeController(this);
},
updateState(state) {
try {
this.loadViewInternal(state.view, state.previousView, state);
this.lastHistoryIndex = gHistory.index;
} catch (e) {
// The attempt to load the view failed, try moving further along history
if (this.lastHistoryIndex > gHistory.index) {
if (gHistory.canGoBack) {
gHistory.back();
} else {
gViewController.replaceView(gViewDefault);
}
} else if (gHistory.canGoForward) {
gHistory.forward();
} else {
gViewController.replaceView(gViewDefault);
}
}
},
parseViewId(aViewId) {
var matchRegex = /^addons:\/\/([^\/]+)\/(.*)$/;
var [, viewType, viewParam] = aViewId.match(matchRegex) || [];
return { type: viewType, param: decodeURIComponent(viewParam) };
},
get isLoading() {
return (
!this.currentViewObj || this.currentViewObj.node.hasAttribute("loading")
);
},
loadView(aViewId, sourceEvent) {
var isRefresh = false;
if (aViewId == this.currentViewId) {
if (this.isLoading) {
return;
}
if (!("refresh" in this.currentViewObj)) {
return;
}
if (!this.currentViewObj.canRefresh()) {
return;
}
isRefresh = true;
}
let isKeyboardNavigation =
sourceEvent &&
sourceEvent.mozInputSource === MouseEvent.MOZ_SOURCE_KEYBOARD;
var state = {
view: aViewId,
previousView: this.currentViewId,
isKeyboardNavigation,
};
if (!isRefresh) {
gHistory.pushState(state);
this.lastHistoryIndex = gHistory.index;
}
this.loadViewInternal(aViewId, this.currentViewId, state);
},
// Replaces the existing view with a new one, rewriting the current history
// entry to match.
replaceView(aViewId) {
if (aViewId == this.currentViewId) {
return;
}
var state = {
view: aViewId,
previousView: null,
};
gHistory.replaceState(state);
this.loadViewInternal(aViewId, null, state);
},
loadInitialView(aViewId) {
var state = {
view: aViewId,
previousView: null,
};
gHistory.replaceState(state);
this.loadViewInternal(aViewId, null, state);
this.initialViewSelected = true;
notifyInitialized();
},
get displayedView() {
if (this.viewPort.selectedPanel == this.headeredViews) {
return this.headeredViewsDeck.selectedPanel;
}
return this.viewPort.selectedPanel;
},
set displayedView(view) {
let node = view.node;
if (node.parentNode == this.headeredViewsDeck) {
this.headeredViewsDeck.selectedPanel = node;
this.viewPort.selectedPanel = this.headeredViews;
} else {
this.viewPort.selectedPanel = node;
}
},
loadViewInternal(aViewId, aPreviousView, aState, aEvent) {
var view = this.parseViewId(aViewId);
if (!view.type || !(view.type in this.viewObjects)) {
throw Components.Exception("Invalid view: " + view.type);
}
var viewObj = this.viewObjects[view.type];
if (!viewObj.node) {
throw Components.Exception(
"Root node doesn't exist for '" + view.type + "' view"
);
}
if (this.currentViewObj && aViewId != aPreviousView) {
try {
let canHide = this.currentViewObj.hide();
if (canHide === false) {
return;
}
this.displayedView.removeAttribute("loading");
} catch (e) {
// this shouldn't be fatal
Cu.reportError(e);
}
}
gCategories.select(aViewId, aPreviousView);
this.currentViewId = aViewId;
this.currentViewObj = viewObj;
this.displayedView = this.currentViewObj;
this.currentViewObj.node.setAttribute("loading", "true");
let headingName = document.getElementById("heading-name");
let headingLabel;
try {
headingLabel = gStrings.ext.GetStringFromName(
`listHeading.${view.param}`
);
} catch (e) {
// Some views don't have a label, like the updates view.
headingLabel = "";
}
headingName.textContent = headingLabel;
if (aViewId == aPreviousView) {
this.currentViewObj.refresh(
view.param,
++this.currentViewRequest,
aState
);
} else {
this.currentViewObj.show(view.param, ++this.currentViewRequest, aState);
}
this.backButton.hidden = this.currentViewObj.isRoot || !gHistory.canGoBack;
},
// Moves back in the document history and removes the current history entry
popState(aCallback) {
this.viewChangeCallback = aCallback;
gHistory.popState();
},
notifyViewChanged() {
this.displayedView.removeAttribute("loading");
if (this.viewChangeCallback) {
this.viewChangeCallback();
this.viewChangeCallback = null;
}
var event = document.createEvent("Events");
event.initEvent("ViewChanged", true, true);
this.currentViewObj.node.dispatchEvent(event);
},
commands: {
cmd_back: {
isEnabled() {
return gHistory.canGoBack;
},
doCommand() {
gHistory.back();
},
},
cmd_forward: {
isEnabled() {
return gHistory.canGoForward;
},
doCommand() {
gHistory.forward();
},
},
cmd_focusSearch: {
isEnabled: () => true,
doCommand() {
gHeader.focusSearchBox();
},
},
cmd_enableCheckCompatibility: {
isEnabled() {
return true;
},
doCommand() {
AddonManager.checkCompatibility = true;
},
},
cmd_enableUpdateSecurity: {
isEnabled() {
return true;
},
doCommand() {
AddonManager.checkUpdateSecurity = true;
},
},
cmd_toggleAutoUpdateDefault: {
isEnabled() {
return true;
},
doCommand() {
if (!AddonManager.updateEnabled || !AddonManager.autoUpdateDefault) {
// One or both of the prefs is false, i.e. the checkbox is not checked.
// Now toggle both to true. If the user wants us to auto-update
// add-ons, we also need to auto-check for updates.
AddonManager.updateEnabled = true;
AddonManager.autoUpdateDefault = true;
} else {
// Both prefs are true, i.e. the checkbox is checked.
// Toggle the auto pref to false, but don't touch the enabled check.
AddonManager.autoUpdateDefault = false;
}
},
},
cmd_resetAddonAutoUpdate: {
isEnabled() {
return true;
},
async doCommand() {
let aAddonList = await AddonManager.getAllAddons();
for (let addon of aAddonList) {
if ("applyBackgroundUpdates" in addon) {
addon.applyBackgroundUpdates = AddonManager.AUTOUPDATE_DEFAULT;
}
}
},
},
cmd_goToRecentUpdates: {