overleaf/services/docstore/app/js/DocArchiveManager.js

232 lines
5.9 KiB
JavaScript
Raw Normal View History

2020-07-31 11:20:07 -04:00
const { callbackify } = require('util')
const MongoManager = require('./MongoManager').promises
const Errors = require('./Errors')
const logger = require('@overleaf/logger')
const Settings = require('@overleaf/settings')
const crypto = require('crypto')
2020-07-23 14:42:49 -04:00
const Streamifier = require('streamifier')
const RangeManager = require('./RangeManager')
2020-07-23 14:42:49 -04:00
const PersistorManager = require('./PersistorManager')
2020-09-14 11:34:34 -04:00
const pMap = require('p-map')
2015-06-02 14:55:22 -04:00
const PARALLEL_JOBS = Settings.parallelArchiveJobs
const ARCHIVE_BATCH_SIZE = Settings.archiveBatchSize
const UN_ARCHIVE_BATCH_SIZE = Settings.unArchiveBatchSize
2015-06-02 14:55:22 -04:00
2020-07-23 14:42:49 -04:00
module.exports = {
archiveAllDocs: callbackify(archiveAllDocs),
archiveDocById: callbackify(archiveDocById),
2020-07-23 14:42:49 -04:00
archiveDoc: callbackify(archiveDoc),
unArchiveAllDocs: callbackify(unArchiveAllDocs),
unarchiveDoc: callbackify(unarchiveDoc),
destroyProject: callbackify(destroyProject),
getDoc: callbackify(getDoc),
2020-07-23 14:42:49 -04:00
promises: {
archiveAllDocs,
archiveDocById,
2020-07-23 14:42:49 -04:00
archiveDoc,
unArchiveAllDocs,
unarchiveDoc,
destroyProject,
getDoc,
2021-07-13 07:04:48 -04:00
},
2020-07-23 14:42:49 -04:00
}
2015-06-02 14:55:22 -04:00
2020-07-23 14:42:49 -04:00
async function archiveAllDocs(projectId) {
while (true) {
const docs = await MongoManager.getNonArchivedProjectDocs(
projectId,
ARCHIVE_BATCH_SIZE
)
if (!docs || docs.length === 0) {
break
}
2015-06-02 14:55:22 -04:00
2021-07-13 07:04:48 -04:00
await pMap(docs, doc => archiveDoc(projectId, doc), {
concurrency: PARALLEL_JOBS,
})
2020-07-23 14:42:49 -04:00
}
}
2015-06-02 14:55:22 -04:00
async function archiveDocById(projectId, docId) {
const doc = await MongoManager.findDoc(projectId, docId, {
lines: true,
ranges: true,
rev: true,
2021-07-13 07:04:48 -04:00
inS3: true,
})
if (!doc) {
throw new Errors.NotFoundError(
`Cannot find doc ${docId} in project ${projectId}`
)
}
if (doc.inS3) {
// No need to throw an error if the doc is already archived
return
}
await archiveDoc(projectId, doc)
}
2020-07-23 14:42:49 -04:00
async function archiveDoc(projectId, doc) {
logger.debug(
2020-07-23 14:42:49 -04:00
{ project_id: projectId, doc_id: doc._id },
'sending doc to persistor'
)
const key = `${projectId}/${doc._id}`
2020-07-23 14:42:49 -04:00
if (doc.lines == null) {
throw new Error('doc has no lines')
}
2020-07-23 14:42:49 -04:00
const json = JSON.stringify({
lines: doc.lines,
ranges: doc.ranges,
rev: doc.rev,
2021-07-13 07:04:48 -04:00
schema_v: 1,
2020-07-23 14:42:49 -04:00
})
2020-07-23 14:42:49 -04:00
// this should never happen, but protects against memory-corruption errors that
// have happened in the past
if (json.indexOf('\u0000') > -1) {
const error = new Error('null bytes detected')
logger.err({ err: error, doc }, error.message)
throw error
}
const md5 = crypto.createHash('md5').update(json).digest('hex')
const stream = Streamifier.createReadStream(json)
await PersistorManager.sendStream(Settings.docstore.bucket, key, stream, {
2021-07-13 07:04:48 -04:00
sourceMd5: md5,
2020-07-23 14:42:49 -04:00
})
2020-07-31 11:20:07 -04:00
await MongoManager.markDocAsArchived(doc._id, doc.rev)
2020-07-23 14:42:49 -04:00
}
async function unArchiveAllDocs(projectId) {
while (true) {
let docs
if (Settings.docstore.keepSoftDeletedDocsArchived) {
docs = await MongoManager.getNonDeletedArchivedProjectDocs(
projectId,
UN_ARCHIVE_BATCH_SIZE
)
} else {
docs = await MongoManager.getArchivedProjectDocs(
projectId,
UN_ARCHIVE_BATCH_SIZE
)
}
if (!docs || docs.length === 0) {
break
}
2021-07-13 07:04:48 -04:00
await pMap(docs, doc => unarchiveDoc(projectId, doc._id), {
concurrency: PARALLEL_JOBS,
})
2020-07-23 14:42:49 -04:00
}
}
// get the doc from the PersistorManager without storing it in mongo
async function getDoc(projectId, docId) {
2020-07-23 14:42:49 -04:00
const key = `${projectId}/${docId}`
const sourceMd5 = await PersistorManager.getObjectMd5Hash(
Settings.docstore.bucket,
key
)
const stream = await PersistorManager.getObjectStream(
Settings.docstore.bucket,
key
)
2020-07-23 14:42:49 -04:00
stream.resume()
const buffer = await _streamToBuffer(stream)
const md5 = crypto.createHash('md5').update(buffer).digest('hex')
2020-07-23 14:42:49 -04:00
if (sourceMd5 !== md5) {
throw new Errors.Md5MismatchError('md5 mismatch when downloading doc', {
key,
sourceMd5,
2021-07-13 07:04:48 -04:00
md5,
})
2020-07-23 14:42:49 -04:00
}
const json = buffer.toString()
return _deserializeArchivedDoc(json)
}
// get the doc and unarchive it to mongo
async function unarchiveDoc(projectId, docId) {
logger.debug({ projectId, docId }, 'getting doc from persistor')
const mongoDoc = await MongoManager.findDoc(projectId, docId, {
inS3: 1,
rev: 1,
})
if (!mongoDoc.inS3) {
// The doc is already unarchived
return
}
const archivedDoc = await getDoc(projectId, docId)
if (archivedDoc.rev == null) {
// Older archived docs didn't have a rev. Assume that the rev of the
// archived doc is the rev that was stored in Mongo when we retrieved it
// earlier.
archivedDoc.rev = mongoDoc.rev
}
await MongoManager.restoreArchivedDoc(projectId, docId, archivedDoc)
2020-07-23 14:42:49 -04:00
}
async function destroyProject(projectId) {
const tasks = [MongoManager.destroyProject(projectId)]
if (_isArchivingEnabled()) {
tasks.push(
PersistorManager.deleteDirectory(Settings.docstore.bucket, projectId)
)
2020-07-23 14:42:49 -04:00
}
await Promise.all(tasks)
2020-07-23 14:42:49 -04:00
}
async function _streamToBuffer(stream) {
const chunks = []
return new Promise((resolve, reject) => {
stream.on('data', chunk => chunks.push(chunk))
stream.on('error', reject)
stream.on('end', () => resolve(Buffer.concat(chunks)))
2020-07-23 14:42:49 -04:00
})
}
function _deserializeArchivedDoc(json) {
const doc = JSON.parse(json)
const result = {}
if (doc.schema_v === 1 && doc.lines != null) {
result.lines = doc.lines
if (doc.ranges != null) {
result.ranges = RangeManager.jsonRangesToMongo(doc.ranges)
}
} else if (Array.isArray(doc)) {
result.lines = doc
} else {
throw new Error("I don't understand the doc format in s3")
}
2020-07-23 14:42:49 -04:00
if (doc.rev != null) {
result.rev = doc.rev
2020-07-23 14:42:49 -04:00
}
return result
2020-07-23 14:42:49 -04:00
}
function _isArchivingEnabled() {
const backend = Settings.docstore.backend
if (!backend) {
return false
}
// The default backend is S3. If another backend is configured or the S3
// backend itself is correctly configured, then archiving is enabled.
if (backend === 's3' && Settings.docstore.s3 == null) {
return false
}
return true
}