-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbootstrap.js
906 lines (792 loc) · 26.2 KB
/
bootstrap.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
/* 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/. */
var __SCRATCHPAD__ = !(typeof(window) == "undefined");
if (__SCRATCHPAD__ && (typeof(window.gBrowser) == "undefined")) {
throw new Error("Must be run in a browser scratchpad.");
}
// If we're developing in scratchpad, shutdown the previous run
// before continuing.
if (__SCRATCHPAD__ && (typeof(shutdown) != "undefined")) {
shutdown();
}
// should be consts but redefining makes this a pain.
var { interfaces: Ci, utils: Cu } = Components;
Cu.import("resource://gre/modules/Services.jsm");
// Pref stores the auth token we were given by gist.
const kAuthTokenPref = "devtools.scratchpad.gist.authtoken";
// Pref stores the user we authenticated as.
const kUserPref = "devtools.scratchpad.gist.userid";
const kAuthNote = "Scratchpad";
const kLabelStyle = "margin-top: 4px;";
function strPref(key) Services.prefs.prefHasUserValue(key) ? Services.prefs.getCharPref(key) : null;
function ScratchpadGist(win)
{
this.win = win;
this.doc = win.document;
this.updateUI = this.updateUI.bind(this);
Services.obs.addObserver(this.updateUI, "sp-gist-auth", false);
this.overrideOpenFile();
this.addCommands();
this.addMenu();
this.addToolbar();
this.addToolbarButtons();
this.updateUI();
}
ScratchpadGist.prototype = {
get authtoken() strPref(kAuthTokenPref),
get authUser() strPref(kUserPref),
get menu() this.doc.getElementById("sp-gist-menu"),
get toolbar() this.doc.getElementById("sp-gist-toolbar"),
get toolbarLink() this.doc.getElementById("sp-gist-link"),
get nbox() this.doc.getElementById("scratchpad-notificationbox"),
get commandset() this.doc.getElementById("sp-gist-commands"),
get historyPopup() this.doc.getElementById("sp-gist-history"),
get fileButton() this.doc.getElementById("sp-gist-file"),
get filesPopup() this.doc.getElementById("sp-gist-files"),
destroy: function() {
Services.obs.removeObserver(this.updateUI, "sp-gist-auth", false);
if (this._authListener) {
let item = this.doc.getElementById("sp-gist-auth");
item.removeEventListener("command", this._authListener, false);
delete this._authListener;
}
this.menu.remove();
this.commandset.remove();
// remove toolbar buttons and things
this.doc.getElementById("sp-gist-label").remove();
this.toolbarLink.remove();
this.doc.getElementById("sp-gist-springy").remove();
this.fileButton.remove();
this.doc.getElementById("sp-gist-refresh").remove();
this.doc.getElementById("sp-gist-history-button").remove();
this.doc.getElementById("sp-gist-fork").remove();
this.doc.getElementById("sp-gist-post").remove();
let notification = this.nbox.getNotificationWithValue("gist-notification");
if (notification) {
this.nbox.removeNotification(notification);
}
if (this.toolbar)
this.toolbar.remove();
let tbar = this.doc.getElementById("sp-toolbar");
tbar.remove();
this.doc.getElementById("sp-gist-toolbox").remove();
this.doc.documentElement.insertBefore(tbar, this.nbox);
if (this.__originalOpenFile) {
this.win.Scratchpad.openFile = this.__originalOpenFile;
this.__originalOpenFile = null;
}
},
/**
* A few dom helpers...
*/
clear: function(elt) {
while (elt.hasChildNodes()) {
elt.removeChild(elt.firstChild);
}
},
addChild: function(parent, tag, attributes) {
let element = this.doc.createElement(tag);
for (let item of Object.getOwnPropertyNames(attributes)) {
element.setAttribute(item, attributes[item]);
}
parent.appendChild(element);
return element;
},
addCommand: function(options) {
let command = this.doc.createElement("command");
command.setAttribute("id", options.id);
if (options.label) {
command.setAttribute("label", options.label);
}
command.addEventListener("command", options.handler, true);
this.commandset.appendChild(command);
},
addCommands: function() {
let commands = this.doc.createElement("commandset");
commands.setAttribute("id", "sp-gist-commands");
this.doc.documentElement.appendChild(commands);
this.addCommand({
id: "sp-gist-cmd-signin",
label: "Sign In",
handler: () => this.signIn()
});
this.addCommand({
id: "sp-gist-cmd-signout",
label: "Sign Out",
handler: () => this.signOut()
});
this.addCommand({
id: "sp-gist-cmd-attach",
label: "Attach to Gist...",
handler: () => this.attach()
});
this.addCommand({
id: "sp-gist-cmd-detach",
label: "Detach from Gist",
handler: () => this.attached(null)
});
this.addCommand({
id: "sp-gist-cmd-create-private",
label: "Create Private Gist",
handler: () => this.create(false)
});
this.addCommand({
id: "sp-gist-cmd-create-public",
label: "Create Public Gist",
handler: () => this.create(true)
});
this.addCommand({
id: "sp-gist-cmd-create-anonymous",
label: "Create Anonymous Gist",
handler: () => this.create(true, true)
});
this.addCommand({
id: "sp-gist-cmd-refresh",
label: "Load Latest",
handler: () => this.refresh()
});
this.addCommand({
id: "sp-gist-cmd-update",
label: "Post",
handler: () => this.update()
});
this.addCommand({
id: "sp-gist-cmd-fork",
label: "Fork",
handler: () => this.fork()
});
},
addMenu: function() {
let doc = this.doc;
let menubar = doc.getElementById("sp-menubar");
if (!menubar) {
return;
}
let menu = doc.createElement("menu");
menu.setAttribute("id", "sp-gist-menu");
menu.setAttribute("label", "Gist");
menu.setAttribute("accesskey", "G");
let popup = this.addChild(menu, "menupopup", { id: "sp-gist-popup" });
this.addChild(popup, "menuitem", {
id: "sp-gist-auth",
accesskey: "S"
});
this.addChild(popup, "menuseparator", { class: "sp-gist-authed" });
this.addChild(popup, "menuitem", {
id: "sp-gist-attach",
class: "sp-gist-authed",
accesskey: "G"
});
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-create-public",
class: "sp-gist-authed sp-gist-detached",
accesskey: "C"
});
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-create-private",
class: "sp-gist-authed sp-gist-detached",
accesskey: "R"
});
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-create-anonymous",
class: "sp-gist-detached",
accesskey: "A"
});
this.addChild(popup, "menuseparator", { class: "sp-gist-authed sp-gist-attached" });
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-refresh",
class: "sp-gist-authed sp-gist-attached",
accesskey: "L"
});
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-fork",
class: "sp-gist-authed sp-gist-attached sp-gist-other",
accesskey: "F"
});
this.addChild(popup, "menuitem", {
command: "sp-gist-cmd-update",
class: "sp-gist-authed sp-gist-owned",
accesskey: "P"
});
let help = doc.getElementById("sp-help-menu");
menubar.insertBefore(menu, help);
},
addToolbar: function() {
let sp_toolbar = this.doc.getElementById("sp-toolbar");
let toolbox = this.doc.createElement("toolbox");
toolbox.id = "sp-gist-toolbox";
toolbox.class = "devtools-toolbar";
this.doc.documentElement.insertBefore(toolbox, this.nbox);
sp_toolbar.remove();
toolbox.appendChild(sp_toolbar);
this.addChild(toolbox, "toolbar", {
id: "sp-gist-toolbar",
class: "devtools-toolbar"
});
this.doc.getElementById("sp-gist-toolbar").collapsed = true;
},
addToolbarButtons: function() {
// Add some buttons to main scratchpad toolbar
let sp_toolbar = this.doc.getElementById("sp-toolbar");
this.addChild(sp_toolbar, "spacer", { flex: "1" });
this.addChild(sp_toolbar, "toolbarbutton", {
id: "sp-gist-attach-button",
class: "devtools-toolbarbutton sp-gist-authed"
});
let createNew = this.addChild(sp_toolbar, "toolbarbutton", {
label: "Create new Gist",
class: "devtools-toolbarbutton",
id: "sp-gist-create-new-button",
type: "menu"
});
let createNewPopup = this.addChild(createNew, "menupopup", {
id: "sp-gist-create-new"
});
this.addChild(createNewPopup, "menuitem", {
command: "sp-gist-cmd-create-public",
class: "sp-gist-authed sp-gist-detached"
});
this.addChild(createNewPopup, "menuitem", {
command: "sp-gist-cmd-create-private",
class: "sp-gist-authed sp-gist-detached"
});
this.addChild(createNewPopup, "menuitem", {
command: "sp-gist-cmd-create-anonymous",
class: "sp-gist-detached"
});
this.addChild(sp_toolbar, "toolbarbutton", {
id: "sp-gist-auth-button",
class: "devtools-toolbarbutton"
});
// Add buttons in the gist toolbar
let toolbar = this.toolbar;
this.addChild(toolbar, "label", {
style: kLabelStyle,
id: "sp-gist-label",
value: "Gist:"
});
this.addChild(toolbar, "label", {
style: kLabelStyle,
id: "sp-gist-link",
class: "text-link",
});
this.addChild(toolbar, "toolbarspring", {id: "sp-gist-springy"});
let fileSelector = this.addChild(toolbar, "toolbarbutton", {
id: "sp-gist-file",
class: "devtools-toolbarbutton sp-gist-multifile",
type: "menu"
});
this.addChild(fileSelector, "menupopup", {
id: "sp-gist-files"
});
this.addChild(toolbar, "toolbarbutton", {
command: "sp-gist-cmd-refresh",
id: "sp-gist-refresh",
class: "devtools-toolbarbutton"
});
let history = this.addChild(toolbar, "toolbarbutton", {
label: "History",
class: "devtools-toolbarbutton",
id: "sp-gist-history-button",
type: "menu"
});
this.addChild(history, "menupopup", {
id: "sp-gist-history"
});
this.addChild(toolbar, "toolbarbutton", {
id: "sp-gist-fork",
command: "sp-gist-cmd-fork",
class: "devtools-toolbarbutton sp-gist-other"
});
this.addChild(toolbar, "toolbarbutton", {
id: "sp-gist-post",
command: "sp-gist-cmd-update",
class: "devtools-toolbarbutton sp-gist-owned"
});
},
updateUI: function() {
let auth = this.doc.getElementById("sp-gist-auth");
let authButton = this.doc.getElementById("sp-gist-auth-button");
auth.setAttribute("command", this.authtoken ? "sp-gist-cmd-signout" : "sp-gist-cmd-signin");
authButton.setAttribute("command", this.authtoken ? "sp-gist-cmd-signout" : "sp-gist-cmd-signin");
let attach = this.doc.getElementById("sp-gist-attach");
attach.setAttribute("command", this.attachedGist ? "sp-gist-cmd-detach" : "sp-gist-cmd-attach");
let attachButton = this.doc.getElementById("sp-gist-attach-button");
attachButton.setAttribute("command", this.attachedGist ? "sp-gist-cmd-detach" : "sp-gist-cmd-attach");
let authed = !!this.authtoken;
let attached = !!this.attachedGist;
let own = attached && this.attachedGist.owner && (this.attachedGist.owner.id == this.authUser);
let multifile = this.attachedGist && Object.getOwnPropertyNames(this.attachedGist.files).length > 1;
// Update the visibility of the toolbar buttons and menu items.
// They have a set of class names which correspond to state. A
// given item is hidden if any of its requirements are not met.
let items = this.doc.querySelectorAll("#sp-gist-label, #sp-gist-post, #sp-gist-fork, #sp-gist-history-button, #sp-gist-refresh, #sp-gist-file, #sp-gist-menu menuitem, #sp-gist-menu menuseparator, #sp-gist-create-new-button menuitem");
for (let item of items) {
if ((item.classList.contains("sp-gist-authed") && !authed) ||
(item.classList.contains("sp-gist-attached") && !attached) ||
(item.classList.contains("sp-gist-detached") && attached) ||
(item.classList.contains("sp-gist-owned") && !own) ||
(item.classList.contains("sp-gist-other") && own) ||
(item.classList.contains("sp-gist-multifile") && !multifile))
item.setAttribute("hidden", "true");
else
item.removeAttribute("hidden");
}
if (attached) {
// Update the toolbar and label
this.toolbarLink.setAttribute("href", this.attachedGist.html_url);
this.toolbarLink.setAttribute("value", this.attachedGist.html_url);
// Update the history popup from the attached gist...
this.clear(this.historyPopup);
this.attachedGist.history.forEach(function(item) {
let login = "anonymous";
if (item.user && item.user.login) {
login = item.user.login;
}
let menuitem = this.addChild(this.historyPopup, "menuitem", {
label: item.version.substr(0, 6) + " " + login,
});
menuitem.addEventListener("command", function() {
this.refresh(item.version);
}.bind(this), true);
}.bind(this));
this.fileButton.setAttribute("label", this.attachedFile);
this.loadFile(this.attachedGist, this.attachedGist.files[this.attachedFile]);
// Update the file popup.
this.clear(this.filesPopup);
Object.getOwnPropertyNames(this.attachedGist.files).forEach(function(name) {
let item = this.attachedGist.files[name];
let menuitem = this.addChild(this.filesPopup, "menuitem", {
label: item.filename,
});
menuitem.addEventListener("command", function() {
this.fileButton.setAttribute("label", name);
this.attachedFile = name;
this.loadFile(this.attachedGist, item);
}.bind(this));
}.bind(this));
}
},
/**
* Overrides the scratchpad's open file method to take care of gists in the
* recent file list.
*/
overrideOpenFile: function() {
if (!this.__originalOpenFile) {
this.__originalOpenFile = this.win.Scratchpad.openFile;
this.win.Scratchpad.openFile = (index) => {
let path = this.win.Scratchpad.getRecentFiles()[index];
if (!path || !path.startsWith("Gist")) {
this.__originalOpenFile.call(this.win.Scratchpad, index);
return;
}
if (!!this.authtoken) {
let id = path.split(" ")[1];
this.request({
path: "/gists/" + id,
err: "Could not attach to the Gist: ",
success: function(response) {
this.attached(response);
}.bind(this),
error: "Couldn't find gist."
});
}
}
}
},
/**
* Issue a github API request.
*/
request: function(options) {
let xhr = new this.win.XMLHttpRequest();
xhr.mozBackgroundRequest = true;
xhr.onreadystatechange = function() {
if (xhr.readyState != 4)
return;
if (xhr.status >= 200 && xhr.status < 400) {
if (options.success) options.success(JSON.parse(xhr.responseText));
} else {
if (typeof(options.err) == "function") {
options.err(xhr);
} else {
let label;
try {
let response = JSON.parse(xhr.responseText);
let prefix = typeof(options.err) == "string" ? options.err : "The request returned an error: ";
label = prefix + response.message + ".";
} catch(ex) {
label = "Request could not be completed.";
}
this.notify(this.nbox.PRIORITY_CRITICAL_HIGH, label);
}
}
}.bind(this);
xhr.open(options.method || "GET",
"https://api.github.com" + options.path,
true, null, null);
if (!options.anonymous) {
xhr.setRequestHeader("Authorization", options.auth || "token " + this.authtoken);
}
xhr.send(options.args ? JSON.stringify(options.args) : "");
},
/**
* Notify the user with the notification box.
*/
notify: function(priority, label, buttons) {
let notification = this.nbox.getNotificationWithValue("gist-notification");
if (notification) {
this.nbox.removeNotification(notification);
}
this.nbox.appendNotification(
label, "gist-notification", null, priority, buttons, null
);
},
/**
* Show the signin dialog and start the authentication process.
*/
signIn: function() {
let username = {value:null};
let password = {value:null};
let check = {value:false};
Services.prompt.promptUsernameAndPassword(null, "GitHub Credentials", "Enter your github username and credentials.",
username, password, "", check);
let auth = "Basic " + this.win.btoa(username.value + ":" + password.value);
this.findAuth(auth);
},
/**
* Try to find an existing authorization for this application. If one is
* not found, this method will call createAuth() to create one.
*/
findAuth: function(auth) {
// Find an existing Scratchpad Gist authorization.
this.request({
method: "GET",
path: "/authorizations",
err: "Couldn't log in: ",
auth: auth,
success: function(response) {
for (let authorization of response) {
if (authorization.app.name == kAuthNote + " (API)") {
this.authorized(authorization);
return;
}
}
this.createAuth(auth);
}.bind(this)
});
},
/**
* Create a gist authorization for this application.
*/
createAuth: function(auth) {
this.request({
method: "POST",
path: "/authorizations",
auth: auth,
error: "Couldn't log in: ",
args: {
scopes: ["gist"],
note: kAuthNote,
note_url: null
},
success: function(response) {
this.authorized(response);
}.bind(this)
});
},
/**
* Now that we've gotten an authorization token, request user
* information so we know who we are.
*/
authorized: function(authorization) {
// Fetch information about the authorized user.
this.request({
path: "/user",
auth: "token " + authorization.token,
success: function(response) {
// Done logging in, set the auth preferences.
Services.prefs.setCharPref(kAuthTokenPref, authorization.token);
Services.prefs.setCharPref(kUserPref, response.id);
this.notify(this.nbox.PRIORITY_INFO_HIGH, "Logged in as " + response.name + ".");
// Notify other scratchpad windows that we're logged in. This will
// refresh the UI.
Services.obs.notifyObservers(null, "sp-gist-auth", "");
}.bind(this)
});
},
/**
* Forget the currently logged-in user.
*/
signOut: function() {
Services.prefs.clearUserPref(kAuthTokenPref);
// Notify other scratchpad windows that we're logged in. This will
// refresh the UI.
Services.obs.notifyObservers(null, "sp-gist-auth", "");
},
/**
* Prompt the user to attach to a gist.
*/
attach: function() {
let val = {value: null};
let check = {value:false};
Services.prompt.prompt(
this.win, "Attach to Gist", "Enter the Gist ID or URL", val, "", check
);
let id = val.value;
if (id === null)
return;
// If a URL was specified, pull out the gist id.
let gistRE = new RegExp("gist.github.com/(.*)");
let matches = id.match(gistRE);
if (matches) {
id = matches[1];
}
this.request({
path: "/gists/" + id,
err: "Could not attach to the Gist: ",
success: function(response) {
this.attached(response);
}.bind(this),
error: "Couldn't find gist."
});
},
/**
* Fork the currently-attached gist.
*/
fork: function() {
this.request({
method: "POST",
path: "/gists/" + this.attachedGist.id + "/fork",
success: function(response) {
this.attached(response);
}.bind(this),
});
},
/**
* Fetch the currently-attached gist from the server and load
* it in to the scratchpad.
*
* @param string version optional
* Optionally specifies the specific version to fetch.
*/
refresh: function(version) {
let path = "/gists/" + this.attachedGist.id;
if (version) {
path += "/" + version;
}
this.request({
method: "GET",
path: path,
success: function(response) {
this.load(response);
}.bind(this)
});
},
/**
* Post the current contents of the scratchpad as a new gist.
* Attaches to the new gist.
*
* @param boolean pub
* True to create a public gist.
* @param boolean anon
* True to create an anonymous gist.
*/
create: function(pub, anon) {
this.request({
method: "POST",
path: "/gists",
anonymous: anon,
args: {
description: null,
public: pub,
files: this.getFile()
},
success: function(response) {
this.attached(response);
}.bind(this)
});
},
/**
* Upload the contents of the scratchpad to the currently-attached gist.
*/
update: function() {
this.cursorBeforeSave = this.win.Scratchpad.editor.getCursor();
this.request({
method: "PATCH",
path: "/gists/" + this.attachedGist.id,
args: {
description: null,
files: this.getFile(),
},
success: function(response) {
this.attached(response);
this.win.Scratchpad.editor.setCursor(this.cursorBeforeSave);
this.cursorBeforeSave = null;
}.bind(this)
});
},
/**
* Return a files object for the current object, as needed by
* gist API requests.
*/
getFile: function() {
let files = {};
let filename = "scratchpad.js";
if (this.attachedFile) {
filename = this.attachedFile;
} else {
let scratchpad = this.win.Scratchpad;
if (scratchpad.filename) {
filename = scratchpad.filename;
let lastSep = Math.max(filename.lastIndexOf("/"), filename.lastIndexOf("\\"));
if (lastSep > -1) {
filename = filename.substring(lastSep + 1);
}
}
}
files[filename] = {
content: this.win.Scratchpad.getText()
};
return files;
},
/**
* Called when we've attached to a gist.
*/
attached: function(gist) {
this.attachedGist = gist;
this.addEntryToRecentFilesMenu(gist);
if (gist) {
this.attachedFile = Object.getOwnPropertyNames(gist.files)[0];
this.doc.getElementById("sp-gist-toolbar").collapsed = false;
} else {
this.win.Scratchpad.setFilename(null);
this.win.Scratchpad.dirty = true;
this.doc.getElementById("sp-gist-toolbar").collapsed = true;
}
// override the save method of scratchpad
if (this.__originalSaveFile && !gist) {
this.win.Scratchpad.saveFile = this.__originalSaveFile;
this.__originalSaveFile = null;
} else if (!this.__originalSaveFile && gist) {
this.__originalSaveFile = this.win.Scratchpad.saveFile;
this.win.Scratchpad.saveFile = () => {
this.update();
};
}
this.win.Scratchpad.dirty = false;
this.updateUI();
},
/**
* Load the contents of the given gist into the scratchpad.
*
* @param object gist
* The gist as returned by an API request.
*/
load: function(gist) {
// Try to find the currently-selected subfile.
for (let i in gist.files) {
if (gist.files[i].filename == this.attachedFile) {
this.loadFile(gist, gist.files[i]);
return;
}
}
// The attached filename was either empty or is now missing.
// Attach to the first one.
this.attachedFile = Object.getOwnPropertyNames(gist.files)[0];
this.loadFile(gist, gist.files[this.attachedFile]);
},
/**
* Load a specific file's contents from the gist.
*/
loadFile: function(gist, file) {
this.win.Scratchpad.setText(file.content);
this.win.Scratchpad.setFilename(file.filename);
this.win.Scratchpad.dirty = false;
},
/**
* Adds an entry to the scratchpad's recent file menu to open recently visited
* gists.
*/
addEntryToRecentFilesMenu: function(gist) {
if (gist) {
let files = "";
let count = 0;
for (let file in gist.files) {
files += file;
count++;
if (count > 2) {
files += " and ";
break;
} else if (count == gist.files.length - 1) {
files += " and ";
} else if (count < gist.files.length) {
files += ", ";
}
}
if (count < gist.files.length) {
files += (gist.files.length - count) + " more";
}
this.win.Scratchpad.setRecentFile({
path: "Gist: " + gist.id + " (" + files + ")"
});
let entry = this.doc.getElementById("sp-open_recent-menu")
.firstChild.firstChild;
entry.setAttribute("checked", "true");
entry.setAttribute("disabled", "true");
}
},
};
function attachWindow(win) {
if (win.Scratchpad && win.document.getElementById("scratchpad-notificationbox")) {
win.ScratchpadGist = new ScratchpadGist(win);
}
}
var WindowListener = {
onOpenWindow: function(win) {
// Wait for the window to finish loading
// XXX redefining "win" I don't even...
let win = win.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindowInternal || Ci.nsIDOMWindow);
win.addEventListener("load", function onLoad() {
win.removeEventListener("load", onLoad, false);
attachWindow(win);
}, false);
},
onCloseWindow: function(win) { },
onWindowTitleChange: function(win, title) { }
};
function startup(data, reason)
{
// Should set a type in scratchpad.
let e = Services.wm.getEnumerator("devtools:scratchpad");
while (e.hasMoreElements()) {
attachWindow(e.getNext());
}
Services.wm.addListener(WindowListener);
}
function shutdown(data, reason)
{
// Should set a type in scratchpad.
let e = Services.wm.getEnumerator("devtools:scratchpad");
while (e.hasMoreElements()) {
let win = e.getNext();
if (win.ScratchpadGist) {
win.ScratchpadGist.destroy();
delete win.ScratchpadGist;
}
let menu = win.document.getElementById("sp-gist-menu");
if (menu) {
menu.remove();
}
}
if (WindowListener) {
Services.wm.removeListener(WindowListener);
}
}
function install(data, reason) { }
function uninstall(data, reason) { }
// If running in the scratchpad, run startup manually.
if (__SCRATCHPAD__) {
startup();
}