2020-02-17 12:34:21 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-17 12:34:04 -05:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
let MongoManager;
|
|
|
|
const {db, ObjectId} = require("./mongojs");
|
|
|
|
const PackManager = require("./PackManager");
|
|
|
|
const async = require("async");
|
|
|
|
const _ = require("underscore");
|
|
|
|
const metrics = require('metrics-sharelatex');
|
|
|
|
const logger = require('logger-sharelatex');
|
2014-02-24 12:43:27 -05:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
module.exports = (MongoManager = {
|
|
|
|
getLastCompressedUpdate(doc_id, callback) {
|
|
|
|
if (callback == null) { callback = function(error, update) {}; }
|
|
|
|
return db.docHistory
|
|
|
|
.find({doc_id: ObjectId(doc_id.toString())}, {pack: {$slice:-1}}) // only return the last entry in a pack
|
|
|
|
.sort({ v: -1 })
|
2014-02-24 12:43:27 -05:00
|
|
|
.limit(1)
|
2020-02-17 12:34:04 -05:00
|
|
|
.toArray(function(error, compressedUpdates) {
|
|
|
|
if (error != null) { return callback(error); }
|
|
|
|
return callback(null, compressedUpdates[0] || null);
|
|
|
|
});
|
|
|
|
},
|
2014-02-24 12:43:27 -05:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
peekLastCompressedUpdate(doc_id, callback) {
|
|
|
|
// under normal use we pass back the last update as
|
|
|
|
// callback(null,update,version).
|
|
|
|
//
|
|
|
|
// when we have an existing last update but want to force a new one
|
|
|
|
// to start, we pass it back as callback(null,null,version), just
|
|
|
|
// giving the version so we can check consistency.
|
|
|
|
if (callback == null) { callback = function(error, update, version) {}; }
|
|
|
|
return MongoManager.getLastCompressedUpdate(doc_id, function(error, update) {
|
|
|
|
if (error != null) { return callback(error); }
|
|
|
|
if (update != null) {
|
|
|
|
if (update.broken) { // marked as broken so we will force a new op
|
|
|
|
return callback(null, null);
|
|
|
|
} else if (update.pack != null) {
|
|
|
|
if (update.finalised) { // no more ops can be appended
|
|
|
|
return callback(null, null, update.pack[0] != null ? update.pack[0].v : undefined);
|
|
|
|
} else {
|
|
|
|
return callback(null, update, update.pack[0] != null ? update.pack[0].v : undefined);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return callback(null, update, update.v);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return PackManager.getLastPackFromIndex(doc_id, function(error, pack) {
|
|
|
|
if (error != null) { return callback(error); }
|
|
|
|
if (((pack != null ? pack.inS3 : undefined) != null) && ((pack != null ? pack.v_end : undefined) != null)) { return callback(null, null, pack.v_end); }
|
|
|
|
return callback(null, null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2014-02-24 12:43:27 -05:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
backportProjectId(project_id, doc_id, callback) {
|
|
|
|
if (callback == null) { callback = function(error) {}; }
|
|
|
|
return db.docHistory.update({
|
|
|
|
doc_id: ObjectId(doc_id.toString()),
|
2014-03-21 10:40:51 -04:00
|
|
|
project_id: { $exists: false }
|
|
|
|
}, {
|
|
|
|
$set: { project_id: ObjectId(project_id.toString()) }
|
|
|
|
}, {
|
|
|
|
multi: true
|
2020-02-17 12:34:04 -05:00
|
|
|
}, callback);
|
|
|
|
},
|
2014-03-21 10:40:51 -04:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
getProjectMetaData(project_id, callback) {
|
|
|
|
if (callback == null) { callback = function(error, metadata) {}; }
|
|
|
|
return db.projectHistoryMetaData.find({
|
2014-03-28 12:01:34 -04:00
|
|
|
project_id: ObjectId(project_id.toString())
|
2020-02-17 12:34:04 -05:00
|
|
|
}, function(error, results) {
|
|
|
|
if (error != null) { return callback(error); }
|
|
|
|
return callback(null, results[0]);
|
|
|
|
});
|
|
|
|
},
|
2014-03-28 12:01:34 -04:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
setProjectMetaData(project_id, metadata, callback) {
|
|
|
|
if (callback == null) { callback = function(error) {}; }
|
|
|
|
return db.projectHistoryMetaData.update({
|
2014-03-28 12:01:34 -04:00
|
|
|
project_id: ObjectId(project_id)
|
|
|
|
}, {
|
|
|
|
$set: metadata
|
|
|
|
}, {
|
|
|
|
upsert: true
|
2020-02-17 12:34:04 -05:00
|
|
|
}, callback);
|
|
|
|
},
|
2014-03-28 12:01:34 -04:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
upgradeHistory(project_id, callback) {
|
|
|
|
// preserve the project's existing history
|
|
|
|
if (callback == null) { callback = function(error) {}; }
|
|
|
|
return db.docHistory.update({
|
|
|
|
project_id: ObjectId(project_id),
|
|
|
|
temporary: true,
|
2016-04-07 09:37:53 -04:00
|
|
|
expiresAt: {$exists: true}
|
|
|
|
}, {
|
2020-02-17 12:34:04 -05:00
|
|
|
$set: {temporary: false},
|
2016-04-07 09:37:53 -04:00
|
|
|
$unset: {expiresAt: ""}
|
|
|
|
}, {
|
|
|
|
multi: true
|
2020-02-17 12:34:04 -05:00
|
|
|
}, callback);
|
|
|
|
},
|
2016-04-07 09:37:53 -04:00
|
|
|
|
2020-02-17 12:34:04 -05:00
|
|
|
ensureIndices() {
|
|
|
|
// For finding all updates that go into a diff for a doc
|
|
|
|
db.docHistory.ensureIndex({ doc_id: 1, v: 1 }, { background: true });
|
|
|
|
// For finding all updates that affect a project
|
|
|
|
db.docHistory.ensureIndex({ project_id: 1, "meta.end_ts": 1 }, { background: true });
|
|
|
|
// For finding updates that don't yet have a project_id and need it inserting
|
|
|
|
db.docHistory.ensureIndex({ doc_id: 1, project_id: 1 }, { background: true });
|
|
|
|
// For finding project meta-data
|
|
|
|
db.projectHistoryMetaData.ensureIndex({ project_id: 1 }, { background: true });
|
|
|
|
// TTL index for auto deleting week old temporary ops
|
|
|
|
db.docHistory.ensureIndex({ expiresAt: 1 }, { expireAfterSeconds: 0, background: true });
|
|
|
|
// For finding packs to be checked for archiving
|
|
|
|
db.docHistory.ensureIndex({ last_checked: 1 }, { background: true });
|
|
|
|
// For finding archived packs
|
|
|
|
return db.docHistoryIndex.ensureIndex({ project_id: 1 }, { background: true });
|
|
|
|
}
|
|
|
|
});
|
2017-03-16 11:17:38 -04:00
|
|
|
|
|
|
|
|
2017-03-17 10:58:35 -04:00
|
|
|
[
|
|
|
|
'getLastCompressedUpdate',
|
|
|
|
'getProjectMetaData',
|
|
|
|
'setProjectMetaData'
|
2020-02-17 12:34:04 -05:00
|
|
|
].map(method => metrics.timeAsyncMethod(MongoManager, method, 'mongo.MongoManager', logger));
|