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

124 lines
4.5 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"
Utils = require "./Utils"
bodyParser = require "body-parser"
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, extraAttrs = {}) ->
Utils.getClientAttributes client, ["project_id", "doc_id", "user_id"], (_, attrs) ->
for key, value of extraAttrs
attrs[key] = value
attrs.client_id = client.id
attrs.err = error
if error.message in ["not authorized", "doc updater could not load requested ops"]
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"}
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
2016-09-07 03:58:35 -04:00
session.on 'connection', (error, client, session) ->
if client? and error?.message?.match(/could not look up session by key/)
logger.err 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.emit("connectionAccepted")
2014-11-17 08:12:49 -05:00
metrics.inc('socket-io.connection')
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) ->
2017-09-29 11:32:46 -04:00
if data.anonToken
user.anonToken = data.anonToken
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')
WebsocketController.leaveProject io, client, (err) ->
if err?
Router._handleError null, err, client, "leaveProject"
2016-09-07 03:58:35 -04:00
2014-11-12 10:54:55 -05:00
client.on "joinDoc", (doc_id, fromVersion, callback) ->
# fromVersion is optional
if typeof fromVersion == "function"
callback = fromVersion
fromVersion = -1
2016-09-07 03:58:35 -04:00
2014-11-12 10:54:55 -05:00
WebsocketController.joinDoc client, doc_id, fromVersion, (err, args...) ->
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) ->
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) ->) ->
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) ->) ->
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) ->) ->
WebsocketController.applyOtUpdate client, doc_id, update, (err) ->
if err?
Router._handleError callback, err, client, "applyOtUpdate", {doc_id, update}
else
callback()