2020-02-16 09:01:47 -05:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-16 09:01:46 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* 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
|
|
|
|
*/
|
2020-02-16 09:02:21 -05:00
|
|
|
let RangeManager
|
|
|
|
const _ = require('underscore')
|
2020-08-21 12:50:01 -04:00
|
|
|
const { ObjectId } = require('./mongodb')
|
2016-12-05 09:21:49 -05:00
|
|
|
|
2020-02-16 09:02:21 -05:00
|
|
|
module.exports = RangeManager = {
|
|
|
|
shouldUpdateRanges(doc_ranges, incoming_ranges) {
|
|
|
|
if (incoming_ranges == null) {
|
|
|
|
throw new Error('expected incoming_ranges')
|
|
|
|
}
|
2016-12-05 09:21:49 -05:00
|
|
|
|
2020-02-16 09:02:21 -05:00
|
|
|
// If the ranges are empty, we don't store them in the DB, so set
|
|
|
|
// doc_ranges to an empty object as default, since this is was the
|
|
|
|
// incoming_ranges will be for an empty range set.
|
|
|
|
if (doc_ranges == null) {
|
|
|
|
doc_ranges = {}
|
|
|
|
}
|
2016-12-05 09:21:49 -05:00
|
|
|
|
2020-02-16 09:02:21 -05:00
|
|
|
return !_.isEqual(doc_ranges, incoming_ranges)
|
|
|
|
},
|
|
|
|
|
|
|
|
jsonRangesToMongo(ranges) {
|
|
|
|
if (ranges == null) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
2020-05-28 09:20:54 -04:00
|
|
|
const updateMetadata = function (metadata) {
|
2020-02-16 09:02:21 -05:00
|
|
|
if ((metadata != null ? metadata.ts : undefined) != null) {
|
|
|
|
metadata.ts = new Date(metadata.ts)
|
|
|
|
}
|
|
|
|
if ((metadata != null ? metadata.user_id : undefined) != null) {
|
|
|
|
return (metadata.user_id = RangeManager._safeObjectId(metadata.user_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const change of Array.from(ranges.changes || [])) {
|
|
|
|
change.id = RangeManager._safeObjectId(change.id)
|
|
|
|
updateMetadata(change.metadata)
|
|
|
|
}
|
|
|
|
for (const comment of Array.from(ranges.comments || [])) {
|
|
|
|
comment.id = RangeManager._safeObjectId(comment.id)
|
|
|
|
if ((comment.op != null ? comment.op.t : undefined) != null) {
|
|
|
|
comment.op.t = RangeManager._safeObjectId(comment.op.t)
|
|
|
|
}
|
|
|
|
updateMetadata(comment.metadata)
|
|
|
|
}
|
|
|
|
return ranges
|
|
|
|
},
|
|
|
|
|
|
|
|
_safeObjectId(data) {
|
|
|
|
try {
|
|
|
|
return ObjectId(data)
|
|
|
|
} catch (error) {
|
|
|
|
return data
|
|
|
|
}
|
2021-07-13 07:04:48 -04:00
|
|
|
},
|
2020-02-16 09:02:21 -05:00
|
|
|
}
|