-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
111 lines (101 loc) · 3.48 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
* gulf-mongodb
* Copyright (C) 2015 Marcel Klehr <mklehr@gmx.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var mongoose = require('mongoose')
, Schema = mongoose.Schema
module.exports = Adapter
var Document = module.exports.Document = {
firstSnapshot: String
, latestSnapshot: String
}
var Snapshot = module.exports.Snapshot = {
document: Schema.ObjectId
, creationDate: Date
, contents: Object
, edit: String
, id: String
}
function Adapter(mongooseConnection) {
this.Document = mongooseConnection.model('Document', new Schema(Document))
this.Snapshot = mongooseConnection.model('Snapshot', new Schema(Snapshot))
}
Adapter.prototype.createDocument = function(initialSnapshot, cb) {
var document = new this.Document()
document.firstSnapshot = initialSnapshot.id
document.latestSnapshot = initialSnapshot.id
document.save(function(er, document) {
if(er) return cb(er)
this.storeSnapshot(document._id, initialSnapshot, function(er) {
if(er) return cb(er)
cb(null, document._id)
})
}.bind(this))
}
Adapter.prototype.getFirstSnapshot = function(documentId, cb) {
this.Document.findById(documentId, function(er, doc) {
if(er) return cb(er)
this.Snapshot.findById({document: documentId, id: doc.firstSnapshot}, function(er, snapshot) {
if(er) return cb(er)
cb(null, snapshot)
})
}.bind(this))
}
Adapter.prototype.getLatestSnapshot = function(documentId, cb) {
this.Document.findById(documentId, function(er, doc) {
if(er) return cb(er)
if(!doc) return cb(new Error('Document '+this.documentId+' not found'))
this.Snapshot.findOne({document: documentId, id: doc.latestSnapshot}, function(er, snapshot) {
if(er) return cb(er)
cb(null, snapshot)
})
}.bind(this))
}
Adapter.prototype.storeSnapshot = function(documentId, snapshot, cb) {
var snapshotId = snapshot.id
snapshot.document = documentId
snapshot = new this.Snapshot(snapshot)
snapshot.save(function(er) {
if(er) return cb(er)
this.Document.findById(documentId, function(er, doc) {
if(er) return cb(er)
doc.latestSnapshot = snapshotId
doc.save(cb)
}.bind(this))
}.bind(this))
}
Adapter.prototype.existsSnapshot = function(documentId, editId, cb) {
this.Snapshot.findOne({id: editId, document: documentId}, function(er, snapshot) {
cb(null, !!snapshot)
})
}
Adapter.prototype.getSnapshotsAfter = function(documentId, editId, cb) {
var snapshots = []
findAfter.call(this, null, {id: editId})
function findAfter(er, snapshot) {
if(er) return cb(er)
if(!snapshot) return cb(null, snapshots)
if(snapshot.id !== editId) snapshots.push(snapshot)
findSnapshotAfter.call(this, snapshot.id, findAfter.bind(this))
}
function findSnapshotAfter(editId, cb) {
this.Snapshot.findOne({document: documentId, parent: editId}
, function(er, s) {
if(er) return cb(er)
cb(null, s)
})
}
}