2014-03-05 10:59:40 -05:00
|
|
|
UpdatesManager = require "./UpdatesManager"
|
2014-03-04 10:27:03 -05:00
|
|
|
DiffManager = require "./DiffManager"
|
2015-06-04 11:23:49 -04:00
|
|
|
PackManager = require "./PackManager"
|
2014-03-10 12:58:26 -04:00
|
|
|
RestoreManager = require "./RestoreManager"
|
2014-01-27 13:09:37 -05:00
|
|
|
logger = require "logger-sharelatex"
|
|
|
|
|
|
|
|
module.exports = HttpController =
|
2014-03-21 11:57:17 -04:00
|
|
|
flushDoc: (req, res, next = (error) ->) ->
|
2014-01-27 13:09:37 -05:00
|
|
|
doc_id = req.params.doc_id
|
2014-03-19 12:40:55 -04:00
|
|
|
project_id = req.params.project_id
|
2014-03-21 11:57:17 -04:00
|
|
|
logger.log project_id: project_id, doc_id: doc_id, "compressing doc history"
|
2014-03-19 12:40:55 -04:00
|
|
|
UpdatesManager.processUncompressedUpdatesWithLock project_id, doc_id, (error) ->
|
2014-01-27 13:09:37 -05:00
|
|
|
return next(error) if error?
|
|
|
|
res.send 204
|
2014-03-04 10:27:03 -05:00
|
|
|
|
2014-03-21 11:57:17 -04:00
|
|
|
flushProject: (req, res, next = (error) ->) ->
|
|
|
|
project_id = req.params.project_id
|
|
|
|
logger.log project_id: project_id, "compressing project history"
|
|
|
|
UpdatesManager.processUncompressedUpdatesForProject project_id, (error) ->
|
|
|
|
return next(error) if error?
|
|
|
|
res.send 204
|
|
|
|
|
2015-06-04 11:23:49 -04:00
|
|
|
packDoc: (req, res, next = (error) ->) ->
|
|
|
|
doc_id = req.params.doc_id
|
|
|
|
logger.log doc_id: doc_id, "packing doc history"
|
|
|
|
PackManager.packDocHistory doc_id, (error) ->
|
|
|
|
return next(error) if error?
|
|
|
|
res.send 204
|
|
|
|
|
2014-03-04 10:27:03 -05:00
|
|
|
getDiff: (req, res, next = (error) ->) ->
|
|
|
|
doc_id = req.params.doc_id
|
|
|
|
project_id = req.params.project_id
|
|
|
|
|
|
|
|
if req.query.from?
|
|
|
|
from = parseInt(req.query.from, 10)
|
|
|
|
else
|
|
|
|
from = null
|
|
|
|
if req.query.to?
|
|
|
|
to = parseInt(req.query.to, 10)
|
|
|
|
else
|
|
|
|
to = null
|
|
|
|
|
|
|
|
logger.log project_id, doc_id: doc_id, from: from, to: to, "getting diff"
|
|
|
|
DiffManager.getDiff project_id, doc_id, from, to, (error, diff) ->
|
|
|
|
return next(error) if error?
|
|
|
|
res.send JSON.stringify(diff: diff)
|
|
|
|
|
2014-03-05 10:06:46 -05:00
|
|
|
getUpdates: (req, res, next = (error) ->) ->
|
|
|
|
project_id = req.params.project_id
|
2014-03-05 10:59:40 -05:00
|
|
|
|
2014-03-20 08:10:04 -04:00
|
|
|
if req.query.before?
|
|
|
|
before = parseInt(req.query.before, 10)
|
|
|
|
if req.query.min_count?
|
|
|
|
min_count = parseInt(req.query.min_count, 10)
|
2014-03-05 10:59:40 -05:00
|
|
|
|
2014-03-20 08:10:04 -04:00
|
|
|
UpdatesManager.getSummarizedProjectUpdates project_id, before: before, min_count: min_count, (error, updates, nextBeforeTimestamp) ->
|
2014-03-05 10:59:40 -05:00
|
|
|
return next(error) if error?
|
2014-03-20 08:10:04 -04:00
|
|
|
res.send JSON.stringify
|
|
|
|
updates: updates
|
|
|
|
nextBeforeTimestamp: nextBeforeTimestamp
|
2014-03-11 13:39:40 -04:00
|
|
|
|
2014-03-10 12:58:26 -04:00
|
|
|
restore: (req, res, next = (error) ->) ->
|
|
|
|
{doc_id, project_id, version} = req.params
|
2014-03-11 09:01:07 -04:00
|
|
|
user_id = req.headers["x-user-id"]
|
2014-03-10 12:58:26 -04:00
|
|
|
version = parseInt(version, 10)
|
2014-03-11 09:01:07 -04:00
|
|
|
RestoreManager.restoreToBeforeVersion project_id, doc_id, version, user_id, (error) ->
|
2014-03-10 12:58:26 -04:00
|
|
|
return next(error) if error?
|
|
|
|
res.send 204
|