-
Notifications
You must be signed in to change notification settings - Fork 12
/
storage.js
218 lines (195 loc) · 6.28 KB
/
storage.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/**
* vim:set sw=2 ts=2 sts=2 ft=javascript expandtab:
*
* # Database Module
*
* ## License
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* ## Description
*
* This module consists only on a wrapper around etherpad database.
*/
module.exports = (function () {
'use strict';
// Dependencies
var ld = require('lodash');
var storage = {};
// Database PREFIX CONSTANTS
storage.DBPREFIX = { GLOBAL: 'mypads:' };
var DBPG = storage.DBPREFIX.GLOBAL;
storage.DBPREFIX.CONF = DBPG + 'conf:';
storage.DBPREFIX.USER = DBPG + 'user:';
storage.DBPREFIX.GROUP = DBPG + 'group:';
storage.DBPREFIX.PAD = DBPG + 'pad:';
storage.DBPREFIX.JOBQ = DBPG + 'jobqueue:';
try {
// Normal case : when installed as a plugin
storage.db = require('ep_etherpad-lite/node/db/DB').db;
}
catch (e) {
// Testing case : we need to mock the database connection, using ueberDB and
// coherent default configuration with eptherpad-lite one.
var ueberDB = require('ueberdb2');
storage.db = new ueberDB.database('dirty', { filename: './test.db' });
storage.db.init(function (err) { if (err) { console.error(err); } });
}
/**
* `init` function for initial configuration cache init and in memory
* secondary indexes. At the moment only user / logins / firstname / lastname.
*/
storage.init = function (callback) {
var configuration = require('./configuration.js');
configuration.init(function (err) {
if (err) { return callback(err); }
var userCache = require('./model/user-cache.js');
userCache.init(callback);
});
};
/**
* ## Internal functions `fn`
*
* These functions are not private like with closures, for testing purposes,
* but they are expected be used only internally by other MyPads functions.
*/
storage.fn = {};
/** ### getDelKeys
*
* `getDelKeys` is a function for multiple asynchronous gets and removes,
* taking :
*
* - a `del` boolean, for removals to *true*
* - a `keys` array, wich contains a list of keys to retrieve
* - a `callback` function, called if error or when finished with *null* and
* the `results` object, which is composed of keys and values for gets,
* *true* for removals
* FIXME: TCO ?
*/
storage.fn.getDelKeys = function (del, keys, callback) {
var done;
var results = del ? true : {};
var action = del ? 'remove' : 'get';
var getDel = function (k) {
storage.db[action](k, function (err, res) {
if (err) { return callback(err); }
if (!del && !ld.isNull(res)) { results[k] = res; }
done();
});
};
done = function () {
if (keys.length) {
getDel(keys.pop());
} else {
return callback(null, results);
}
};
done();
};
/**
* ### getKeysUncached
*
* Same than `getKeys` but tries to get values in bulk, bypassing UeberDB cache
*/
storage.fn.getKeysUncached = function (keys, callback) {
if (storage.db && (storage.db.type === 'postgres' || storage.db.type === 'postgrespool')) {
var query = 'SELECT key, value FROM store WHERE key = ANY ($1)';
return storage.db.db.wrappedDB.db.query(query, [keys], function (err, queryResult) {
if (err) { return callback(err); }
var rows = queryResult.rows;
var results = {};
rows.forEach(function (row) {
try {
if (!ld.isNull(row)) { results[row.key] = JSON.parse(row.value); }
} catch (e) {
console.error('JSON-PROBLEM:' + row.value);
}
});
return callback(null, results);
});
}
return storage.fn.getKeys(keys, callback);
};
/**
* ### getKeys
*
* `getKeys` is an helper around `storage.fn.getDelKeys` with `del` argument
* to *false*.
*/
storage.fn.getKeys = ld.partial(storage.fn.getDelKeys, false);
/**
* ### delKeys
*
* `delKeys` is an helper around `storage.fn.getDelKeys` with `del` argument
* to *true*.
*/
storage.fn.delKeys = ld.partial(storage.fn.getDelKeys, true);
/**
* `setKeys` is a function for multiple asynchronous sets, taking :
s
* - a `kv` object, wich contains a list a keys and values to set
* - a `callback` function, called if error or when finished with null
* FIXME: TCO ?
*/
storage.fn.setKeys = function (kv, callback) {
var done;
var pairs = ld.pairs(kv);
var setK = function (k, v) { storage.db.set(k, v, done); };
done = function (err) {
if (err) { return callback(err); }
if (pairs.length) {
var pair = pairs.pop();
setK(pair[0], pair[1]);
} else {
return callback(null);
}
};
done();
};
/**
* `setKeysIfNotExists` is a function for multiple asynchronous sets if the
* key does not exists in database, taking :
s
* - a `kv` object, wich contains a list a keys and values to set
* - a `callback` function, called if error or when finished with null
* FIXME: TCO ?
*/
storage.fn.setKeysIfNotExists = function (kv, callback) {
var done;
var pairs = ld.pairs(kv);
var setK = function (k, v) { storage.db.set(k, v, done); };
done = function (err) {
if (err) { return callback(err); }
if (pairs.length) {
var pair = pairs.pop();
storage.db.get(pair[0], function(err, res) {
if (err) { return callback(err); }
if (ld.isUndefined(res) || ld.isNull(res)) {
setK(pair[0], pair[1]);
} else {
done();
}
});
} else {
return callback(null);
}
};
done();
};
return storage;
}).call(this);