aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/server-commands/src/socket/socket-io-command.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server-commands/src/socket/socket-io-command.ts')
-rw-r--r--packages/server-commands/src/socket/socket-io-command.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/server-commands/src/socket/socket-io-command.ts b/packages/server-commands/src/socket/socket-io-command.ts
new file mode 100644
index 000000000..9c18c2a1f
--- /dev/null
+++ b/packages/server-commands/src/socket/socket-io-command.ts
@@ -0,0 +1,24 @@
1import { io } from 'socket.io-client'
2import { AbstractCommand, OverrideCommandOptions } from '../shared/index.js'
3
4export class SocketIOCommand extends AbstractCommand {
5
6 getUserNotificationSocket (options: OverrideCommandOptions = {}) {
7 return io(this.server.url + '/user-notifications', {
8 query: { accessToken: options.token ?? this.server.accessToken }
9 })
10 }
11
12 getLiveNotificationSocket () {
13 return io(this.server.url + '/live-videos')
14 }
15
16 getRunnersSocket (options: {
17 runnerToken: string
18 }) {
19 return io(this.server.url + '/runners', {
20 reconnection: false,
21 auth: { runnerToken: options.runnerToken }
22 })
23 }
24}