-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathbase.ts
396 lines (345 loc) · 11.5 KB
/
base.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
import createDebug from 'debug';
import {EventEmitter} from 'eventemitter3';
// Import under alias so DOM's WebSocket type can be used
import WebSocketIpml from 'isomorphic-ws';
import type {Except, Merge, SetOptional} from 'type-fest';
import {WebSocketOpCode} from './types.js';
import type {OutgoingMessageTypes, OutgoingMessage, OBSEventTypes, IncomingMessage, IncomingMessageTypes, OBSRequestTypes, OBSResponseTypes, RequestMessage, RequestBatchExecutionType, RequestBatchRequest, RequestBatchMessage, ResponseMessage, ResponseBatchMessage, RequestBatchOptions} from './types.js';
import authenticationHashing from './utils/authenticationHashing.js';
const debug = createDebug('obs-websocket-js');
export class OBSWebSocketError extends Error {
constructor(public code: number, message: string) {
super(message);
}
}
export type EventTypes = Merge<{
ConnectionOpened: void;
ConnectionClosed: OBSWebSocketError;
ConnectionError: OBSWebSocketError;
Hello: IncomingMessageTypes[WebSocketOpCode.Hello];
Identified: IncomingMessageTypes[WebSocketOpCode.Identified];
}, OBSEventTypes>;
// EventEmitter expects {type: [value]} syntax while for us {type: value} is neater
type MapValueToArgsArray<T extends Record<string, unknown>> = {
// eslint-disable-next-line @typescript-eslint/ban-types
[K in keyof T]: T[K] extends void ? [] : [T[K]];
};
type IdentificationInput = SetOptional<Except<OutgoingMessageTypes[WebSocketOpCode.Identify], 'authentication'>, 'rpcVersion'>;
type HelloIdentifiedMerged = Merge<
Exclude<IncomingMessageTypes[WebSocketOpCode.Hello], 'authenticate'>,
IncomingMessageTypes[WebSocketOpCode.Identified]
>;
export abstract class BaseOBSWebSocket extends EventEmitter<MapValueToArgsArray<EventTypes>> {
protected static requestCounter = 1;
protected static generateMessageId(): string {
return String(BaseOBSWebSocket.requestCounter++);
}
protected _identified = false;
protected internalListeners = new EventEmitter();
protected socket?: WebSocket;
protected abstract protocol: string;
public get identified() {
return this._identified;
}
/**
* Connect to an obs-websocket server
* @param url Websocket server to connect to (including ws:// or wss:// protocol)
* @param password Password
* @param identificationParams Data for Identify event
* @returns Hello & Identified messages data (combined)
*/
async connect(
url = 'ws://127.0.0.1:4455',
password?: string,
identificationParams: IdentificationInput = {},
): Promise<HelloIdentifiedMerged> {
if (this.socket) {
await this.disconnect();
}
try {
const connectionClosedPromise = this.internalEventPromise<EventTypes['ConnectionClosed']>('ConnectionClosed');
const connectionErrorPromise = this.internalEventPromise<EventTypes['ConnectionError']>('ConnectionError');
return await Promise.race([
(async () => {
const hello = await this.createConnection(url);
this.emit('Hello', hello);
return this.identify(hello, password, identificationParams);
})(),
// Choose the best promise for connection error/close
// In browser connection close has close code + reason,
// while in node error event has these
new Promise<never>((resolve, reject) => {
void connectionErrorPromise.then(e => {
if (e.message) {
reject(e);
}
});
void connectionClosedPromise.then(e => {
reject(e);
});
}),
]);
} catch (error: unknown) {
await this.disconnect();
throw error;
}
}
/**
* Disconnect from obs-websocket server
*/
async disconnect() {
if (!this.socket || this.socket.readyState === WebSocketIpml.CLOSED) {
return;
}
const connectionClosedPromise = this.internalEventPromise('ConnectionClosed');
this.socket.close();
await connectionClosedPromise;
}
/**
* Update session parameters
* @param data Reidentify data
* @returns Identified message data
*/
async reidentify(data: OutgoingMessageTypes[WebSocketOpCode.Reidentify]) {
const identifiedPromise = this.internalEventPromise<IncomingMessageTypes[WebSocketOpCode.Identified]>(`op:${WebSocketOpCode.Identified}`);
await this.message(WebSocketOpCode.Reidentify, data);
return identifiedPromise;
}
/**
* Send a request to obs-websocket
* @param requestType Request name
* @param requestData Request data
* @returns Request response
*/
async call<Type extends keyof OBSRequestTypes>(requestType: Type, requestData?: OBSRequestTypes[Type]): Promise<OBSResponseTypes[Type]> {
const requestId = BaseOBSWebSocket.generateMessageId();
const responsePromise = this.internalEventPromise<ResponseMessage<Type>>(`res:${requestId}`);
await this.message(WebSocketOpCode.Request, {
requestId,
requestType,
requestData,
} as RequestMessage<Type>);
const {requestStatus, responseData} = await responsePromise;
if (!requestStatus.result) {
throw new OBSWebSocketError(requestStatus.code, requestStatus.comment);
}
return responseData as OBSResponseTypes[Type];
}
/**
* Send a batch request to obs-websocket
* @param requests Array of Request objects (type and data)
* @param options A set of options for how the batch will be executed
* @param options.executionType The mode of execution obs-websocket will run the batch in
* @param options.haltOnFailure Whether obs-websocket should stop executing the batch if one request fails
* @returns RequestBatch response
*/
async callBatch(requests: RequestBatchRequest[], options: RequestBatchOptions = {}): Promise<ResponseMessage[]> {
const requestId = BaseOBSWebSocket.generateMessageId();
const responsePromise = this.internalEventPromise<ResponseBatchMessage>(`res:${requestId}`);
await this.message(WebSocketOpCode.RequestBatch, {
requestId,
requests,
...options,
});
const {results} = await responsePromise;
return results;
}
/**
* Cleanup from socket disconnection
*/
protected cleanup() {
if (!this.socket) {
return;
}
this.socket.onopen = null;
this.socket.onmessage = null;
this.socket.onerror = null;
this.socket.onclose = null;
this.socket = undefined;
this._identified = false;
// Cleanup leftovers
this.internalListeners.removeAllListeners();
}
/**
* Create connection to specified obs-websocket server
*
* @private
* @param url Websocket address
* @returns Promise for hello data
*/
protected async createConnection(url: string) {
const connectionOpenedPromise = this.internalEventPromise('ConnectionOpened');
const helloPromise = this.internalEventPromise<IncomingMessageTypes[WebSocketOpCode.Hello]>(`op:${WebSocketOpCode.Hello}`);
this.socket = new WebSocketIpml(url, this.protocol) as unknown as WebSocket;
this.socket.onopen = this.onOpen.bind(this);
this.socket.onmessage = this.onMessage.bind(this);
this.socket.onerror = this.onError.bind(this) as (e: Event) => void;
this.socket.onclose = this.onClose.bind(this);
await connectionOpenedPromise;
const protocol = this.socket?.protocol;
// Browsers don't autoclose on missing/wrong protocol
if (!protocol) {
throw new OBSWebSocketError(-1, 'Server sent no subprotocol');
}
if (protocol !== this.protocol) {
throw new OBSWebSocketError(-1, 'Server sent an invalid subprotocol');
}
return helloPromise;
}
/**
* Send identify message
*
* @private
* @param hello Hello message data
* @param password Password
* @param identificationParams Identification params
* @returns Hello & Identified messages data (combined)
*/
protected async identify(
{
authentication,
rpcVersion,
...helloRest
}: IncomingMessageTypes[WebSocketOpCode.Hello],
password?: string,
identificationParams: IdentificationInput = {},
): Promise<HelloIdentifiedMerged> {
// Set rpcVersion if unset
const data: OutgoingMessageTypes[WebSocketOpCode.Identify] = {
rpcVersion,
...identificationParams,
};
if (authentication && password) {
data.authentication = authenticationHashing(authentication.salt, authentication.challenge, password);
}
const identifiedPromise = this.internalEventPromise<IncomingMessageTypes[WebSocketOpCode.Identified]>(`op:${WebSocketOpCode.Identified}`);
await this.message(WebSocketOpCode.Identify, data);
const identified = await identifiedPromise;
this._identified = true;
this.emit('Identified', identified);
return {
rpcVersion,
...helloRest,
...identified,
};
}
/**
* Send message to obs-websocket
*
* @private
* @param op WebSocketOpCode
* @param d Message data
*/
protected async message<Type extends keyof OutgoingMessageTypes>(op: Type, d: OutgoingMessageTypes[Type]) {
if (!this.socket) {
throw new Error('Not connected');
}
if (!this.identified && op !== 1) {
throw new Error('Socket not identified');
}
const encoded = await this.encodeMessage({
op,
d,
} as OutgoingMessage);
this.socket.send(encoded);
}
/**
* Create a promise to listen for an event on internal listener
* (will be cleaned up on disconnect)
*
* @private
* @param event Event to listen to
* @returns Event data
*/
protected async internalEventPromise<ReturnVal = unknown>(event: string): Promise<ReturnVal> {
return new Promise(resolve => {
this.internalListeners.once(event, resolve);
});
}
/**
* Websocket open event listener
*
* @private
* @param e Event
*/
protected onOpen(e: Event) {
debug('socket.open');
this.emit('ConnectionOpened');
this.internalListeners.emit('ConnectionOpened', e);
}
/**
* Websocket message event listener
*
* @private
* @param e Event
*/
protected async onMessage(e: MessageEvent<string | Blob | ArrayBuffer>) {
try {
const {op, d} = await this.decodeMessage(e.data);
debug('socket.message: %d %j', op, d);
if (op === undefined || d === undefined) {
return;
}
switch (op) {
case WebSocketOpCode.Event: {
const {eventType, eventData} = d;
// @ts-expect-error Typescript just doesn't understand it
this.emit(eventType, eventData);
return;
}
case WebSocketOpCode.RequestResponse:
case WebSocketOpCode.RequestBatchResponse: {
const {requestId} = d;
this.internalListeners.emit(`res:${requestId}`, d);
return;
}
default:
this.internalListeners.emit(`op:${op}`, d);
}
} catch (error: unknown) {
debug('error handling message: %o', error);
}
}
/**
* Websocket error event listener
*
* @private
* @param e ErrorEvent
*/
protected onError(e: ErrorEvent) {
debug('socket.error: %o', e);
const error = new OBSWebSocketError(-1, e.message);
this.emit('ConnectionError', error);
this.internalListeners.emit('ConnectionError', error);
}
/**
* Websocket close event listener
*
* @private
* @param e Event
*/
protected onClose(e: CloseEvent) {
debug('socket.close: %s (%d)', e.reason, e.code);
const error = new OBSWebSocketError(e.code, e.reason);
this.emit('ConnectionClosed', error);
this.internalListeners.emit('ConnectionClosed', error);
this.cleanup();
}
/**
* Encode a message for specified protocol
* @param data Outgoing message
* @returns Outgoing message to send via websocket
*/
protected abstract encodeMessage(data: OutgoingMessage): Promise<string | Blob | ArrayBufferView>;
/**
* Decode a message for specified protocol
* @param data Incoming message from websocket
* @returns Parsed incoming message
*/
protected abstract decodeMessage(data: string | ArrayBuffer | Blob): Promise<IncomingMessage>;
}
// https://github.com/developit/microbundle/issues/531#issuecomment-575473024
// Not using ESM export due to it also being detected and breaking rollup based bundlers (vite)
if (typeof exports !== 'undefined') {
Object.defineProperty(exports, '__esModule', {value: true});
}