]>
Commit | Line | Data |
---|---|---|
1ed219c8 | 1 | const internals = { |
b9a2baf2 | 2 | promisesSupported: !!window.browser, |
5685e249 | 3 | injectedScript: false, |
4757c461 | 4 | port: null, |
02071d8e | 5 | currentUrl: null, |
1ed219c8 RBR |
6 | |
7 | icons: { | |
8 | call: { | |
b9a2baf2 RBR |
9 | 16: "icons/action-16.png", |
10 | 32: "icons/action-32.png", | |
1ed219c8 RBR |
11 | }, |
12 | ||
13 | hangUp: { | |
b9a2baf2 RBR |
14 | 16: "icons/hang_up-16.png", |
15 | 32: "icons/hang_up-32.png", | |
16 | }, | |
1ed219c8 RBR |
17 | }, |
18 | ||
19 | onClick() { | |
20 | if (internals.isInCall()) { | |
21 | return internals.hangUp(); | |
22 | } | |
23 | ||
5685e249 | 24 | return internals.initializeContentScript(); |
1ed219c8 RBR |
25 | }, |
26 | ||
5685e249 RBR |
27 | joinAudioCall() { |
28 | internals.port.postMessage({ | |
b9a2baf2 | 29 | action: "joinAudioCall", |
4757c461 | 30 | data: { |
02071d8e | 31 | currentUrl: internals.currentUrl, |
b9a2baf2 RBR |
32 | tada: internals.getRoot().runtime.getURL("sounds/tada.wav"), |
33 | }, | |
4757c461 RBR |
34 | }); |
35 | internals.getRoot().browserAction.enable(); | |
b9a2baf2 | 36 | internals.setIcon("hangUp"); |
1ed219c8 RBR |
37 | }, |
38 | ||
5685e249 RBR |
39 | onConnect(port) { |
40 | internals.port = port; | |
41 | port.onDisconnect.addListener(internals.onDisconnect); | |
42 | port.onMessage.addListener(internals.onMessage); | |
43 | internals.joinAudioCall(); | |
44 | }, | |
45 | ||
4757c461 | 46 | onMessage(message) { |
b9a2baf2 RBR |
47 | if (message.action === "error") { |
48 | internals.getRoot().browserAction.setBadgeText({ text: "x" }, () => {}); | |
4757c461 RBR |
49 | } |
50 | }, | |
51 | ||
52 | onDisconnect() { | |
b9a2baf2 RBR |
53 | internals.getRoot().browserAction.setBadgeText({ text: "" }, () => {}); |
54 | internals.setIcon("call"); | |
02071d8e | 55 | internals.currentUrl = null; |
4757c461 RBR |
56 | internals.port = null; |
57 | internals.getRoot().browserAction.enable(); | |
1ed219c8 RBR |
58 | }, |
59 | ||
5685e249 | 60 | async initializeContentScript() { |
4757c461 RBR |
61 | internals.getRoot().browserAction.disable(); |
62 | const activeTabs = await internals.getActiveTabs(); | |
4757c461 | 63 | |
02071d8e | 64 | internals.currentUrl = activeTabs[0].url; |
5685e249 RBR |
65 | if (!internals.injectedScript) { |
66 | const execution = await internals.getRoot().tabs.executeScript( | |
67 | activeTabs[0].id, | |
68 | { | |
69 | file: "/build/content_script.js", | |
70 | }, | |
71 | () => { | |
72 | internals.injectedScript = true; | |
73 | }, | |
74 | ); | |
02071d8e | 75 | |
bab26a4d RBR |
76 | if (execution && !execution[0]) { |
77 | internals.onDisconnect(); | |
78 | } | |
79 | } else { | |
80 | internals.getRoot().tabs.connect(activeTabs[0].id); | |
02071d8e | 81 | } |
b9a2baf2 | 82 | }, |
bab26a4d | 83 | |
4757c461 | 84 | hangUp() { |
4757c461 RBR |
85 | internals.getRoot().browserAction.disable(); |
86 | internals.port.postMessage({ | |
b9a2baf2 | 87 | action: "hangUp", |
4757c461 | 88 | }); |
1ed219c8 RBR |
89 | }, |
90 | ||
91 | isInCall() { | |
b9a2baf2 | 92 | return !!internals.port; |
1ed219c8 RBR |
93 | }, |
94 | ||
95 | setIcon(iconSet) { | |
a94a5407 | 96 | internals.getRoot().browserAction.setIcon({ |
b9a2baf2 | 97 | path: internals.icons[iconSet], |
1ed219c8 | 98 | }); |
a94a5407 RBR |
99 | }, |
100 | ||
101 | getRoot() { | |
a94a5407 RBR |
102 | return window.browser || window.chrome; |
103 | }, | |
104 | ||
105 | // Chrome doesn't yet implement the promise based tabs.query :'( | |
106 | ||
107 | getActiveTabs() { | |
a94a5407 RBR |
108 | const query = { |
109 | currentWindow: true, | |
b9a2baf2 | 110 | active: true, |
a94a5407 RBR |
111 | }; |
112 | ||
113 | if (internals.promisesSupported) { | |
114 | return internals.getRoot().tabs.query(query); | |
115 | } | |
116 | ||
80172072 | 117 | return new Promise((resolve) => { |
a94a5407 | 118 | internals.getRoot().tabs.query(query, (tabs) => { |
a94a5407 RBR |
119 | return resolve(tabs); |
120 | }); | |
121 | }); | |
122 | }, | |
1ed219c8 RBR |
123 | }; |
124 | ||
a94a5407 | 125 | internals.getRoot().browserAction.onClicked.addListener(internals.onClick); |
4757c461 | 126 | internals.getRoot().runtime.onConnect.addListener(internals.onConnect); |