2021-08-27 08:32:44 -04:00
|
|
|
import { Server as HTTPServer } from 'http'
|
|
|
|
import { Namespace, Server as SocketServer, Socket } from 'socket.io'
|
|
|
|
import { isIdValid } from '@server/helpers/custom-validators/misc'
|
2021-11-09 04:11:20 -05:00
|
|
|
import { MVideo, MVideoImmutable } from '@server/types/models'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { UserNotificationModelForApi } from '@server/types/models/user'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { LiveVideoEventPayload, LiveVideoEventType } from '@shared/models'
|
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { authenticateSocket } from '../middlewares'
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
class PeerTubeSocket {
|
|
|
|
|
|
|
|
private static instance: PeerTubeSocket
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
private userNotificationSockets: { [ userId: number ]: Socket[] } = {}
|
|
|
|
private liveVideosNamespace: Namespace
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
init (server: HTTPServer) {
|
|
|
|
const io = new SocketServer(server)
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
io.of('/user-notifications')
|
|
|
|
.use(authenticateSocket)
|
|
|
|
.on('connection', socket => {
|
2021-03-03 09:22:38 -05:00
|
|
|
const userId = socket.handshake.auth.user.id
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
logger.debug('User %d connected on the notification system.', userId)
|
|
|
|
|
2019-08-22 04:33:22 -04:00
|
|
|
if (!this.userNotificationSockets[userId]) this.userNotificationSockets[userId] = []
|
|
|
|
|
|
|
|
this.userNotificationSockets[userId].push(socket)
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
socket.on('disconnect', () => {
|
|
|
|
logger.debug('User %d disconnected from SocketIO notifications.', userId)
|
|
|
|
|
2019-08-22 04:33:22 -04:00
|
|
|
this.userNotificationSockets[userId] = this.userNotificationSockets[userId].filter(s => s !== socket)
|
2018-12-26 04:36:24 -05:00
|
|
|
})
|
|
|
|
})
|
2020-09-25 04:04:21 -04:00
|
|
|
|
|
|
|
this.liveVideosNamespace = io.of('/live-videos')
|
|
|
|
.on('connection', socket => {
|
2020-11-04 09:31:32 -05:00
|
|
|
socket.on('subscribe', ({ videoId }) => {
|
|
|
|
if (!isIdValid(videoId)) return
|
|
|
|
|
2021-04-12 11:00:21 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
2020-11-04 09:31:32 -05:00
|
|
|
socket.join(videoId)
|
|
|
|
})
|
|
|
|
|
|
|
|
socket.on('unsubscribe', ({ videoId }) => {
|
|
|
|
if (!isIdValid(videoId)) return
|
|
|
|
|
2021-04-12 11:00:21 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
2020-11-04 09:31:32 -05:00
|
|
|
socket.leave(videoId)
|
|
|
|
})
|
2020-09-25 04:04:21 -04:00
|
|
|
})
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
sendNotification (userId: number, notification: UserNotificationModelForApi) {
|
2019-08-22 04:33:22 -04:00
|
|
|
const sockets = this.userNotificationSockets[userId]
|
|
|
|
if (!sockets) return
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
logger.debug('Sending user notification to user %d.', userId)
|
|
|
|
|
2019-08-23 03:05:30 -04:00
|
|
|
const notificationMessage = notification.toFormattedJSON()
|
2019-08-22 04:33:22 -04:00
|
|
|
for (const socket of sockets) {
|
2019-08-23 03:05:30 -04:00
|
|
|
socket.emit('new-notification', notificationMessage)
|
2019-08-22 04:33:22 -04:00
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
sendVideoLiveNewState (video: MVideo) {
|
|
|
|
const data: LiveVideoEventPayload = { state: video.state }
|
|
|
|
const type: LiveVideoEventType = 'state-change'
|
|
|
|
|
2020-12-09 09:00:02 -05:00
|
|
|
logger.debug('Sending video live new state notification of %s.', video.url, { state: video.state })
|
|
|
|
|
|
|
|
this.liveVideosNamespace
|
|
|
|
.in(video.id)
|
|
|
|
.emit(type, data)
|
|
|
|
}
|
|
|
|
|
2021-11-09 04:11:20 -05:00
|
|
|
sendVideoViewsUpdate (video: MVideoImmutable, numViewers: number) {
|
|
|
|
const data: LiveVideoEventPayload = { viewers: numViewers, views: numViewers }
|
2020-12-09 09:00:02 -05:00
|
|
|
const type: LiveVideoEventType = 'views-change'
|
|
|
|
|
2021-11-09 04:11:20 -05:00
|
|
|
logger.debug('Sending video live views update notification of %s.', video.url, { viewers: numViewers })
|
2020-09-25 04:04:21 -04:00
|
|
|
|
|
|
|
this.liveVideosNamespace
|
|
|
|
.in(video.id)
|
|
|
|
.emit(type, data)
|
|
|
|
}
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
PeerTubeSocket
|
|
|
|
}
|