This repository was archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.ts
458 lines (398 loc) · 12.8 KB
/
app.ts
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
import _ from 'lodash';
import { HandshakeResponse } from '../models/HandshakeBody';
import { clearCache } from '../providers/dataDonation.provider';
import { FIXED_USER_NAME, initializeKey } from './background/account';
import {
partialLocalLookup,
Response,
serverLookup,
settingsLookup,
} from './background/sendMessage';
import {
// getFilter,
WebRequestHandler,
} from './background/webRequest/filterRequest';
import db from './db';
import * as dom from './dom';
import { registerHandlers } from './handlers/index';
import { Hub } from './hub';
import log from './logger';
import HubEvent from './models/HubEvent';
import { ServerLookup } from './models/Message';
import UserSettings from './models/UserSettings';
import { addCommonPageUI } from './ui';
import { bo } from './utils/browser.utils';
// instantiate a proper logger
const appLog = log.extend('app');
export interface BaseObserverHandler {
color?: string;
handle: (
n: HTMLElement,
opts: Omit<ObserverHandler, 'handle'>,
selectorName: string,
s: UserSettings
) => void;
}
export interface SelectorObserverHandler extends BaseObserverHandler {
match: {
type: 'selector';
selector: string;
observe?: boolean;
};
}
export interface SelectorWithParentsObserverHandler
extends BaseObserverHandler {
match: {
type: 'selector-with-parents';
selector: string;
parents: number;
observe?: boolean;
};
}
export interface RouteObserverHandler extends BaseObserverHandler {
match: {
type: 'route';
location: RegExp;
};
}
export type ObserverHandler =
| SelectorObserverHandler
| SelectorWithParentsObserverHandler
| RouteObserverHandler;
interface SetupObserverOpts {
platformMatch: RegExp;
handlers: {
[key: string]: ObserverHandler;
};
onLocationChange: (oldLocation: string, newLocation: string) => void;
}
export interface BootOpts {
payload: ServerLookup['payload'];
mapLocalConfig: (
c: UserSettings,
payload: ServerLookup['payload']
) => UserSettings;
observe: SetupObserverOpts;
webRequest?: {
handlers: WebRequestHandler;
};
hub: {
hub: Hub<any>;
onRegister: (h: Hub<HubEvent>, config: UserSettings) => void;
};
onAuthenticated: (res: any) => void;
ui?: {
common: {
id?: string;
errors?: boolean;
};
};
}
/**
* refresh the identifier for the next data collected
*/
export function refreshUUID(counter: number): string {
appLog.info('refreshing feedId and cleaning size Cache');
// mandatory clear the cache otherwise sizeCheck would fail
clearCache();
return counter + '—' + Math.random() + '-' + _.random(0, 0xff);
}
let oldHref: string;
/**
* setup the mutation observer with
* given callbacks for selectors
*/
function setupObserver(
{ handlers: _handlers, platformMatch, onLocationChange }: SetupObserverOpts,
settings: UserSettings
): MutationObserver {
// group handlers by type and `ObserverHandler.observe?`
// to subscribe them to proper DOM and location changes
const handlers = Object.entries(_handlers).reduce<{
selectors: Array<
[string, SelectorObserverHandler | SelectorWithParentsObserverHandler]
>;
observableSelectors: Array<
[string, SelectorObserverHandler | SelectorWithParentsObserverHandler]
>;
routes: Array<[string, RouteObserverHandler]>;
}>(
(acc, [h, handler]) => {
const { match } = handler;
if (match.type === 'selector' || match.type === 'selector-with-parents') {
if (match.observe) {
acc.observableSelectors.push([
h,
handler as SelectorWithParentsObserverHandler,
]);
} else {
acc.selectors.push([
h,
handler as SelectorWithParentsObserverHandler,
]);
}
} else if (handler.match.type === 'route') {
acc.routes.push([h, handler as RouteObserverHandler]);
}
return acc;
},
{ selectors: [], observableSelectors: [], routes: [] }
);
// register selector and 'selector-with-parents' handlers
handlers.selectors.forEach(([h, { handle, ...handler }]) => {
appLog.debug('handler listen for mutation %O', handler);
dom.on(handler.match.selector, (node) =>
handle(node, handler, h, {
...settings,
href: window.location.toString(),
} as any)
);
});
/* and monitor href changes to randomize a new accessId */
const body = window.document.querySelector('body');
const observer = new MutationObserver(
_.debounce(
(mutations: MutationRecord[]) => {
appLog.info('mutations %O', mutations);
if (window?.document) {
if (platformMatch.test(window.location.href)) {
// always trigger handlers with `observe` equals to `true`
handlers.observableSelectors.forEach(
([h, { handle, ...handler }]) => {
// appLog.debug('Handler for mutation %s', h);
mutations.forEach((r) => {
// appLog.debug('Mutation target %s', (r.target as Element).id);
if (`#${(r.target as any).id}` === handler.match.selector) {
// appLog.debug('Target match %O', (r.target as any).id);
handle(r.target as any, handler, h, settings);
}
});
}
);
if (window.location.href !== oldHref) {
const newHref = window.location.href;
appLog.debug(
`%s changed to %s, calling onLocationChange`,
oldHref,
newHref
);
onLocationChange(oldHref, newHref);
oldHref = newHref;
}
// look for handler for the current path
const routeHandler = handlers.routes.find(([h, handler]) => {
return window.location.pathname.match(handler.match.location);
});
// invoke the route handler, if any
if (routeHandler?.[0]) {
const { handle, ...routeHandlerOpts } = routeHandler[1];
appLog.debug(
'Matched route handler key %s: %O',
routeHandler[0],
routeHandlerOpts
);
handle(window.document.body, routeHandlerOpts, routeHandler[0], {
...settings,
href: window.location.toString(),
} as any);
}
}
}
},
500,
{ trailing: true }
)
);
const observerConfig = {
// attributes: true,
childList: true,
subtree: true,
};
window.addEventListener('unload', () => {
appLog.debug('Window unloading, disconnect the observer...');
observer?.disconnect();
// TODO: maybe destroy the app?
// app?.destroy();
});
if (body) {
observer.observe(body, observerConfig);
} else {
appLog.error('setupObserver: body not found');
}
return observer;
}
/* Boot the application by giving a callback that
* will be invoked after the handshake with API server.
**/
export interface App {
config: UserSettings;
reload: (c: UserSettings) => void;
destroy: () => void;
}
/**
* Transform functions that send messages to background
* to promises for better code flow.
*/
const jsonSettingsP = (): Promise<Response<Partial<UserSettings>>> =>
new Promise((resolve) => settingsLookup(resolve));
const partialLocalLookupP = (): Promise<Response<Partial<UserSettings>>> =>
new Promise((resolve) => partialLocalLookup(resolve));
const serverHandshakeP = (
p: ServerLookup['payload']
): Promise<Response<HandshakeResponse>> =>
new Promise((resolve) => serverLookup(p, resolve));
let loading = false;
let app: App | undefined;
let config: any;
export async function boot(opts: BootOpts): Promise<App> {
if (app) {
appLog.debug('App already booted!');
return app;
}
if (loading) {
appLog.debug('boot in progress...');
return Promise.resolve({
config: {} as any,
reload: () => {},
destroy: () => {},
});
}
loading = true;
appLog.info('booting with config', opts.payload);
// connect to a port to listen for `config` changes dispatched from background
const configUpdatePort = bo.runtime.connect({ name: 'ConfigUpdate' });
// listen on "ConfigUpdate" port for messages
configUpdatePort.onMessage.addListener(function (message, sender) {
appLog.debug('Received message on "ConfigUpdate" port %O', message);
if (message.type === 'ReloadApp') {
app?.reload(message.payload);
return true;
}
return false;
});
// Register all common event handlers.
// An event handler is a piece of code responsible for a specific task.
// You can learn more in the [`./handlers`](./handlers/index.html) directory.
registerHandlers(opts.hub.hub);
// load settings from json file
const jsonSettings = await jsonSettingsP();
if (jsonSettings.type === 'Error') {
appLog.error('Json settings error %O', jsonSettings.error);
throw jsonSettings.error;
}
// `response` contains the user's public key, we save it global for the blinks
appLog.info(
'retrieved settings from json file (settings.json) %O',
jsonSettings
);
// Lookup the current user and initialize keys only when not defined in json settings
const localSettings = await partialLocalLookupP();
if (localSettings.type === 'Error') {
throw localSettings.error;
}
// merge settings taken from db with ones defined in settings.json, giving the precedence to the latter
const settings: UserSettings = {
...jsonSettings.result,
...localSettings.result,
} as any;
if (!settings.publicKey || !settings.secretKey) {
const keys = initializeKey();
appLog.info('Settings misses key pair, creating new one: %O', keys);
settings.publicKey = keys.publicKey;
settings.secretKey = keys.secretKey;
}
// save settings in db, so they're properly retrieved on the next bootstrap
await db.set(FIXED_USER_NAME, settings);
if (!settings.active) {
appLog.info('extension disabled!');
app = {
config: settings,
reload: (c) => {
appLog.debug('inactive section needs reload', c);
app = undefined;
loading = false;
void boot(opts);
},
destroy: () => {
configUpdatePort.disconnect();
opts.hub.hub.clear();
},
};
loading = false;
return app;
}
// merge the json and db settings with per-extension defined payload
config = opts.mapLocalConfig(settings, opts.payload);
// ATTENTION
// this is needed by guardoni to retrieve the current publicKey
// TODO: we may want to remove it since guardoni is now responsible to provide a proper publicKey to the extension
// eslint-disable-next-line
console.log(JSON.stringify({ response: config }));
appLog.info('Updated config %O', config);
// register platform specific event handlers
opts.hub.onRegister(opts.hub.hub, config);
// enable the ui
addCommonPageUI(
opts.ui?.common.id ?? 'trex-extension-common-ui',
opts.hub.hub,
{ errors: true }
);
// emergency button should be used when a supported with
// UX hack in place didn't see any UX change, so they
// can report the problem and we can handle it.
// initializeEmergencyButton();
// because the URL has been for sure reloaded, be sure to
// clear cache too
clearCache();
// if (opts.webRequest && bo.webRequest) {
// bo.webRequest.onBeforeRequest.addListener(
// (d) => {
// Object.entries(opts.webRequest?.handlers ?? []).forEach(
// ([key, handler]) => {
// getFilter(d, handler);
// }
// );
// },
// { urls: ['https://*/*'], types: ['main_frame', 'xmlhttprequest'] },
// ['blocking']
// );
// }
// send the configuration to the server to register the extension
const handshakeResponse = await serverHandshakeP(config);
appLog.info('Server lookup cb %O', handshakeResponse);
let observer: MutationObserver | undefined;
if (handshakeResponse.type === 'Error') {
opts.hub.hub.dispatch({
type: 'ErrorEvent',
payload: handshakeResponse.error,
});
// throw handshakeResponse.error;
} else {
// invoke callback for successful authentication
opts.onAuthenticated(handshakeResponse.result);
// setup the dom mutation observer
observer = setupObserver(opts.observe, config);
}
// define the app context to return
app = {
config,
reload: (c) => {
appLog.debug('Reloading app with config %O', c);
observer?.disconnect();
opts.hub.hub.dispatch({
type: 'WindowUnload',
});
opts.hub.hub.clear();
opts.hub.onRegister(opts.hub.hub, c);
observer = undefined as any;
observer = setupObserver(opts.observe, c);
},
destroy: () => {
observer?.disconnect();
opts.hub.hub.clear();
app = undefined;
},
};
loading = false;
return app;
}