2016-06-07 12:58:18 -04:00
|
|
|
Keys = require('./UpdateKeys')
|
2014-02-12 05:40:42 -05:00
|
|
|
Settings = require('settings-sharelatex')
|
|
|
|
DocumentManager = require "./DocumentManager"
|
|
|
|
RedisManager = require "./RedisManager"
|
|
|
|
DocOpsManager = require "./DocOpsManager"
|
|
|
|
Errors = require "./Errors"
|
2014-02-26 09:49:52 -05:00
|
|
|
logger = require "logger-sharelatex"
|
2014-02-12 05:40:42 -05:00
|
|
|
|
|
|
|
module.exports = ShareJsDB =
|
|
|
|
getOps: (doc_key, start, end, callback) ->
|
|
|
|
if start == end
|
|
|
|
return callback null, []
|
|
|
|
|
|
|
|
# In redis, lrange values are inclusive.
|
|
|
|
if end?
|
|
|
|
end--
|
|
|
|
else
|
|
|
|
end = -1
|
|
|
|
|
|
|
|
[project_id, doc_id] = Keys.splitProjectIdAndDocId(doc_key)
|
|
|
|
DocOpsManager.getPreviousDocOps project_id, doc_id, start, end, (error, ops) ->
|
|
|
|
return callback error if error?
|
|
|
|
callback null, ops
|
|
|
|
|
|
|
|
writeOp: (doc_key, opData, callback) ->
|
|
|
|
[project_id, doc_id] = Keys.splitProjectIdAndDocId(doc_key)
|
2014-02-24 11:52:12 -05:00
|
|
|
DocOpsManager.pushDocOp project_id, doc_id, opData, (error, version) ->
|
2014-02-12 05:40:42 -05:00
|
|
|
return callback error if error?
|
|
|
|
|
|
|
|
if version == opData.v + 1
|
|
|
|
callback()
|
|
|
|
else
|
2014-02-26 09:49:52 -05:00
|
|
|
error = new Error("Version mismatch. '#{doc_id}' is corrupted.")
|
|
|
|
logger.error err: error, doc_id: doc_id, project_id: project_id, opVersion: opData.v, expectedVersion: version, "doc is corrupt"
|
|
|
|
callback error
|
2014-02-12 05:40:42 -05:00
|
|
|
|
|
|
|
getSnapshot: (doc_key, callback) ->
|
|
|
|
[project_id, doc_id] = Keys.splitProjectIdAndDocId(doc_key)
|
|
|
|
DocumentManager.getDoc project_id, doc_id, (error, lines, version) ->
|
|
|
|
return callback(error) if error?
|
|
|
|
if !lines? or !version?
|
|
|
|
return callback(new Errors.NotFoundError("document not found: #{doc_id}"))
|
|
|
|
|
|
|
|
if lines.length > 0 and lines[0].text?
|
|
|
|
type = "json"
|
|
|
|
snapshot = lines: lines
|
|
|
|
else
|
|
|
|
type = "text"
|
|
|
|
snapshot = lines.join("\n")
|
|
|
|
callback null,
|
|
|
|
snapshot: snapshot
|
|
|
|
v: parseInt(version, 10)
|
|
|
|
type: type
|
|
|
|
|
|
|
|
# To be able to remove a doc from the ShareJS memory
|
|
|
|
# we need to called Model::delete, which calls this
|
|
|
|
# method on the database. However, we will handle removing
|
|
|
|
# it from Redis ourselves
|
|
|
|
delete: (docName, dbMeta, callback) -> callback()
|