mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
e73a5d9103
Reduce Log Level GitOrigin-RevId: 63a8859e6b78cb0774a28069089f4bce73eb91ec
390 lines
11 KiB
JavaScript
390 lines
11 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
handle-callback-err,
|
|
max-len,
|
|
no-undef,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
let HistoryController
|
|
const _ = require('lodash')
|
|
const async = require('async')
|
|
const logger = require('logger-sharelatex')
|
|
const request = require('request')
|
|
const settings = require('settings-sharelatex')
|
|
const AuthenticationController = require('../Authentication/AuthenticationController')
|
|
const Errors = require('../Errors/Errors')
|
|
const HistoryManager = require('./HistoryManager')
|
|
const ProjectDetailsHandler = require('../Project/ProjectDetailsHandler')
|
|
const ProjectEntityUpdateHandler = require('../Project/ProjectEntityUpdateHandler')
|
|
const RestoreManager = require('./RestoreManager')
|
|
|
|
module.exports = HistoryController = {
|
|
selectHistoryApi(req, res, next) {
|
|
if (next == null) {
|
|
next = function(error) {}
|
|
}
|
|
const project_id = req.params != null ? req.params.Project_id : undefined
|
|
// find out which type of history service this project uses
|
|
return ProjectDetailsHandler.getDetails(project_id, function(err, project) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
const history =
|
|
project.overleaf != null ? project.overleaf.history : undefined
|
|
if (
|
|
(history != null ? history.id : undefined) != null &&
|
|
(history != null ? history.display : undefined)
|
|
) {
|
|
req.useProjectHistory = true
|
|
} else {
|
|
req.useProjectHistory = false
|
|
}
|
|
return next()
|
|
})
|
|
},
|
|
|
|
ensureProjectHistoryEnabled(req, res, next) {
|
|
if (next == null) {
|
|
next = function(error) {}
|
|
}
|
|
if (req.useProjectHistory != null) {
|
|
return next()
|
|
} else {
|
|
logger.log({ project_id }, 'project history not enabled')
|
|
return res.sendStatus(404)
|
|
}
|
|
},
|
|
|
|
proxyToHistoryApi(req, res, next) {
|
|
if (next == null) {
|
|
next = function(error) {}
|
|
}
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
const url =
|
|
HistoryController.buildHistoryServiceUrl(req.useProjectHistory) + req.url
|
|
|
|
logger.log({ url }, 'proxying to history api')
|
|
const getReq = request({
|
|
url,
|
|
method: req.method,
|
|
headers: {
|
|
'X-User-Id': user_id
|
|
}
|
|
})
|
|
getReq.pipe(res)
|
|
return getReq.on('error', function(error) {
|
|
logger.warn({ url, err: error }, 'history API error')
|
|
return next(error)
|
|
})
|
|
},
|
|
|
|
proxyToHistoryApiAndInjectUserDetails(req, res, next) {
|
|
if (next == null) {
|
|
next = function(error) {}
|
|
}
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
const url =
|
|
HistoryController.buildHistoryServiceUrl(req.useProjectHistory) + req.url
|
|
logger.log({ url }, 'proxying to history api')
|
|
return HistoryController._makeRequest(
|
|
{
|
|
url,
|
|
method: req.method,
|
|
json: true,
|
|
headers: {
|
|
'X-User-Id': user_id
|
|
}
|
|
},
|
|
function(error, body) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return HistoryManager.injectUserDetails(body, function(error, data) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.json(data)
|
|
})
|
|
}
|
|
)
|
|
},
|
|
|
|
buildHistoryServiceUrl(useProjectHistory) {
|
|
// choose a history service, either document-level (trackchanges)
|
|
// or project-level (project_history)
|
|
if (useProjectHistory) {
|
|
return settings.apis.project_history.url
|
|
} else {
|
|
return settings.apis.trackchanges.url
|
|
}
|
|
},
|
|
|
|
resyncProjectHistory(req, res, next) {
|
|
if (next == null) {
|
|
next = function(error) {}
|
|
}
|
|
const project_id = req.params.Project_id
|
|
return ProjectEntityUpdateHandler.resyncProjectHistory(project_id, function(
|
|
error
|
|
) {
|
|
if (error instanceof Errors.ProjectHistoryDisabledError) {
|
|
return res.sendStatus(404)
|
|
}
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.sendStatus(204)
|
|
})
|
|
},
|
|
|
|
restoreFileFromV2(req, res, next) {
|
|
const { project_id } = req.params
|
|
const { version, pathname } = req.body
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
logger.log({ project_id, version, pathname }, 'restoring file from v2')
|
|
return RestoreManager.restoreFileFromV2(
|
|
user_id,
|
|
project_id,
|
|
version,
|
|
pathname,
|
|
function(error, entity) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.json({
|
|
type: entity.type,
|
|
id: entity._id
|
|
})
|
|
}
|
|
)
|
|
},
|
|
|
|
restoreDocFromDeletedDoc(req, res, next) {
|
|
const { project_id, doc_id } = req.params
|
|
const { name } = req.body
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
if (name == null) {
|
|
return res.sendStatus(400) // Malformed request
|
|
}
|
|
logger.log(
|
|
{ project_id, doc_id, user_id },
|
|
'restoring doc from v1 deleted doc'
|
|
)
|
|
return RestoreManager.restoreDocFromDeletedDoc(
|
|
user_id,
|
|
project_id,
|
|
doc_id,
|
|
name,
|
|
(err, doc) => {
|
|
if (typeof error !== 'undefined' && error !== null) {
|
|
return next(error)
|
|
}
|
|
return res.json({
|
|
doc_id: doc._id
|
|
})
|
|
}
|
|
)
|
|
},
|
|
|
|
getLabels(req, res, next) {
|
|
const project_id = req.params.Project_id
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
return HistoryController._makeRequest(
|
|
{
|
|
method: 'GET',
|
|
url: `${
|
|
settings.apis.project_history.url
|
|
}/project/${project_id}/labels`,
|
|
json: true
|
|
},
|
|
function(error, labels) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.json(labels)
|
|
}
|
|
)
|
|
},
|
|
|
|
createLabel(req, res, next) {
|
|
const project_id = req.params.Project_id
|
|
const { comment, version } = req.body
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
return HistoryController._makeRequest(
|
|
{
|
|
method: 'POST',
|
|
url: `${
|
|
settings.apis.project_history.url
|
|
}/project/${project_id}/user/${user_id}/labels`,
|
|
json: { comment, version }
|
|
},
|
|
function(error, label) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.json(label)
|
|
}
|
|
)
|
|
},
|
|
|
|
deleteLabel(req, res, next) {
|
|
const project_id = req.params.Project_id
|
|
const { label_id } = req.params
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
return HistoryController._makeRequest(
|
|
{
|
|
method: 'DELETE',
|
|
url: `${
|
|
settings.apis.project_history.url
|
|
}/project/${project_id}/user/${user_id}/labels/${label_id}`
|
|
},
|
|
function(error) {
|
|
if (error != null) {
|
|
return next(error)
|
|
}
|
|
return res.sendStatus(204)
|
|
}
|
|
)
|
|
},
|
|
|
|
_makeRequest(options, callback) {
|
|
return request(options, function(error, response, body) {
|
|
if (error != null) {
|
|
return callback(error)
|
|
}
|
|
if (response.statusCode >= 200 && response.statusCode < 300) {
|
|
return callback(null, body)
|
|
} else {
|
|
error = new Error(
|
|
`history api responded with non-success code: ${response.statusCode}`
|
|
)
|
|
logger.warn(
|
|
{ err: error },
|
|
`project-history api responded with non-success code: ${
|
|
response.statusCode
|
|
}`
|
|
)
|
|
return callback(error)
|
|
}
|
|
})
|
|
},
|
|
|
|
downloadZipOfVersion(req, res, next) {
|
|
const { project_id, version } = req.params
|
|
logger.log({ project_id, version }, 'got request for zip file at version')
|
|
return ProjectDetailsHandler.getDetails(project_id, function(err, project) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
const v1_id = __guard__(
|
|
project.overleaf != null ? project.overleaf.history : undefined,
|
|
x => x.id
|
|
)
|
|
if (v1_id == null) {
|
|
logger.err(
|
|
{ project_id, version },
|
|
'got request for zip version of non-v1 history project'
|
|
)
|
|
return res.sendStatus(402)
|
|
}
|
|
return HistoryController._pipeHistoryZipToResponse(
|
|
v1_id,
|
|
version,
|
|
`${project.name} (Version ${version})`,
|
|
res,
|
|
next
|
|
)
|
|
})
|
|
},
|
|
|
|
_pipeHistoryZipToResponse(v1_project_id, version, name, res, next) {
|
|
// increase timeout to 6 minutes
|
|
res.setTimeout(6 * 60 * 1000)
|
|
const url = `${
|
|
settings.apis.v1_history.url
|
|
}/projects/${v1_project_id}/version/${version}/zip`
|
|
logger.log(
|
|
{ v1_project_id, version, url },
|
|
'getting s3 url from history api'
|
|
)
|
|
const options = {
|
|
auth: {
|
|
user: settings.apis.v1_history.user,
|
|
pass: settings.apis.v1_history.pass
|
|
},
|
|
json: true,
|
|
method: 'post',
|
|
url
|
|
}
|
|
return request(options, function(err, response, body) {
|
|
if (err) {
|
|
logger.warn({ err, v1_project_id, version }, 'history API error')
|
|
return next(err)
|
|
}
|
|
let retryAttempt = 0
|
|
let retryDelay = 2000
|
|
// retry for about 6 minutes starting with short delay
|
|
return async.retry(
|
|
40,
|
|
callback =>
|
|
setTimeout(function() {
|
|
// increase delay by 1 second up to 10
|
|
if (retryDelay < 10000) {
|
|
retryDelay += 1000
|
|
}
|
|
retryAttempt++
|
|
const getReq = request({
|
|
url: body.zipUrl,
|
|
sendImmediately: true
|
|
})
|
|
getReq.on('response', function(response) {
|
|
if (response.statusCode !== 200) {
|
|
return callback(new Error('invalid response'))
|
|
}
|
|
// pipe also proxies the headers, but we want to customize these ones
|
|
delete response.headers['content-disposition']
|
|
delete response.headers['content-type']
|
|
res.status(response.statusCode)
|
|
res.setContentDisposition('attachment', {
|
|
filename: `${name}.zip`
|
|
})
|
|
res.contentType('application/zip')
|
|
getReq.pipe(res)
|
|
return callback()
|
|
})
|
|
return getReq.on('error', function(err) {
|
|
logger.warn(
|
|
{ err, v1_project_id, version, retryAttempt },
|
|
'history s3 download error'
|
|
)
|
|
return callback(err)
|
|
})
|
|
}, retryDelay),
|
|
function(err) {
|
|
if (err) {
|
|
logger.warn(
|
|
{ err, v1_project_id, version, retryAttempt },
|
|
'history s3 download failed'
|
|
)
|
|
return next(err)
|
|
}
|
|
}
|
|
)
|
|
})
|
|
}
|
|
}
|
|
|
|
function __guard__(value, transform) {
|
|
return typeof value !== 'undefined' && value !== null
|
|
? transform(value)
|
|
: undefined
|
|
}
|