X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fpeertube-socket.ts;h=0398ca61dbf8f71e68c52be44cbed4fe2023dd7b;hb=2e9c7877eb3a3c5d64cc5c3383f0a7c0b51f5481;hp=c918a8685d05856627c1b58b13471a2381d30309;hpb=a5cf76afa378aae81af2a9b0ce548e5d2582f832;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/peertube-socket.ts b/server/lib/peertube-socket.ts index c918a8685..0398ca61d 100644 --- a/server/lib/peertube-socket.ts +++ b/server/lib/peertube-socket.ts @@ -1,7 +1,7 @@ -import { Socket } from 'dgram' -import { Server } from 'http' -import * as SocketIO from 'socket.io' -import { MVideo } from '@server/types/models' +import { Server as HTTPServer } from 'http' +import { Namespace, Server as SocketServer, Socket } from 'socket.io' +import { isIdValid } from '@server/helpers/custom-validators/misc' +import { MVideo, MVideoImmutable } from '@server/types/models' import { UserNotificationModelForApi } from '@server/types/models/user' import { LiveVideoEventPayload, LiveVideoEventType } from '@shared/models' import { logger } from '../helpers/logger' @@ -11,18 +11,18 @@ class PeerTubeSocket { private static instance: PeerTubeSocket - private userNotificationSockets: { [ userId: number ]: SocketIO.Socket[] } = {} - private liveVideosNamespace: SocketIO.Namespace + private userNotificationSockets: { [ userId: number ]: Socket[] } = {} + private liveVideosNamespace: Namespace private constructor () {} - init (server: Server) { - const io = SocketIO(server) + init (server: HTTPServer) { + const io = new SocketServer(server) io.of('/user-notifications') .use(authenticateSocket) .on('connection', socket => { - const userId = socket.handshake.query.user.id + const userId = socket.handshake.auth.user.id logger.debug('User %d connected on the notification system.', userId) @@ -39,8 +39,19 @@ class PeerTubeSocket { this.liveVideosNamespace = io.of('/live-videos') .on('connection', socket => { - socket.on('subscribe', ({ videoId }) => socket.join(videoId)) - socket.on('unsubscribe', ({ videoId }) => socket.leave(videoId)) + socket.on('subscribe', ({ videoId }) => { + if (!isIdValid(videoId)) return + + /* eslint-disable @typescript-eslint/no-floating-promises */ + socket.join(videoId) + }) + + socket.on('unsubscribe', ({ videoId }) => { + if (!isIdValid(videoId)) return + + /* eslint-disable @typescript-eslint/no-floating-promises */ + socket.leave(videoId) + }) }) } @@ -60,7 +71,18 @@ class PeerTubeSocket { const data: LiveVideoEventPayload = { state: video.state } const type: LiveVideoEventType = 'state-change' - logger.debug('Sending video live new state notification of %s.', video.url) + logger.debug('Sending video live new state notification of %s.', video.url, { state: video.state }) + + this.liveVideosNamespace + .in(video.id) + .emit(type, data) + } + + sendVideoViewsUpdate (video: MVideoImmutable, numViewers: number) { + const data: LiveVideoEventPayload = { viewers: numViewers, views: numViewers } + const type: LiveVideoEventType = 'views-change' + + logger.debug('Sending video live views update notification of %s.', video.url, { viewers: numViewers }) this.liveVideosNamespace .in(video.id)