X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fpeertube-socket.ts;h=901435dea792277d2aa02f9461e0d86ee87fc6b3;hb=5037e0e474044d7fc04092158784395a001e5c25;hp=5fc5bc20b70c2d77e494ccc5eca2d77d45ec3407;hpb=fce7fe04eed39e23e76717085e92118e963def81;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/peertube-socket.ts b/server/lib/peertube-socket.ts index 5fc5bc20b..901435dea 100644 --- a/server/lib/peertube-socket.ts +++ b/server/lib/peertube-socket.ts @@ -1,28 +1,28 @@ -import { Server } from 'http' -import * as SocketIO from 'socket.io' +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 } from '@server/types/models' import { UserNotificationModelForApi } from '@server/types/models/user' import { LiveVideoEventPayload, LiveVideoEventType } from '@shared/models' import { logger } from '../helpers/logger' import { authenticateSocket } from '../middlewares' -import { isIdValid } from '@server/helpers/custom-validators/misc' 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 = new SocketIO.Server(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) @@ -42,12 +42,14 @@ class PeerTubeSocket { 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) }) }) @@ -69,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: MVideo) { + const data: LiveVideoEventPayload = { views: video.views } + const type: LiveVideoEventType = 'views-change' + + logger.debug('Sending video live views update notification of %s.', video.url, { views: video.views }) this.liveVideosNamespace .in(video.id)