-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
content_script.js
398 lines (345 loc) · 8.44 KB
/
content_script.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
"use strict";
// communication type
const POPUP = "popup";
const CONTENT = "content";
const NOTIFICATION = "notification";
const START = "start";
const STOP = "stop";
const TITLE = "Colab Autorun and Connect";
const label = TITLE;
const MAX = 10;
const dateTimeFormat = new Intl.DateTimeFormat([], { weekday: "long", year: "numeric", month: "long", day: "numeric", hour: "numeric", minute: "numeric", second: "numeric" });
// Automatically run the first cell
let RUN = false;
// Seconds to retry
let seconds = 60;
// Delay in seconds
let delay = 30;
// Seconds to wait
let wait = 10;
// Dismiss the reCAPTCHA popups
let CAPTCHA = true;
let enabled = true;
let running = false;
let captcha = false;
let time = null;
let now = 0;
let timeoutID = null;
let intervalID = null;
/**
* Send data to popup.
*
* @returns {void}
*/
function send() {
const response = {
type: POPUP,
RUN,
enabled,
running,
time
};
// console.log(response);
browser.runtime.sendMessage(response);
}
/**
* Create notification.
*
* @param {string} title
* @param {string} message
* @param {number} [date]
* @returns {void}
*/
function notification(title, message, date) {
const response = {
type: NOTIFICATION,
title,
message: `${message}\n\nClick to view.`,
eventTime: date
};
// console.log(response);
browser.runtime.sendMessage(response);
}
/**
* Output date.
*
* @param {number} date
* @returns {string}
*/
function outputdate(date) {
return dateTimeFormat.format(new Date(date));
}
/**
* Click button by selector.
*
* @param {HTMLElement} button
* @param {string} selector
* @param {string} text
* @returns {void}
*/
function click(button, selector, text) {
for (let i = 0; i < MAX && button; ++i) {
button.click();
button = document.querySelector(selector);
}
if (button) {
console.error(`Error: ${text} button clicked ${MAX} times, but popup did not close.`);
}
}
/**
* Check if connected.
*
* @returns {void}
*/
function connected() {
const button = document.querySelector("md-text-button[slot=primaryAction]");
const title = document.title.slice(0, Math.max(0, document.title.lastIndexOf(" - ")));
if (button) {
const text = button.innerText.toLowerCase();
if (text.includes("connect") || text.includes("without") || text.includes("manage")) {
console.log(`Unable to connect${text.includes("without") ? " with selected runtime" : ""}, will retry in ${seconds} seconds`);
const abutton = document.querySelector("md-text-button[slot=secondaryAction]");
// console.log(button, abutton);
if (abutton) {
console.debug("Clicking button:", abutton.innerText, "Not clicking button:", button.innerText);
click(abutton, "md-text-button[slot=secondaryAction]", "Cancel");
} else {
console.error("Error: Cannot find cancel button");
}
} else {
console.log(`Unable to connect, will retry in ${seconds} seconds`);
// console.log(button);
console.debug("Clicking button:", button.innerText);
click(button, "ok", "OK");
}
if (running) {
notification(`⏹️ Notebook has ${RUN ? "stopped" : "disconnected"}`, `The “${title}” notebook has been ${RUN ? "stopped" : "disconnected"} and we are unable to reconnect. It is likely over the usage limits. It had been ${RUN ? "running" : "connected"} since ${outputdate(time)}`, now);
running = false;
time = now;
}
} else {
if (running) {
notification("🔁 Notebook has reconnected", `The “${title}” notebook has been reconnected! It had been ${RUN ? "running" : "connected"} since ${outputdate(time)}`, now);
} else {
notification(`▶️ Notebook is ${RUN ? "running" : "connected"}`, `The “${title}” notebook is ${RUN ? "running" : "connected"}!${time ? ` It had been ${RUN ? "stopped" : "disconnected"} since ${outputdate(time)}` : ""}`, now);
running = true;
}
time = now;
}
send();
console.timeEnd(label);
}
/**
* Check for popups.
*
* @returns {void}
*/
function check() {
let button = document.querySelector("md-text-button[slot=primaryAction]");
if (button) {
const abutton = document.querySelector("md-text-button[slot=secondaryAction]");
if (abutton) {
// console.log(button, abutton);
console.warn("Warning: Cancel button found. Clicking button:", abutton.innerText, "Not clicking button:", button.innerText);
click(abutton, "md-text-button[slot=secondaryAction]", "Cancel");
} else {
console.warn("Warning: OK button found. Clicking button:", button.innerText);
click(button, "ok", "OK");
}
}
button = document.querySelector("colab-recaptcha-dialog");
if (CAPTCHA) {
if (button) {
button = button.shadowRoot.querySelector("md-text-button").shadowRoot.getElementById("button");
console.warn("Warning: Cancel button found. Clicking button:", button.innerText);
button.click();
}
} else {
const title = document.title.slice(0, Math.max(0, document.title.lastIndexOf(" - ")));
if (button) {
if (!captcha) {
captcha = true;
notification("❗ Colab reCAPTCHA popup needs attention", `A Colab reCAPTCHA popup needs attention on the “${title}” notebook.`);
}
} else {
captcha &&= false;
}
}
}
/**
* Run the first cell.
*
* @returns {void}
*/
function run() {
check();
const button = document.querySelector("colab-run-button");
if (button) {
if (button.shadowRoot.getElementById("stopSymbolMask")) {
console.log(`Notebook already running, will recheck in ${seconds} seconds`);
// running = true;
} else { // button.shadowRoot.getElementById("playSymbolMask")
// console.log(button);
console.time(label);
console.log("Connecting and running first cell");
console.debug("Clicking button:", button.title);
button.click();
now = Date.now();
setTimeout(connected, wait * 1000);
}
} else {
console.error("Error: Cannot find run button");
}
}
/**
* Connect.
*
* @returns {void}
*/
function connect() {
check();
const button = document.querySelector("colab-connect-button");
if (button) {
const abutton = button.shadowRoot.getElementById("connect");
if (abutton.innerText.toLowerCase().includes("connect")) {
// console.log(button);
console.time(label);
console.log("Connecting");
console.debug("Clicking button:", abutton.innerText);
abutton.click();
now = Date.now();
setTimeout(connected, wait * 1000);
} else {
console.log(`Notebook already connected, will recheck in ${seconds} seconds`);
// running = true;
}
} else {
console.error("Error: Cannot find connect button");
}
}
/**
* Stop retrying.
*
* @returns {void}
*/
function astop() {
if (timeoutID) {
clearTimeout(timeoutID);
timeoutID = null;
}
if (intervalID) {
clearInterval(intervalID);
intervalID = null;
}
}
/**
* Stop retrying.
* Called by the popup.
*
* @returns {void}
*/
function stop() {
if (enabled) {
astop();
enabled = running = false;
time = null;
console.log(`${TITLE} stopped`);
} else {
console.error(`Error: ${TITLE} already stopped.`);
}
}
/**
* Start.
*
* @returns {void}
*/
function astart() {
timeoutID = null;
if (!intervalID) {
if (RUN) {
run();
intervalID = setInterval(run, seconds * 1000);
} else {
connect();
intervalID = setInterval(connect, seconds * 1000);
}
}
}
/**
* Start.
* Called by the popup.
*
* @returns {void}
*/
function start() {
if (enabled) {
console.error(`Error: ${TITLE} already started.`);
} else {
enabled = true;
console.log(`${TITLE} started`);
astart();
}
}
/**
* Handle error.
*
* @param {string} error
* @returns {void}
*/
function handleError(error) {
console.error(`Error: ${error}`);
}
browser.runtime.sendMessage({ type: CONTENT }).then((message) => {
if (message.type === CONTENT) {
({
RUN,
seconds,
wait,
delay,
CAPTCHA
} = message);
// console.log(message);
timeoutID = setTimeout(astart, delay * 1000);
}
}, handleError);
browser.runtime.onMessage.addListener((message, _sender) => {
switch (message.type) {
case CONTENT:
({
RUN,
seconds,
wait,
delay,
CAPTCHA
} = message);
// console.log(message);
if (enabled) {
astop();
timeoutID = setTimeout(astart, delay * 1000);
}
break;
case POPUP:
send();
break;
case START:
start();
break;
case STOP:
stop();
break;
// No default
}
});
addEventListener("offline", (/* e */) => {
console.log("Offline");
if (enabled) {
astop();
}
});
addEventListener("online", (/* e */) => {
console.log("Online");
if (enabled) {
timeoutID = setTimeout(astart, delay * 1000);
}
});
console.log(`${TITLE} loaded`);