forked from framasoft/ep_mypads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
storage.js
149 lines (132 loc) · 4.11 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
/**
* # 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:';
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('ueberDB');
storage.db = new ueberDB.database('dirty', { filename: './test.db' });
storage.db.init(function (err) { if (err) { console.log(err); } });
}
/**
* `init` function for in memory secondary indexes.
* At the moment only user / logins.
*/
storage.init = function (callback) {
var user = require('./model/user.js');
user.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 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) { results[k] = res; }
done();
});
};
var done = function () {
if (keys.length) {
getDel(keys.pop());
} else {
return callback(null, results);
}
};
done();
};
/**
* ### 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 pairs = ld.pairs(kv);
var set = function (k, v) { storage.db.set(k, v, done); };
var done = function (err) {
if (err) { return callback(err); }
if (pairs.length) {
var pair = pairs.pop();
set(pair[0], pair[1]);
} else {
return callback(null);
}
};
done();
};
return storage;
}).call(this);