mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5fe98bf0fd
Camel case variables in project-history GitOrigin-RevId: 299245883b44366911ee43ee7e644a7bfa3d8319
80 lines
2.4 KiB
JavaScript
80 lines
2.4 KiB
JavaScript
/* eslint-disable
|
|
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
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
import request from 'request'
|
|
import logger from '@overleaf/logger'
|
|
import Settings from '@overleaf/settings'
|
|
import OError from '@overleaf/o-error'
|
|
|
|
export function getDocument(projectId, docId, callback) {
|
|
if (callback == null) {
|
|
callback = function () {}
|
|
}
|
|
const url = `${Settings.apis.documentupdater.url}/project/${projectId}/doc/${docId}`
|
|
logger.debug({ projectId, docId }, 'getting doc from document updater')
|
|
return request.get(url, function (error, res, body) {
|
|
if (error != null) {
|
|
return callback(OError.tag(error))
|
|
}
|
|
if (res.statusCode >= 200 && res.statusCode < 300) {
|
|
try {
|
|
body = JSON.parse(body)
|
|
} catch (error1) {
|
|
error = error1
|
|
return callback(error)
|
|
}
|
|
logger.debug(
|
|
{ projectId, docId, version: body.version },
|
|
'got doc from document updater'
|
|
)
|
|
return callback(null, body.lines.join('\n'), body.version)
|
|
} else {
|
|
error = new OError(
|
|
`doc updater returned a non-success status code: ${res.statusCode}`,
|
|
{ project_id: projectId, doc_id: docId, url }
|
|
)
|
|
return callback(error)
|
|
}
|
|
})
|
|
}
|
|
|
|
export function setDocument(projectId, docId, content, userId, callback) {
|
|
if (callback == null) {
|
|
callback = function () {}
|
|
}
|
|
const url = `${Settings.apis.documentupdater.url}/project/${projectId}/doc/${docId}`
|
|
logger.debug({ projectId, docId }, 'setting doc in document updater')
|
|
return request.post(
|
|
{
|
|
url,
|
|
json: {
|
|
lines: content.split('\n'),
|
|
source: 'restore',
|
|
user_id: userId,
|
|
undoing: true,
|
|
},
|
|
},
|
|
function (error, res, body) {
|
|
if (error != null) {
|
|
return callback(OError.tag(error))
|
|
}
|
|
if (res.statusCode >= 200 && res.statusCode < 300) {
|
|
return callback(null)
|
|
} else {
|
|
error = new OError(
|
|
`doc updater returned a non-success status code: ${res.statusCode}`,
|
|
{ project_id: projectId, doc_id: docId, url }
|
|
)
|
|
return callback(error)
|
|
}
|
|
}
|
|
)
|
|
}
|