2018-12-26 04:36:24 -05:00
|
|
|
import { Server } from 'http'
|
2020-09-25 04:04:21 -04:00
|
|
|
import * as SocketIO from 'socket.io'
|
|
|
|
import { MVideo } 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'
|
2020-11-04 09:31:32 -05:00
|
|
|
import { isIdValid } from '@server/helpers/custom-validators/misc'
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
class PeerTubeSocket {
|
|
|
|
|
|
|
|
private static instance: PeerTubeSocket
|
|
|
|
|
2019-08-22 04:33:22 -04:00
|
|
|
private userNotificationSockets: { [ userId: number ]: SocketIO.Socket[] } = {}
|
2020-09-25 04:04:21 -04:00
|
|
|
private liveVideosNamespace: SocketIO.Namespace
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
|
|
|
init (server: Server) {
|
2020-11-19 02:58:34 -05:00
|
|
|
const io = new SocketIO.Server(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
|
|
|
|
|
|
|
|
socket.join(videoId)
|
|
|
|
})
|
|
|
|
|
|
|
|
socket.on('unsubscribe', ({ videoId }) => {
|
|
|
|
if (!isIdValid(videoId)) return
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
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 })
|
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
|
|
|
|
}
|