]>
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 | ); | |
75 | } else { | |
76 | internals.getRoot().tabs.connect(activeTabs[0].id) | |
77 | } | |
02071d8e RBR |
78 | |
79 | if (execution && !execution[0]) { | |
80 | internals.onDisconnect(); | |
81 | } | |
b9a2baf2 | 82 | }, |
4757c461 | 83 | hangUp() { |
4757c461 RBR |
84 | internals.getRoot().browserAction.disable(); |
85 | internals.port.postMessage({ | |
b9a2baf2 | 86 | action: "hangUp", |
4757c461 | 87 | }); |
1ed219c8 RBR |
88 | }, |
89 | ||
90 | isInCall() { | |
b9a2baf2 | 91 | return !!internals.port; |
1ed219c8 RBR |
92 | }, |
93 | ||
94 | setIcon(iconSet) { | |
a94a5407 | 95 | internals.getRoot().browserAction.setIcon({ |
b9a2baf2 | 96 | path: internals.icons[iconSet], |
1ed219c8 | 97 | }); |
a94a5407 RBR |
98 | }, |
99 | ||
100 | getRoot() { | |
a94a5407 RBR |
101 | return window.browser || window.chrome; |
102 | }, | |
103 | ||
104 | // Chrome doesn't yet implement the promise based tabs.query :'( | |
105 | ||
106 | getActiveTabs() { | |
a94a5407 RBR |
107 | const query = { |
108 | currentWindow: true, | |
b9a2baf2 | 109 | active: true, |
a94a5407 RBR |
110 | }; |
111 | ||
112 | if (internals.promisesSupported) { | |
113 | return internals.getRoot().tabs.query(query); | |
114 | } | |
115 | ||
80172072 | 116 | return new Promise((resolve) => { |
a94a5407 | 117 | internals.getRoot().tabs.query(query, (tabs) => { |
a94a5407 RBR |
118 | return resolve(tabs); |
119 | }); | |
120 | }); | |
121 | }, | |
1ed219c8 RBR |
122 | }; |
123 | ||
a94a5407 | 124 | internals.getRoot().browserAction.onClicked.addListener(internals.onClick); |
4757c461 | 125 | internals.getRoot().runtime.onConnect.addListener(internals.onConnect); |