-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathchat-background.ts
More file actions
468 lines (420 loc) · 13.3 KB
/
chat-background.ts
File metadata and controls
468 lines (420 loc) · 13.3 KB
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
import type { Unsubscriber } from '../ts/queue';
import { ytcQueue } from '../ts/queue';
import { isValidFrameInfo } from '../ts/chat-utils';
import { isLiveTL } from '../ts/chat-constants';
const interceptors: Chat.Interceptors[] = [];
const isYtcInterceptor = (i: Chat.Interceptors): i is Chat.YtcInterceptor =>
i.source === 'ytc';
const getPortFrameInfo = (port: Chat.Port): Chat.UncheckedFrameInfo => {
return {
tabId: port.sender?.tab?.id,
frameId: port.sender?.frameId
};
};
/**
* Returns true if both FrameInfos are the same frame.
*/
const compareFrameInfo = (a: Chat.FrameInfo, b: Chat.FrameInfo): boolean => {
return a.tabId === b.tabId && a.frameId === b.frameId;
};
/**
* Returns the index of the interceptor with a matching FrameInfo.
* Will return `-1` if no interceptor is found.
*/
const findInterceptorIndex = (frameInfo: Chat.FrameInfo): number => {
return interceptors.findIndex(
(i) => compareFrameInfo(i.frameInfo, frameInfo)
);
};
/**
* Finds and returns the interceptor with a matching FrameInfo.
* Will return `undefined` if no interceptor is found.
*/
const findInterceptor = (frameInfo: Chat.FrameInfo, debugObject?: unknown): Chat.Interceptor | undefined => {
const i = findInterceptorIndex(frameInfo);
if (i < 0) {
console.error('Interceptor not registered', debugObject);
return;
}
return interceptors[i];
};
/**
* Finds and returns the interceptor based on the given Port.
* Should only be used for messages that are expected from interceptors.
* Will return `undefined` if no interceptor is found.
*/
const findInterceptorFromPort = (
port: Chat.Port,
errorObject?: Record<string, unknown>
): Chat.Interceptor | undefined => {
const frameInfo = getPortFrameInfo(port);
if (!isValidFrameInfo(frameInfo, port)) return;
return findInterceptor(
frameInfo,
{ interceptors, port, ...errorObject }
);
};
const findInterceptorFromClient = (
client: Chat.Port
): Chat.Interceptor | undefined => {
return interceptors.find((interceptor) => {
for (const c of interceptor.clients) {
if (c.name === client.name) return true;
}
return false;
});
};
/**
* If both port and clients are empty, removes interceptor from array.
* Also runs the queue unsubscribe function.
*/
const cleanupInterceptor = (i: number): void => {
const interceptor = interceptors[i];
if (!interceptor.port && interceptor.clients.length < 1) {
console.debug('Removing empty interceptor', { interceptor, interceptors });
if (isYtcInterceptor(interceptor)) {
interceptor.queue.cleanUp();
interceptor.queueUnsub?.();
}
interceptors.splice(i, 1);
}
};
/**
* Register an interceptor into the `interceptors` array.
* If an interceptor with the same FrameInfo already exists, its port will be
* replaced with the given port instead.
*/
const registerInterceptor = (
port: Chat.Port,
source: Chat.InterceptorSource,
isReplay?: boolean
): void => {
const frameInfo = getPortFrameInfo(port);
if (!isValidFrameInfo(frameInfo, port)) return;
// Unregister interceptor when port disconnects
port.onDisconnect.addListener(() => {
const i = findInterceptorIndex(frameInfo);
if (i < 0) {
console.error(
'Failed to unregister interceptor',
{ port, interceptors }
);
return;
}
interceptors[i].port = undefined;
cleanupInterceptor(i);
console.debug('Interceptor unregistered', { port, interceptors });
});
// Replace port if interceptor already exists
const i = findInterceptorIndex(frameInfo);
if (i >= 0) {
console.debug(
'Replacing existing interceptor port',
{ oldPort: interceptors[i].port, port }
);
interceptors[i].port = port;
return;
}
// Add interceptor to array
const interceptor = {
frameInfo,
port,
clients: []
};
if (source === 'ytc') {
const queue = ytcQueue(isReplay);
let queueUnsub: Unsubscriber | undefined;
const ytcInterceptor: Chat.YtcInterceptor = {
...interceptor,
source: 'ytc',
dark: false,
queue,
queueUnsub
};
interceptors.push(ytcInterceptor);
ytcInterceptor.queueUnsub = queue.latestAction.subscribe((latestAction) => {
const interceptor = findInterceptorFromPort(port, { latestAction });
if (!interceptor || !latestAction) return;
interceptor.clients.forEach((port) => port.postMessage(latestAction));
});
} else {
interceptors.push({ ...interceptor, source });
}
console.debug('New interceptor registered', { port, interceptors });
};
/**
* Register a client to the interceptor with the matching FrameInfo.
*/
const registerClient = (
port: Chat.Port,
frameInfo: Chat.FrameInfo,
getInitialData = false
): void => {
const interceptor = findInterceptor(
frameInfo,
{ interceptors, port, frameInfo }
);
if (!interceptor) {
port.postMessage(
{
type: 'registerClientResponse',
success: false,
failReason: 'Interceptor not found'
}
);
return;
}
if (interceptor.clients.some((client) => client.name === port.name)) {
console.debug(
'Client already registered. Not registering',
{ interceptors, port, frameInfo }
);
port.postMessage(
{
type: 'registerClientResponse',
success: false,
failReason: 'Client already registered'
}
);
return;
}
// Assign pseudo-unique name
port.name = `${Date.now()}${Math.random()}`;
// Unregister client when port disconnects
port.onDisconnect.addListener(() => {
const i = interceptor.clients.findIndex(
(clientPort) => clientPort.name === port.name
);
if (i < 0) {
console.error('Failed to unregister client', { port, interceptor });
return;
}
interceptor.clients.splice(i, 1);
console.debug('Unregister client successful', { port, interceptor });
cleanupInterceptor(findInterceptorIndex(frameInfo));
});
// Add client to array
interceptor.clients.push(port);
console.debug('Register client successful', { port, interceptor });
port.postMessage(
{
type: 'registerClientResponse',
success: true
}
);
if (getInitialData && isYtcInterceptor(interceptor)) {
const selfChannel = interceptor.queue.selfChannel.get();
const payload: Chat.InitialData = {
type: 'initialData',
initialData: interceptor.queue.getInitialData(),
selfChannel: selfChannel != null
? {
name: selfChannel.authorName?.simpleText ?? '',
channelId: selfChannel.authorExternalChannelId ?? ''
}
: null
};
port.postMessage(payload);
console.debug('Sent initial data', { port, interceptor, payload });
}
};
/**
* Parses the given YTC json response, and adds it to the queue of the
* interceptor that sent it.
*/
const processMessageChunk = (port: Chat.Port, message: Chat.JsonMsg): void => {
const json = message.json;
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor || !isYtcInterceptor(interceptor)) return;
if (interceptor.clients.length < 1) {
console.debug('No clients', { interceptor, json });
return;
}
interceptor.queue.addJsonToQueue(json, false, interceptor);
};
/**
* Parses a sent message and adds a fake message entry.
*/
const processSentMessage = (port: Chat.Port, message: Chat.JsonMsg): void => {
const json = message.json;
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor || !isYtcInterceptor(interceptor)) return;
const fakeJson: Ytc.SentChatItemAction = JSON.parse(json);
const fakeChunk: Ytc.RawResponse = {
continuationContents: {
liveChatContinuation: {
continuations: [{
timedContinuationData: {
timeoutMs: 0
}
}],
actions: fakeJson.actions
}
}
};
interceptor.queue.addJsonToQueue(JSON.stringify(
fakeChunk
), false, interceptor, true);
};
/**
* Parses and sets initial message data and metadata.
*/
const setInitialData = (port: Chat.Port, message: Chat.JsonMsg): void => {
const json = message.json;
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor || !isYtcInterceptor(interceptor)) return;
interceptor.queue.addJsonToQueue(json, true, interceptor);
const parsedJson = JSON.parse(json);
const actionPanel = (parsedJson?.continuationContents?.liveChatContinuation ||
parsedJson?.contents?.liveChatRenderer)
?.actionPanel;
const user = actionPanel?.liveChatMessageInputRenderer
?.sendButton?.buttonRenderer?.serviceEndpoint
?.sendLiveChatMessageEndpoint?.actions[0]
?.addLiveChatTextMessageFromTemplateAction?.template
?.liveChatTextMessageRenderer ?? {
authorName: {
simpleText: parsedJson.continuationContents.liveChatContinuation.viewerName
}
};
interceptor.queue.selfChannel.set(user);
};
/**
* Updates the player progress of the queue of the interceptor.
*/
const updatePlayerProgress = (port: Chat.Port, playerProgress: number, isFromYt?: boolean): void => {
const interceptor = findInterceptorFromPort(port, { playerProgress });
if (!interceptor || !isYtcInterceptor(interceptor)) return;
interceptor.queue.updatePlayerProgress(playerProgress, isFromYt);
};
/**
* Sets the theme of the interceptor, and sends the new theme to any currently
* registered clients.
*/
const setTheme = (port: Chat.Port, dark: boolean): void => {
const interceptor = findInterceptorFromPort(port, { dark });
if (!interceptor || !isYtcInterceptor(interceptor)) return;
interceptor.dark = dark;
interceptor.clients.forEach(
(port) => port.postMessage({ type: 'themeUpdate', dark })
);
console.debug(`Set dark theme to ${dark.toString()}`);
};
/**
* Returns a message with the theme of the interceptor with a matching
* FrameInfo.
*/
const getTheme = (port: Chat.Port, frameInfo: Chat.FrameInfo): void => {
const interceptor = findInterceptor(
frameInfo,
{ interceptors, port, frameInfo }
);
if (!interceptor || !isYtcInterceptor(interceptor)) return;
port.postMessage({ type: 'themeUpdate', dark: interceptor.dark });
};
const sendLtlMessage = (port: Chat.Port, message: Chat.LtlMessage): void => {
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor) return;
interceptor.clients.forEach(
(clientPort) => clientPort.postMessage({ type: 'ltlMessage', message })
);
};
const executeChatAction = (
port: Chat.Port,
message: Chat.executeChatActionMsg
): void => {
const interceptor = findInterceptorFromClient(port);
interceptor?.port?.postMessage(message);
};
const sendChatUserActionResponse = (
port: Chat.Port,
message: Chat.chatUserActionResponse
): void => {
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor) return;
interceptor.clients.forEach(
(clientPort) => clientPort.postMessage(message)
);
};
const toggleMembershipGifting = (
port: Chat.Port,
message: Chat.toggleMembershipGiftingMsg
): void => {
const interceptor = findInterceptorFromClient(port);
interceptor?.port?.postMessage(message);
};
const sendMembershipGiftingResponse = (
port: Chat.Port,
message: Chat.toggleMembershipGiftingResponse
): void => {
const interceptor = findInterceptorFromPort(port, { message });
if (!interceptor) return;
interceptor.clients.forEach(
(clientPort) => clientPort.postMessage(message)
);
};
chrome.runtime.onConnect.addListener((port) => {
port.onMessage.addListener((message: Chat.BackgroundMessage) => {
switch (message.type) {
case 'registerInterceptor':
registerInterceptor(port, message.source, message.isReplay);
break;
case 'registerClient':
registerClient(port, message.frameInfo, message.getInitialData);
break;
case 'processMessageChunk':
processMessageChunk(port, message);
break;
case 'processSentMessage':
processSentMessage(port, message);
break;
case 'setInitialData':
setInitialData(port, message);
break;
case 'updatePlayerProgress':
updatePlayerProgress(port, message.playerProgress, message.isFromYt);
break;
case 'setTheme':
setTheme(port, message.dark);
break;
case 'getTheme':
getTheme(port, message.frameInfo);
break;
case 'sendLtlMessage':
sendLtlMessage(port, message.message);
break;
case 'executeChatAction':
executeChatAction(port, message);
break;
case 'chatUserActionResponse':
sendChatUserActionResponse(port, message);
break;
case 'toggleMembershipGifting':
toggleMembershipGifting(port, message);
break;
case 'toggleMembershipGiftingResponse':
sendMembershipGiftingResponse(port, message);
break;
default:
console.error('Unknown message type', port, message);
break;
}
});
});
chrome.browserAction.onClicked.addListener(() => {
if (isLiveTL) {
chrome.tabs.create({ url: 'https://livetl.app' }, () => {});
} else {
chrome.tabs.create({ url: 'https://livetl.app/en/hyperchat/' }, () => {});
}
});
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.type === 'getFrameInfo') {
sendResponse({ tabId: sender.tab?.id, frameId: sender.frameId });
} else if (request.type === 'createPopup') {
chrome.windows.create({
url: request.url,
type: 'popup'
}, () => {});
}
});