-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
182 lines (152 loc) · 3.46 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
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
const Fs = require('fs-extra');
const sanitize = require('sanitize-filename');
const Path = require('path');
const Noop = function() {};
/**
* FileStore constructor
* @param {Object} options
* @param {String} options.tmpDir
* @api public
*/
function FileStore(options) {
var self = this;
self.tmpDir = options.tmpDir || Path.join(process.cwd(), 'tmp');
if (!Fs.existsSync(self.tmpDir)) Fs.mkdirSync(self.tmpDir);
var cacheFiles = Fs.readdirSync(self.tmpDir);
self.cache = {};
cacheFiles.forEach(function(file) {
file = file.replace('.json', '');
self.cache[file] = true;
});
}
/**
* Get entry
* @param {String} key
* @param {Function} fn
* @api public
*/
FileStore.prototype.get = function get(key, fn) {
var self = this;
var val = null;
var data = null;
key = sanitize(key);
var cacheFile = Path.join(self.tmpDir, key + '.json');
fn = fn || Noop;
if (Fs.existsSync(cacheFile)) {
data = Fs.readFileSync(cacheFile);
data = JSON.parse(data);
self.cache[key] = data.expire; //ensures cache sync in all clusters.
} else {
return fn(null, null);
}
if (!data) return fn(null, data);
if (data.expire < Date.now()) {
this.del(key);
return fn(null, null);
}
try {
val = JSON.parse(data.value);
} catch (e) {
return fn(e);
}
process.nextTick(function tick() {
fn(null, val);
});
};
/**
* Set an entry.
* @param {String} key
* @param {Mixed} val
* @param {Number} ttl
* @param {Function} fn
* @api public
*/
FileStore.prototype.set = function set(key, val, ttl, fn) {
var data, self = this;
if (typeof val === 'undefined' || null) return fn(new Error('val not set'));
if (typeof ttl === 'function') fn = ttl;
fn = fn || Noop;
ttl = ttl * 1000 || 60 * 1000;
try {
data = {
value: JSON.stringify(val),
expire: Date.now() + ttl
};
} catch (e) {
return fn(e);
}
key = sanitize(key);
var cacheFile = Path.join(self.tmpDir, key + '.json');
Fs.writeFileSync(cacheFile, JSON.stringify(data, null, 4));
process.nextTick(function tick() {
self.cache[key] = data.expire;
fn(null, val);
});
};
/**
* Delete an entry.
* @param {String} key
* @param {Function} fn
* @api public
*/
FileStore.prototype.del = function del(key, fn) {
var self = this;
key = sanitize(key);
var cacheFile = Path.join(self.tmpDir, key + '.json');
fn = fn || Noop;
if (!Fs.existsSync(cacheFile)) {
self.cache[key] = null;
return fn();
}
try {
Fs.removeSync(cacheFile);
} catch (e) {
return fn(e);
}
process.nextTick(function tick() {
self.cache[key] = null;
fn(null);
});
};
/**
* Clear all cached files
* @param {String} key
* @param {Function} fn
* @api public
*/
FileStore.prototype.clear = function clear(key, fn) {
var self = this;
if ('function' === typeof key) {
fn = key;
key = null;
}
fn = fn || Noop;
try {
Fs.removeSync(self.tmpDir);
Fs.mkdirSync(self.tmpDir);
} catch (e) {
return fn(e);
}
process.nextTick(function tick() {
self.cache = {};
fn(null);
});
};
/**
* Get all cached entries
* @param {Function} fn
*/
FileStore.prototype.getAll = function (fn) {
var self = this;
var entries = [], cache = self.cache;
Object.keys(cache).forEach(function (entry) {
self.get(entry, function (err, result) {
if (err) return fn(err);
entries.push(result);
});
});
process.nextTick(function () {
fn(null, entries);
});
};
module.exports = FileStore;