-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (46 loc) · 1.43 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
const RedisStore = require('./lib/stores/redis-store')
module.exports = function defineSailsCacheHook(sails) {
return {
defaults: {
stash: {
cachestore: 'default',
},
cachestores: {
default: {
store: 'redis',
datastore: 'cache',
},
},
},
initialize: async function () {
function getCacheStore(cachestore) {
if (!sails.config.cachestores[cachestore]) {
throw new Error('The provided cachestore coult not be found.')
}
switch (sails.config.cachestores[cachestore].store) {
case 'redis':
return new RedisStore(sails)
default:
throw new Error(
'Invalid store provided, supported stores are redis or memcached.',
)
}
}
let cacheStore = getCacheStore(sails.config.stash.cachestore)
sails.cache = {
get: cacheStore.get.bind(cacheStore),
set: cacheStore.set.bind(cacheStore),
has: cacheStore.has.bind(cacheStore),
delete: cacheStore.delete.bind(cacheStore),
fetch: cacheStore.fetch.bind(cacheStore),
add: cacheStore.add.bind(cacheStore),
pull: cacheStore.pull.bind(cacheStore),
forever: cacheStore.forever.bind(cacheStore),
destroy: cacheStore.destroy.bind(cacheStore),
store: function (cachestore) {
return getCacheStore(cachestore)
},
}
},
}
}