X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fpeertube-socket.ts;h=5fc5bc20b70c2d77e494ccc5eca2d77d45ec3407;hb=fce7fe04eed39e23e76717085e92118e963def81;hp=17748fd1813186509ab5c63a54ebfc8771475703;hpb=1b42d73f44811eec1b7ddd72dd0d640a57c3376c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/peertube-socket.ts b/server/lib/peertube-socket.ts index 17748fd18..5fc5bc20b 100644 --- a/server/lib/peertube-socket.ts +++ b/server/lib/peertube-socket.ts @@ -1,19 +1,23 @@ +import { Server } from 'http' import * as SocketIO from 'socket.io' -import { authenticateSocket } from '../middlewares' -import { UserNotificationModel } from '../models/account/user-notification' +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 { Server } from 'http' +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 constructor () {} init (server: Server) { - const io = SocketIO(server) + const io = new SocketIO.Server(server) io.of('/user-notifications') .use(authenticateSocket) @@ -32,18 +36,46 @@ class PeerTubeSocket { this.userNotificationSockets[userId] = this.userNotificationSockets[userId].filter(s => s !== socket) }) }) + + this.liveVideosNamespace = io.of('/live-videos') + .on('connection', socket => { + socket.on('subscribe', ({ videoId }) => { + if (!isIdValid(videoId)) return + + socket.join(videoId) + }) + + socket.on('unsubscribe', ({ videoId }) => { + if (!isIdValid(videoId)) return + + socket.leave(videoId) + }) + }) } - sendNotification (userId: number, notification: UserNotificationModel) { + sendNotification (userId: number, notification: UserNotificationModelForApi) { const sockets = this.userNotificationSockets[userId] - if (!sockets) return + logger.debug('Sending user notification to user %d.', userId) + + const notificationMessage = notification.toFormattedJSON() for (const socket of sockets) { - socket.emit('new-notification', notification.toFormattedJSON()) + socket.emit('new-notification', notificationMessage) } } + sendVideoLiveNewState (video: MVideo) { + const data: LiveVideoEventPayload = { state: video.state } + const type: LiveVideoEventType = 'state-change' + + logger.debug('Sending video live new state notification of %s.', video.url) + + this.liveVideosNamespace + .in(video.id) + .emit(type, data) + } + static get Instance () { return this.instance || (this.instance = new this()) }