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
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview This file contains the implementation of the Chrome extension
* tab APIs for the CEEE Firefox add-on. This file is loaded by the
* overlay.xul file, and requires that overlay.js has already been loaded.
*
* @supported Firefox 3.x
*/
/**
* Place-holder namespace-object for helper functions used in this file.
* @private
*/
var CEEE_tabs_internal_ = CEEE_tabs_internal_ || {
/** Reference to the instance object for the CEEE. @private */
ceeeInstance_: null
};
/**
* Routine initializaing the tabs module during onLoad message from the
* browser.
* @public
*/
CEEE_tabs_internal_.onLoad = function() {
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var tabContainer = mainBrowser.tabContainer;
var tabs = this;
tabContainer.addEventListener('TabOpen',
function(evt) {tabs.onTabOpened_(evt);},
false);
tabContainer.addEventListener('TabMove',
function(evt) {tabs.onTabMoved_(evt);},
false);
tabContainer.addEventListener('TabSelect',
function(evt) {tabs.onTabSelected_(evt);},
false);
tabContainer.addEventListener('TabClose',
function(evt) {tabs.onTabClosed_(evt);},
false);
};
/**
* Build an object that represents a "tab", as defined by the Google Chrome
* extension API. For newly created tabs, the optional URL parameter needs to
* be specified since some part of tab creation are asynchronous. Note also
* that the title property of the returned "tab" may be '' for newly created
* tabs too.
*
* @param {!Object} mainBrowser Firefox's main tabbed browser.
* @param {!Object} tab The Firefox tab from which to build the description.
* @param {string} url_opt Optional string contain URL. IF not specified, the
* URL is taken from the tab's associated browser.
* @return A tab description as defined by Google Chrome extension API.
*/
CEEE_tabs_internal_.buildTabValue = function(mainBrowser, tab, url_opt) {
var browser = mainBrowser.getBrowserForTab(tab);
var container = mainBrowser.tabContainer;
var index = container.getIndexOfItem(tab);
var ret = {};
ret.id = CEEE_mozilla_tabs.getTabId(tab);
ret.index = index;
ret.windowId = CEEE_mozilla_windows.getWindowId(window);
ret.selected = (tab == mainBrowser.selectedTab);
ret.pinned = false;
ret.url = url_opt || browser.currentURI.asciiSpec;
ret.title = browser.contentTitle;
ret.incognito = CEEE_globals.privateBrowsingService.isInPrivateBrowsing;
return ret;
};
/**
* Called when a new tab is created in this top-level window.
*
* @param evt DOM event object.
* @private
*/
CEEE_tabs_internal_.onTabOpened_ = function(evt) {
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var container = mainBrowser.tabContainer;
var browser = evt.target && evt.target.linkedBrowser;
if (!mainBrowser || !container || !browser)
return;
// Build a tab info object that corresponds to the new tab.
var index = mainBrowser.getBrowserIndexForDocument(browser.contentDocument);
var tab = container.getItemAtIndex(index);
var info = [this.buildTabValue(mainBrowser, tab)];
// Send the event notification to ChromeFrame.
var msg = ['tabs.onCreated', CEEE_json.encode(info)];
this.ceeeInstance_.getCfHelper().postMessage(
CEEE_json.encode(msg),
this.ceeeInstance_.getCfHelper().TARGET_EVENT_REQUEST);
};
/**
* Called when a tab is moved in this top-level window.
*
* @param evt DOM event object.
* @private
*/
CEEE_tabs_internal_.onTabMoved_ = function(evt) {
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var container = mainBrowser.tabContainer;
var browser = evt.target && evt.target.linkedBrowser;
if (!mainBrowser || !container || !browser)
return;
// Build info corresponding to moved tab.
//
// Through experimentation, I've discovered that the detail property of the
// evt object contains the old index of the tab. This was discovered with
// Firefox 3.0.11. According to the docs at
// https://developer.mozilla.org/en/DOM/event.detail, this property
// specifies extra details about the event, and its value is event-specific.
var oldIndex = evt.detail;
var index = mainBrowser.getBrowserIndexForDocument(browser.contentDocument);
if (oldIndex == index)
return;
var tab = container.getItemAtIndex(index);
var info = [CEEE_mozilla_tabs.getTabId(tab), {
windowId: CEEE_mozilla_windows.getWindowId(window),
fromIndex: oldIndex,
toIndex: index
}];
// Send the event notification to ChromeFrame.
var msg = ['tabs.onMoved', CEEE_json.encode(info)];
this.ceeeInstance_.getCfHelper().postMessage(
CEEE_json.encode(msg),
this.ceeeInstance_.getCfHelper().TARGET_EVENT_REQUEST);
};
/**
* Called when a tab is selected.
*
* @param evt DOM event object.
* @private
*/
CEEE_tabs_internal_.onTabSelected_ = function(evt) {
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var container = mainBrowser.tabContainer;
var browser = evt.target && evt.target.linkedBrowser;
if (!mainBrowser || !container || !browser)
return;
// Build info corresponding to selected tab.
var index = mainBrowser.getBrowserIndexForDocument(browser.contentDocument);
var tab = container.getItemAtIndex(index);
var info = [CEEE_mozilla_tabs.getTabId(tab),
{windowId: CEEE_mozilla_windows.getWindowId(window)}];
// Send the event notification to ChromeFrame.
var msg = ['tabs.onSelectionChanged', CEEE_json.encode(info)];
this.ceeeInstance_.getCfHelper().postMessage(
CEEE_json.encode(msg),
this.ceeeInstance_.getCfHelper().TARGET_EVENT_REQUEST);
};
/**
* Called when a tab is closed in this top-level window.
*
* @param evt DOM event object.
* @private
*/
CEEE_tabs_internal_.onTabClosed_ = function(evt) {
// This function is called *before* the tab is actually removed from the
// tab container. Therefore, we can call methods like
// getBrowserIndexForDocument() and still expect them to find the tab that
// has been closed.
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var container = mainBrowser.tabContainer;
var browser = evt.target && evt.target.linkedBrowser;
if (!mainBrowser || !container || !browser)
return;
// Send the event notification to ChromeFrame.
var index = mainBrowser.getBrowserIndexForDocument(browser.contentDocument);
var tab = container.getItemAtIndex(index);
var info = [CEEE_mozilla_tabs.getTabId(tab)];
var msg = ['tabs.onRemoved', CEEE_json.encode(info)];
this.ceeeInstance_.getCfHelper().postMessage(
CEEE_json.encode(msg),
this.ceeeInstance_.getCfHelper().TARGET_EVENT_REQUEST);
};
/**
* Send a status change notification to the extension.
*
* @param doc The content document object for the tab.
* @param status New status of the tab.
* @public
*/
CEEE_tabs_internal_.onTabStatusChanged = function(doc, status) {
var mainBrowser = document.getElementById(CEEE_globals.MAIN_BROWSER_ID);
var container = mainBrowser.tabContainer;
if (!mainBrowser || !container)
return;
// Build a tab info object that corresponds to the new status. If we can't
// find the document, then this means its an embedded frame. We don't want
// to generate a status change in this case anyway.
var index = mainBrowser.getBrowserIndexForDocument(doc);
if (-1 == index)
return;
var tab = container.getItemAtIndex(index);
var info = [CEEE_mozilla_tabs.getTabId(tab),
{status: status},
this.buildTabValue(mainBrowser, tab)
];
// Send the event notification to ChromeFrame.
var msg = ['tabs.onUpdated', CEEE_json.encode(info)];
this.ceeeInstance_.getCfHelper().postMessage(
CEEE_json.encode(msg),
this.ceeeInstance_.getCfHelper().TARGET_EVENT_REQUEST);
};
CEEE_tabs_internal_.CMD_GET_TAB = 'tabs.get';
CEEE_tabs_internal_.getTab_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var r = CEEE_mozilla_tabs.findTab(id);
if (!r) {
throw(new Error(CEEE_tabs_internal_.CMD_GET_TAB +
': invalid tab id=' + id));
}
return this.buildTabValue(r.tabBrowser, r.tab);
};
CEEE_tabs_internal_.CMD_GET_SELECTED_TAB = 'tabs.getSelected';
CEEE_tabs_internal_.getSelectedTab_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var win = CEEE_mozilla_windows.findWindow(id);
if (!win) {
throw(new Error(CEEE_tabs_internal_.CMD_GET_SELECTED_TAB +
': invalid window id=' + id));
}
var mainBrowser = win.document.getElementById(
CEEE_globals.MAIN_BROWSER_ID);
if (!mainBrowser) {
throw(new Error(CEEE_tabs_internal_.CMD_GET_SELECTED_TAB +
': cannot find main browser win id=' + id));
}
var tab = mainBrowser.selectedTab;
return this.buildTabValue(mainBrowser, tab);
};
CEEE_tabs_internal_.CMD_GET_ALL_TABS_IN_WINDOW = 'tabs.getAllInWindow';
CEEE_tabs_internal_.getAllTabsInWindow_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var win = CEEE_mozilla_windows.findWindow(id);
if (!win || !win.document) {
throw(new Error(CEEE_tabs_internal_.CMD_GET_ALL_TABS_IN_WINDOW +
': invalid window id=' + id));
}
var mainBrowser = win.document.getElementById(
CEEE_globals.MAIN_BROWSER_ID);
if (!mainBrowser) {
throw(new Error(CEEE_tabs_internal_.CMD_GET_ALL_TABS_IN_WINDOW +
': cannot find main browser win id=' + id));
}
var ret = [];
var tabs = mainBrowser.tabContainer;
var count = tabs.itemCount;
var selectedTab = mainBrowser.selectedTab;
for (var i = 0; i < count; ++i) {
var tab = tabs.getItemAtIndex(i);
var t = this.buildTabValue(mainBrowser, tab);
ret.push(t);
}
return ret;
};
CEEE_tabs_internal_.CMD_CREATE_TAB = 'tabs.create';
CEEE_tabs_internal_.createTab_ = function(cmd, data) {
var args_list = CEEE_json.decode(data.args);
var args = args_list[0];
var win = CEEE_mozilla_windows.findWindow(args.windowId);
if (!win) {
throw(new Error(CEEE_tabs_internal_.CMD_CREATE_TAB +
': invalid window id=' + args.windowId));
}
var mainBrowser = win.document.getElementById(
CEEE_globals.MAIN_BROWSER_ID);
if (!mainBrowser) {
throw(new Error(CEEE_tabs_internal_.CMD_CREATE_TAB +
': cannot find main browser win id=' + args.windowId));
}
var tab = mainBrowser.addTab(args.url);
if (args.index)
mainBrowser.moveTabTo(tab, args.index);
if (!('selected' in args) || args.selected)
mainBrowser.selectedTab = tab;
return this.buildTabValue(mainBrowser, tab, args.url);
};
CEEE_tabs_internal_.CMD_UPDATE_TAB = 'tabs.update';
CEEE_tabs_internal_.updateTab_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var t = CEEE_mozilla_tabs.findTab(id);
if (!t) {
throw(new Error(CEEE_tabs_internal_.CMD_UPDATE_TAB +
': invalid tab id=' + id));
}
var info = args[1];
if (info && info.url)
t.tabBrowser.getBrowserForTab(t.tab).loadURI(info.url);
if (info && info.selected)
t.tabBrowser.selectedTab = t.tab;
return this.buildTabValue(t.tabBrowser, t.tab, info.url);
};
CEEE_tabs_internal_.CMD_MOVE_TAB = 'tabs.move';
CEEE_tabs_internal_.moveTab_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var t = CEEE_mozilla_tabs.findTab(id);
if (!t) {
throw(new Error(CEEE_tabs_internal_.CMD_MOVE_TAB +
': invalid tab id=' + id));
}
var newIndex = args[1].index;
var oldIndex = t.index;
if (oldIndex != newIndex)
t.tabBrowser.moveTabTo(t.tab, newIndex);
return this.buildTabValue(t.tabBrowser, t.tab);
};
CEEE_tabs_internal_.CMD_REMOVE_TAB = 'tabs.remove';
CEEE_tabs_internal_.removeTab_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var r = CEEE_mozilla_tabs.findTab(id);
if (!r) {
throw(new Error(CEEE_tabs_internal_.CMD_REMOVE_TAB +
': invalid tab id=' + id));
}
r.tabBrowser.removeTab(r.tab);
};
CEEE_tabs_internal_.CMD_EXECUTE_SCRIPT = 'tabs.executeScript';
CEEE_tabs_internal_.executeScript_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var scriptDef = args[1];
var t;
if (id) {
t = CEEE_mozilla_tabs.findTab(id);
if (!t) {
throw(new Error(CEEE_tabs_internal_.CMD_EXECUTE_SCRIPT +
': invalid tab id=' + id));
}
} else {
var win = CEEE_mozilla_windows.findWindow(null);
if (!win) {
throw(new Error(CEEE_tabs_internal_.CMD_EXECUTE_SCRIPT +
': no window'));
}
var mainBrowser = win.document.getElementById(
CEEE_globals.MAIN_BROWSER_ID);
if (!mainBrowser) {
throw(new Error(CEEE_tabs_internal_.CMD_EXECUTE_SCRIPT +
': cannot find main browser'));
}
t = {
'tab': mainBrowser.selectedTab,
'tabBrowser': mainBrowser
};
}
var w = t.tabBrowser.getBrowserForTab(t.tab).contentWindow;
return this.ceeeInstance_.getUserScriptsModule().executeScript(w, scriptDef);
};
CEEE_tabs_internal_.CMD_INSERT_CSS = 'tabs.insertCSS';
CEEE_tabs_internal_.insertCss_ = function(cmd, data) {
var args = CEEE_json.decode(data.args);
var id = args[0];
var details = args[1];
var t;
if (id) {
t = CEEE_mozilla_tabs.findTab(id);
if (!t) {
throw new Error(CEEE_tabs_internal_.CMD_INSERT_CSS +
': invalid tab id=' + id);
}
} else {
var win = CEEE_mozilla_windows.findWindow(null);
if (!win) {
throw new Error(CEEE_tabs_internal_.CMD_INSERT_CSS + ': no window');
}
var mainBrowser = win.document.getElementById(
CEEE_globals.MAIN_BROWSER_ID);
if (!mainBrowser) {
throw new Error(CEEE_tabs_internal_.CMD_INSERT_CSS +
': cannot find main browser');
}
t = {
tab: mainBrowser.selectedTab,
tabBrowser: mainBrowser
};
}
var w = t.tabBrowser.getBrowserForTab(t.tab).contentWindow;
return this.ceeeInstance_.getUserScriptsModule().insertCss(w, details);
};
/**
* Initialization routine for the CEEE tabs API module.
* @param {!Object} ceeeInstance Reference to the global ceee instance.
* @return {Object} Reference to the tabs module.
* @public
*/
function CEEE_initialize_tabs(ceeeInstance) {
CEEE_tabs_internal_.ceeeInstance_ = ceeeInstance;
var tabs = CEEE_tabs_internal_;
ceeeInstance.registerExtensionHandler(tabs.CMD_GET_TAB,
tabs,
tabs.getTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_GET_SELECTED_TAB,
tabs,
tabs.getSelectedTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_GET_ALL_TABS_IN_WINDOW,
tabs,
tabs.getAllTabsInWindow_);
ceeeInstance.registerExtensionHandler(tabs.CMD_CREATE_TAB,
tabs,
tabs.createTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_UPDATE_TAB,
tabs,
tabs.updateTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_MOVE_TAB,
tabs,
tabs.moveTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_REMOVE_TAB,
tabs,
tabs.removeTab_);
ceeeInstance.registerExtensionHandler(tabs.CMD_EXECUTE_SCRIPT,
tabs,
tabs.executeScript_);
ceeeInstance.registerExtensionHandler(tabs.CMD_INSERT_CSS,
tabs,
tabs.insertCss_);
return tabs;
}
|