2018-10-29 09:43:46 -04:00
|
|
|
Project = require('../../models/Project').Project
|
|
|
|
ProjectDetailsHandler = require "./ProjectDetailsHandler"
|
|
|
|
logger = require('logger-sharelatex')
|
|
|
|
settings = require("settings-sharelatex")
|
|
|
|
HistoryManager = require "../History/HistoryManager"
|
|
|
|
ProjectEntityUpdateHandler = require "./ProjectEntityUpdateHandler"
|
|
|
|
|
|
|
|
module.exports = ProjectHistoryHandler =
|
|
|
|
|
|
|
|
setHistoryId: (project_id, history_id, callback = (err) ->) ->
|
|
|
|
# reject invalid history ids
|
|
|
|
return callback(new Error("invalid history id")) if !history_id or typeof(history_id) isnt 'number'
|
|
|
|
# use $exists:false to prevent overwriting any existing history id, atomically
|
|
|
|
Project.update {_id: project_id, "overleaf.history.id": {$exists:false}}, {"overleaf.history.id":history_id}, (err, result)->
|
|
|
|
return callback(err) if err?
|
|
|
|
return callback(new Error("history exists")) if result?.n == 0
|
|
|
|
callback()
|
|
|
|
|
|
|
|
getHistoryId: (project_id, callback = (err, result) ->) ->
|
|
|
|
ProjectDetailsHandler.getDetails project_id, (err, project) ->
|
|
|
|
return callback(err) if err? # n.b. getDetails returns an error if the project doesn't exist
|
|
|
|
callback(null, project?.overleaf?.history?.id)
|
|
|
|
|
2019-05-01 05:25:27 -04:00
|
|
|
upgradeHistory: (project_id, callback = (err, result) ->) ->
|
|
|
|
# project must have an overleaf.history.id before allowing display of new history
|
|
|
|
Project.update {_id: project_id, "overleaf.history.id": {$exists:true}}, {"overleaf.history.display":true, "overleaf.history.upgradedAt": new Date()}, (err, result)->
|
|
|
|
return callback(err) if err?
|
|
|
|
# return an error if overleaf.history.id wasn't present
|
|
|
|
return callback(new Error("history not upgraded")) if result?.n == 0
|
|
|
|
callback()
|
|
|
|
|
|
|
|
downgradeHistory: (project_id, callback = (err, result) ->) ->
|
|
|
|
Project.update {_id: project_id, "overleaf.history.upgradedAt": {$exists:true}}, {"overleaf.history.display":false, $unset:{"overleaf.history.upgradedAt":1}}, (err, result)->
|
|
|
|
return callback(err) if err?
|
|
|
|
return callback(new Error("history not downgraded")) if result?.n == 0
|
|
|
|
callback()
|
|
|
|
|
2018-10-29 09:43:46 -04:00
|
|
|
ensureHistoryExistsForProject: (project_id, callback = (err) ->) ->
|
|
|
|
# We can only set a history id for a project that doesn't have one. The
|
|
|
|
# history id is cached in the project history service, and changing an
|
|
|
|
# existing value corrupts the history, leaving it in an irrecoverable
|
|
|
|
# state. Setting a history id when one wasn't present before is ok,
|
|
|
|
# because undefined history ids aren't cached.
|
|
|
|
ProjectHistoryHandler.getHistoryId project_id, (err, history_id) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
return callback() if history_id? # history already exists, success
|
|
|
|
HistoryManager.initializeProject (err, history) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
return callback(new Error("failed to initialize history id")) if !history?.overleaf_id
|
|
|
|
ProjectHistoryHandler.setHistoryId project_id, history.overleaf_id, (err) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
ProjectEntityUpdateHandler.resyncProjectHistory project_id, (err) ->
|
|
|
|
return callback(err) if err?
|
|
|
|
logger.log {project_id: project_id, history_id: history.overleaf_id}, "started syncing project with new history id"
|
|
|
|
HistoryManager.flushProject project_id, callback
|