aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/server-commands/socket/socket-io-command.ts
blob: c28a86366ff9c03de1f8b0cc54b8ea9a12d82efb (plain) (tree)
1
2
3
4
5
6
7
8






                                                                    
                                                                      





                                               








                                                
 
import { io } from 'socket.io-client'
import { AbstractCommand, OverrideCommandOptions } from '../shared'

export class SocketIOCommand extends AbstractCommand {

  getUserNotificationSocket (options: OverrideCommandOptions = {}) {
    return io(this.server.url + '/user-notifications', {
      query: { accessToken: options.token ?? this.server.accessToken }
    })
  }

  getLiveNotificationSocket () {
    return io(this.server.url + '/live-videos')
  }

  getRunnersSocket (options: {
    runnerToken: string
  }) {
    return io(this.server.url + '/runners', {
      reconnection: false,
      auth: { runnerToken: options.runnerToken }
    })
  }
}