overleaf/services/real-time/app/coffee/Router.coffee

187 lines
7.1 KiB
CoffeeScript
Raw Normal View History

2014-11-17 08:12:49 -05:00
metrics = require "metrics-sharelatex"
logger = require "logger-sharelatex"
settings = require "settings-sharelatex"
2014-11-10 06:27:08 -05:00
WebsocketController = require "./WebsocketController"
HttpController = require "./HttpController"
HttpApiController = require "./HttpApiController"
bodyParser = require "body-parser"
base64id = require("base64id")
basicAuth = require('basic-auth-connect')
httpAuth = basicAuth (user, pass)->
isValid = user == settings.internal.realTime.user and pass == settings.internal.realTime.pass
if !isValid
logger.err user:user, pass:pass, "invalid login details"
return isValid
module.exports = Router =
_handleError: (callback = ((error) ->), error, client, method, attrs = {}) ->
for key in ["project_id", "doc_id", "user_id"]
attrs[key] = client.ol_context[key]
attrs.client_id = client.id
attrs.err = error
if error.name == "CodedError"
logger.warn attrs, error.message, code: error.code
return callback {message: error.message, code: error.code}
if error.message == 'unexpected arguments'
# the payload might be very large, put it on level info
logger.log attrs, 'unexpected arguments'
metrics.inc 'unexpected-arguments', 1, { status: method }
return callback { message: error.message }
2017-11-10 10:01:23 -05:00
if error.message in ["not authorized", "doc updater could not load requested ops", "no project_id found on client"]
logger.warn attrs, error.message
return callback {message: error.message}
else
logger.error attrs, "server side error in #{method}"
# Don't return raw error to prevent leaking server side info
return callback {message: "Something went wrong in real-time service"}
_handleInvalidArguments: (client, method, args) ->
error = new Error("unexpected arguments")
callback = args[args.length - 1]
if typeof callback != 'function'
callback = (() ->)
attrs = {arguments: args}
Router._handleError(callback, error, client, method, attrs)
configure: (app, io, session) ->
app.set("io", io)
app.get "/clients", HttpController.getConnectedClients
app.get "/clients/:client_id", HttpController.getConnectedClient
app.post "/project/:project_id/message/:message", httpAuth, bodyParser.json(limit: "5mb"), HttpApiController.sendMessage
app.post "/drain", httpAuth, HttpApiController.startDrain
app.post "/client/:client_id/disconnect", httpAuth, HttpApiController.disconnectClient
2016-09-07 03:58:35 -04:00
session.on 'connection', (error, client, session) ->
client.ol_context = {} unless client.ol_context
client?.on "error", (err) ->
2020-02-03 09:47:45 -05:00
logger.err { clientErr: err }, "socket.io client error"
if client.connected
client.emit("reconnectGracefully")
client.disconnect()
if settings.shutDownInProgress
client.emit("connectionRejected", {message: "retry"})
client.disconnect()
return
if client? and error?.message?.match(/could not look up session by key/)
2017-11-10 10:01:23 -05:00
logger.warn err: error, client: client?, session: session?, "invalid session"
# tell the client to reauthenticate if it has an invalid session key
client.emit("connectionRejected", {message: "invalid session"})
client.disconnect()
return
if error?
logger.err err: error, client: client?, session: session?, "error when client connected"
client?.emit("connectionRejected", {message: "error"})
client?.disconnect()
return
2016-09-07 03:58:35 -04:00
# send positive confirmation that the client has a valid connection
client.publicId = 'P.' + base64id.generateId()
client.emit("connectionAccepted", null, client.publicId)
2014-11-17 08:12:49 -05:00
metrics.inc('socket-io.connection')
2019-08-14 10:22:03 -04:00
metrics.gauge('socket-io.clients', io.sockets.clients()?.length)
2016-09-07 03:58:35 -04:00
2014-11-12 10:54:55 -05:00
logger.log session: session, client_id: client.id, "client connected"
2016-09-07 03:58:35 -04:00
if session?.passport?.user?
user = session.passport.user
else if session?.user?
2014-11-21 06:48:59 -05:00
user = session.user
2016-09-07 03:58:35 -04:00
else
user = {_id: "anonymous-user"}
2014-11-10 06:27:08 -05:00
client.on "joinProject", (data = {}, callback) ->
if typeof callback != 'function'
return Router._handleInvalidArguments(client, 'joinProject', arguments)
if data.anonymousAccessToken
user.anonymousAccessToken = data.anonymousAccessToken
2014-11-12 10:54:55 -05:00
WebsocketController.joinProject client, user, data.project_id, (err, args...) ->
if err?
Router._handleError callback, err, client, "joinProject", {project_id: data.project_id, user_id: user?.id}
2014-11-12 10:54:55 -05:00
else
callback(null, args...)
2016-09-07 03:58:35 -04:00
client.on "disconnect", () ->
2014-11-17 08:12:49 -05:00
metrics.inc('socket-io.disconnect')
metrics.gauge('socket-io.clients', io.sockets.clients()?.length - 1)
WebsocketController.leaveProject io, client, (err) ->
if err?
Router._handleError (() ->), err, client, "leaveProject"
2016-09-07 03:58:35 -04:00
2017-09-21 10:19:19 -04:00
# Variadic. The possible arguments:
2017-09-21 09:58:49 -04:00
# doc_id, callback
# doc_id, fromVersion, callback
# doc_id, options, callback
2017-09-21 10:19:19 -04:00
# doc_id, fromVersion, options, callback
client.on "joinDoc", (doc_id, fromVersion, options, callback) ->
2017-09-21 11:55:49 -04:00
if typeof fromVersion == "function" and !options
2014-11-12 10:54:55 -05:00
callback = fromVersion
fromVersion = -1
2017-09-21 11:55:49 -04:00
options = {}
else if typeof fromVersion == "number" and typeof options == "function"
2017-09-21 10:19:19 -04:00
callback = options
options = {}
2017-09-21 11:55:49 -04:00
else if typeof fromVersion == "object" and typeof options == "function"
2017-09-21 10:19:19 -04:00
callback = options
2017-09-21 11:55:49 -04:00
options = fromVersion
fromVersion = -1
else if typeof fromVersion == "number" and typeof options == "object" and typeof callback == 'function'
2017-09-21 11:55:49 -04:00
# Called with 4 args, things are as expected
else
return Router._handleInvalidArguments(client, 'joinDoc', arguments)
2016-09-07 03:58:35 -04:00
2017-09-21 11:56:09 -04:00
WebsocketController.joinDoc client, doc_id, fromVersion, options, (err, args...) ->
2014-11-12 10:54:55 -05:00
if err?
Router._handleError callback, err, client, "joinDoc", {doc_id, fromVersion}
2014-11-12 10:54:55 -05:00
else
callback(null, args...)
2016-09-07 03:58:35 -04:00
2014-11-12 11:51:48 -05:00
client.on "leaveDoc", (doc_id, callback) ->
if typeof callback != 'function'
return Router._handleInvalidArguments(client, 'leaveDoc', arguments)
2014-11-12 11:51:48 -05:00
WebsocketController.leaveDoc client, doc_id, (err, args...) ->
if err?
Router._handleError callback, err, client, "leaveDoc"
2014-11-12 11:51:48 -05:00
else
callback(null, args...)
2016-09-07 03:58:35 -04:00
client.on "clientTracking.getConnectedUsers", (callback = (error, users) ->) ->
if typeof callback != 'function'
return Router._handleInvalidArguments(client, 'clientTracking.getConnectedUsers', arguments)
WebsocketController.getConnectedUsers client, (err, users) ->
if err?
Router._handleError callback, err, client, "clientTracking.getConnectedUsers"
else
callback(null, users)
2016-09-07 03:58:35 -04:00
client.on "clientTracking.updatePosition", (cursorData, callback = (error) ->) ->
if typeof callback != 'function'
return Router._handleInvalidArguments(client, 'clientTracking.updatePosition', arguments)
WebsocketController.updateClientPosition client, cursorData, (err) ->
if err?
Router._handleError callback, err, client, "clientTracking.updatePosition"
2014-11-14 05:12:35 -05:00
else
callback()
2016-09-07 03:58:35 -04:00
2014-11-14 05:12:35 -05:00
client.on "applyOtUpdate", (doc_id, update, callback = (error) ->) ->
if typeof callback != 'function'
return Router._handleInvalidArguments(client, 'applyOtUpdate', arguments)
2014-11-14 05:12:35 -05:00
WebsocketController.applyOtUpdate client, doc_id, update, (err) ->
if err?
Router._handleError callback, err, client, "applyOtUpdate", {doc_id, update}
else
callback()