2018-12-26 04:36:24 -05:00
|
|
|
import * as SocketIO from 'socket.io'
|
|
|
|
import { authenticateSocket } from '../middlewares'
|
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { Server } from 'http'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { UserNotificationModelForApi } from '@server/typings/models/user'
|
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[] } = {}
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
|
|
|
init (server: Server) {
|
|
|
|
const io = SocketIO(server)
|
|
|
|
|
|
|
|
io.of('/user-notifications')
|
|
|
|
.use(authenticateSocket)
|
|
|
|
.on('connection', socket => {
|
|
|
|
const userId = socket.handshake.query.user.id
|
|
|
|
|
|
|
|
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
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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]
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2019-08-22 04:33:22 -04:00
|
|
|
if (!sockets) return
|
2018-12-26 04:36:24 -05:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
PeerTubeSocket
|
|
|
|
}
|