mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
4ca71fb379
And DRY the controller a bit.
28 lines
891 B
CoffeeScript
28 lines
891 B
CoffeeScript
AnalyticsManager = require "./AnalyticsManager"
|
|
Errors = require "../Errors/Errors"
|
|
AuthenticationController = require("../Authentication/AuthenticationController")
|
|
|
|
module.exports = AnalyticsController =
|
|
updateEditingSession: (req, res, next) ->
|
|
userId = AuthenticationController.getLoggedInUserId(req)
|
|
projectId = req.params.projectId
|
|
|
|
if userId?
|
|
AnalyticsManager.updateEditingSession userId, projectId, {}, (error) ->
|
|
respondWith(error, res, next)
|
|
else
|
|
res.send 204
|
|
|
|
recordEvent: (req, res, next) ->
|
|
user_id = AuthenticationController.getLoggedInUserId(req) or req.sessionID
|
|
AnalyticsManager.recordEvent user_id, req.params.event, req.body, (error) ->
|
|
respondWith(error, res, next)
|
|
|
|
respondWith = (error, res, next) ->
|
|
if error instanceof Errors.ServiceNotConfiguredError
|
|
# ignore, no-op
|
|
res.send(204)
|
|
else if error?
|
|
next(error)
|
|
else
|
|
res.send 204
|