overleaf/services/document-updater/app/js/DocumentManager.js

663 lines
17 KiB
JavaScript
Raw Normal View History

let DocumentManager
const RedisManager = require('./RedisManager')
const ProjectHistoryRedisManager = require('./ProjectHistoryRedisManager')
const PersistenceManager = require('./PersistenceManager')
const DiffCodec = require('./DiffCodec')
const logger = require('@overleaf/logger')
const Metrics = require('./Metrics')
const HistoryManager = require('./HistoryManager')
const Errors = require('./Errors')
const RangesManager = require('./RangesManager')
const MAX_UNFLUSHED_AGE = 300 * 1000 // 5 mins, document should be flushed to mongo this time after a change
module.exports = DocumentManager = {
getDoc(projectId, docId, _callback) {
const timer = new Metrics.Timer('docManager.getDoc')
const callback = (...args) => {
timer.done()
_callback(...args)
}
RedisManager.getDoc(
projectId,
docId,
(
2021-07-13 07:04:42 -04:00
error,
lines,
version,
ranges,
pathname,
projectHistoryId,
unflushedTime
) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
if (lines == null || version == null) {
logger.debug(
{ projectId, docId },
2021-07-13 07:04:42 -04:00
'doc not in redis so getting from persistence API'
)
PersistenceManager.getDoc(
projectId,
docId,
(
2021-07-13 07:04:42 -04:00
error,
lines,
version,
2021-07-13 07:04:42 -04:00
ranges,
pathname,
projectHistoryId,
projectHistoryType
) => {
if (error) {
return callback(error)
}
logger.debug(
2021-07-13 07:04:42 -04:00
{
projectId,
docId,
2021-07-13 07:04:42 -04:00
lines,
version,
pathname,
projectHistoryId,
projectHistoryType,
},
'got doc from persistence API'
)
RedisManager.putDocInMemory(
projectId,
docId,
2021-07-13 07:04:42 -04:00
lines,
version,
ranges,
pathname,
projectHistoryId,
error => {
if (error) {
return callback(error)
}
RedisManager.setHistoryType(
docId,
2021-07-13 07:04:42 -04:00
projectHistoryType,
error => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
callback(
2021-07-13 07:04:42 -04:00
null,
lines,
version,
ranges || {},
pathname,
projectHistoryId,
null,
false
)
}
)
}
)
}
)
2021-07-13 07:04:42 -04:00
} else {
callback(
2021-07-13 07:04:42 -04:00
null,
lines,
version,
ranges,
pathname,
projectHistoryId,
unflushedTime,
true
)
}
}
2021-07-13 07:04:42 -04:00
)
},
getDocAndRecentOps(projectId, docId, fromVersion, _callback) {
const timer = new Metrics.Timer('docManager.getDocAndRecentOps')
const callback = (...args) => {
timer.done()
_callback(...args)
}
DocumentManager.getDoc(
projectId,
docId,
(error, lines, version, ranges, pathname, projectHistoryId) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
if (fromVersion === -1) {
callback(null, lines, version, [], ranges, pathname, projectHistoryId)
2021-07-13 07:04:42 -04:00
} else {
RedisManager.getPreviousDocOps(
docId,
2021-07-13 07:04:42 -04:00
fromVersion,
version,
(error, ops) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
callback(
2021-07-13 07:04:42 -04:00
null,
lines,
version,
ops,
ranges,
pathname,
projectHistoryId
)
}
2021-07-13 07:04:42 -04:00
)
}
}
2021-07-13 07:04:42 -04:00
)
},
setDoc(projectId, docId, newLines, source, userId, undoing, _callback) {
const timer = new Metrics.Timer('docManager.setDoc')
const callback = (...args) => {
timer.done()
_callback(...args)
}
if (newLines == null) {
return callback(new Error('No lines were provided to setDoc'))
}
const UpdateManager = require('./UpdateManager')
DocumentManager.getDoc(
projectId,
docId,
(
error,
2021-07-13 07:04:42 -04:00
oldLines,
version,
ranges,
pathname,
projectHistoryId,
unflushedTime,
alreadyLoaded
) => {
if (error) {
return callback(error)
}
2021-07-13 07:04:42 -04:00
if (
oldLines != null &&
oldLines.length > 0 &&
oldLines[0].text != null
) {
logger.debug(
{ docId, projectId, oldLines, newLines },
2021-07-13 07:04:42 -04:00
'document is JSON so not updating'
)
return callback(null)
}
logger.debug(
{ docId, projectId, oldLines, newLines },
2021-07-13 07:04:42 -04:00
'setting a document via http'
)
DiffCodec.diffAsShareJsOp(oldLines, newLines, (error, op) => {
if (error) {
return callback(error)
}
if (undoing) {
for (const o of op || []) {
o.u = true
} // Turn on undo flag for each op for track changes
}
const update = {
doc: docId,
op,
v: version,
meta: {
type: 'external',
source,
user_id: userId,
},
}
UpdateManager.applyUpdate(projectId, docId, update, error => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
// If the document was loaded already, then someone has it open
// in a project, and the usual flushing mechanism will happen.
// Otherwise we should remove it immediately since nothing else
// is using it.
if (alreadyLoaded) {
DocumentManager.flushDocIfLoaded(projectId, docId, error => {
if (error) {
return callback(error)
}
callback(null)
})
} else {
DocumentManager.flushAndDeleteDoc(projectId, docId, {}, error => {
// There is no harm in flushing project history if the previous
// call failed and sometimes it is required
HistoryManager.flushProjectChangesAsync(projectId)
if (error) {
return callback(error)
}
callback(null)
})
}
})
})
2021-07-13 07:04:42 -04:00
}
)
},
flushDocIfLoaded(projectId, docId, _callback) {
const timer = new Metrics.Timer('docManager.flushDocIfLoaded')
const callback = (...args) => {
timer.done()
_callback(...args)
}
RedisManager.getDoc(
projectId,
docId,
(
2021-07-13 07:04:42 -04:00
error,
lines,
version,
ranges,
pathname,
projectHistoryId,
unflushedTime,
lastUpdatedAt,
lastUpdatedBy
) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
if (lines == null || version == null) {
logger.debug(
{ projectId, docId },
2021-07-13 07:04:42 -04:00
'doc is not loaded so not flushing'
)
// TODO: return a flag to bail out, as we go on to remove doc from memory?
callback(null)
2021-07-13 07:04:42 -04:00
} else {
logger.debug({ projectId, docId, version }, 'flushing doc')
PersistenceManager.setDoc(
projectId,
docId,
2021-07-13 07:04:42 -04:00
lines,
version,
ranges,
lastUpdatedAt,
lastUpdatedBy,
error => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
RedisManager.clearUnflushedTime(docId, callback)
}
2021-07-13 07:04:42 -04:00
)
}
}
2021-07-13 07:04:42 -04:00
)
},
flushAndDeleteDoc(projectId, docId, options, _callback) {
const timer = new Metrics.Timer('docManager.flushAndDeleteDoc')
const callback = (...args) => {
timer.done()
_callback(...args)
}
DocumentManager.flushDocIfLoaded(projectId, docId, error => {
if (error) {
if (options.ignoreFlushErrors) {
logger.warn(
{ projectId, docId, err: error },
'ignoring flush error while deleting document'
)
} else {
return callback(error)
}
}
// Flush in the background since it requires a http request
HistoryManager.flushDocChangesAsync(projectId, docId)
RedisManager.removeDocFromMemory(projectId, docId, error => {
if (error) {
return callback(error)
}
callback(null)
})
})
},
acceptChanges(projectId, docId, changeIds, _callback) {
if (changeIds == null) {
changeIds = []
}
const timer = new Metrics.Timer('docManager.acceptChanges')
const callback = (...args) => {
timer.done()
_callback(...args)
}
DocumentManager.getDoc(
projectId,
docId,
(error, lines, version, ranges) => {
if (error) {
return callback(error)
}
2021-07-13 07:04:42 -04:00
if (lines == null || version == null) {
return callback(
new Errors.NotFoundError(`document not found: ${docId}`)
2021-07-13 07:04:42 -04:00
)
}
RangesManager.acceptChanges(changeIds, ranges, (error, newRanges) => {
if (error) {
return callback(error)
}
RedisManager.updateDocument(
projectId,
docId,
lines,
version,
[],
newRanges,
{},
error => {
if (error) {
return callback(error)
}
callback()
}
)
})
2021-07-13 07:04:42 -04:00
}
)
},
deleteComment(projectId, docId, commentId, _callback) {
const timer = new Metrics.Timer('docManager.deleteComment')
const callback = (...args) => {
timer.done()
_callback(...args)
}
DocumentManager.getDoc(
projectId,
docId,
(error, lines, version, ranges) => {
if (error) {
return callback(error)
}
2021-07-13 07:04:42 -04:00
if (lines == null || version == null) {
return callback(
new Errors.NotFoundError(`document not found: ${docId}`)
2021-07-13 07:04:42 -04:00
)
}
RangesManager.deleteComment(commentId, ranges, (error, newRanges) => {
if (error) {
return callback(error)
}
RedisManager.updateDocument(
projectId,
docId,
lines,
version,
[],
newRanges,
{},
error => {
if (error) {
return callback(error)
}
callback()
}
)
})
2021-07-13 07:04:42 -04:00
}
)
},
renameDoc(projectId, docId, userId, update, projectHistoryId, _callback) {
const timer = new Metrics.Timer('docManager.updateProject')
const callback = (...args) => {
timer.done()
_callback(...args)
}
RedisManager.renameDoc(
projectId,
docId,
userId,
update,
projectHistoryId,
callback
)
},
getDocAndFlushIfOld(projectId, docId, callback) {
DocumentManager.getDoc(
projectId,
docId,
(
2021-07-13 07:04:42 -04:00
error,
lines,
version,
ranges,
pathname,
projectHistoryId,
unflushedTime,
alreadyLoaded
) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
// if doc was already loaded see if it needs to be flushed
if (
alreadyLoaded &&
unflushedTime != null &&
Date.now() - unflushedTime > MAX_UNFLUSHED_AGE
) {
DocumentManager.flushDocIfLoaded(projectId, docId, error => {
if (error) {
return callback(error)
2021-07-13 07:04:42 -04:00
}
callback(null, lines, version)
})
2021-07-13 07:04:42 -04:00
} else {
callback(null, lines, version)
2021-07-13 07:04:42 -04:00
}
}
2021-07-13 07:04:42 -04:00
)
},
resyncDocContents(projectId, docId, path, callback) {
logger.debug({ projectId, docId, path }, 'start resyncing doc contents')
RedisManager.getDoc(
projectId,
docId,
(error, lines, version, ranges, pathname, projectHistoryId) => {
if (error) {
2021-07-13 07:04:42 -04:00
return callback(error)
}
// To avoid issues where the same docId appears with different paths,
// we use the path from the resyncProjectStructure update. If we used
// the path from the getDoc call to web then the two occurences of the
// docId would map to the same path, and this would be rejected by
// project-history as an unexpected resyncDocContent update.
2021-07-13 07:04:42 -04:00
if (lines == null || version == null) {
logger.debug(
{ projectId, docId },
2021-07-13 07:04:42 -04:00
'resyncing doc contents - not found in redis - retrieving from web'
)
PersistenceManager.getDoc(
projectId,
docId,
{ peek: true },
(error, lines, version, ranges, pathname, projectHistoryId) => {
if (error) {
2021-07-13 07:04:42 -04:00
logger.error(
{ projectId, docId, getDocError: error },
2021-07-13 07:04:42 -04:00
'resyncing doc contents - error retrieving from web'
)
return callback(error)
}
ProjectHistoryRedisManager.queueResyncDocContent(
projectId,
2021-07-13 07:04:42 -04:00
projectHistoryId,
docId,
2021-07-13 07:04:42 -04:00
lines,
version,
path, // use the path from the resyncProjectStructure update
2021-07-13 07:04:42 -04:00
callback
)
}
)
} else {
logger.debug(
{ projectId, docId },
2021-07-13 07:04:42 -04:00
'resyncing doc contents - doc in redis - will queue in redis'
)
ProjectHistoryRedisManager.queueResyncDocContent(
projectId,
projectHistoryId,
docId,
lines,
version,
path, // use the path from the resyncProjectStructure update
callback
)
2021-07-13 07:04:42 -04:00
}
}
2021-07-13 07:04:42 -04:00
)
},
getDocWithLock(projectId, docId, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.getDoc,
projectId,
docId,
callback
)
},
getDocAndRecentOpsWithLock(projectId, docId, fromVersion, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.getDocAndRecentOps,
projectId,
docId,
fromVersion,
callback
)
},
getDocAndFlushIfOldWithLock(projectId, docId, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.getDocAndFlushIfOld,
projectId,
docId,
callback
)
},
setDocWithLock(projectId, docId, lines, source, userId, undoing, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.setDoc,
projectId,
docId,
lines,
source,
userId,
undoing,
callback
)
},
flushDocIfLoadedWithLock(projectId, docId, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.flushDocIfLoaded,
projectId,
docId,
callback
)
},
flushAndDeleteDocWithLock(projectId, docId, options, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.flushAndDeleteDoc,
projectId,
docId,
options,
callback
)
},
acceptChangesWithLock(projectId, docId, changeIds, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.acceptChanges,
projectId,
docId,
changeIds,
callback
)
},
deleteCommentWithLock(projectId, docId, threadId, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.deleteComment,
projectId,
docId,
threadId,
callback
)
},
renameDocWithLock(
projectId,
docId,
userId,
update,
projectHistoryId,
callback
) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.renameDoc,
projectId,
docId,
userId,
update,
projectHistoryId,
callback
)
},
resyncDocContentsWithLock(projectId, docId, path, callback) {
const UpdateManager = require('./UpdateManager')
UpdateManager.lockUpdatesAndDo(
DocumentManager.resyncDocContents,
projectId,
docId,
path,
callback
)
2021-07-13 07:04:42 -04:00
},
}