mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[real-time] convert real time to esm GitOrigin-RevId: 7cc530cc977549d3274be42585735e1fd72cad5f
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
import WebsocketLoadBalancer from './WebsocketLoadBalancer.js'
|
|
import DrainManager from './DrainManager.js'
|
|
import ConnectedUsersManager from './ConnectedUsersManager.js'
|
|
import logger from '@overleaf/logger'
|
|
|
|
export default {
|
|
countConnectedClients(req, res) {
|
|
const { projectId } = req.params
|
|
ConnectedUsersManager.countConnectedClients(
|
|
projectId,
|
|
(err, nConnectedClients) => {
|
|
if (err) {
|
|
logger.err({ err, projectId }, 'count connected clients failed')
|
|
return res.sendStatus(500)
|
|
}
|
|
res.json({ nConnectedClients })
|
|
}
|
|
)
|
|
},
|
|
|
|
sendMessage(req, res) {
|
|
logger.debug({ message: req.params.message }, 'sending message')
|
|
if (Array.isArray(req.body)) {
|
|
for (const payload of req.body) {
|
|
WebsocketLoadBalancer.emitToRoom(
|
|
req.params.project_id,
|
|
req.params.message,
|
|
payload
|
|
)
|
|
}
|
|
} else {
|
|
WebsocketLoadBalancer.emitToRoom(
|
|
req.params.project_id,
|
|
req.params.message,
|
|
req.body
|
|
)
|
|
}
|
|
res.sendStatus(204)
|
|
},
|
|
|
|
startDrain(req, res) {
|
|
const io = req.app.get('io')
|
|
let rate = req.query.rate || '4'
|
|
rate = parseFloat(rate) || 0
|
|
logger.info({ rate }, 'setting client drain rate')
|
|
DrainManager.startDrain(io, rate)
|
|
res.sendStatus(204)
|
|
},
|
|
|
|
disconnectClient(req, res, next) {
|
|
const io = req.app.get('io')
|
|
const { client_id: clientId } = req.params
|
|
const client = io.sockets.sockets[clientId]
|
|
|
|
if (!client) {
|
|
logger.debug({ clientId }, 'api: client already disconnected')
|
|
res.sendStatus(404)
|
|
return
|
|
}
|
|
logger.info({ clientId }, 'api: requesting client disconnect')
|
|
client.on('disconnect', () => res.sendStatus(204))
|
|
client.disconnect()
|
|
},
|
|
}
|