generated from hyper63/adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapter.js
291 lines (268 loc) · 6.97 KB
/
adapter.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import { addMilliseconds, crocks, HyperErr, isAfter, isHyperErr, parseISO, R } from './deps.js'
const { Async } = crocks
const {
always,
compose,
evolve,
identity,
head,
zipObj,
length,
ifElse,
map,
includes,
complement,
partition,
pluck,
pick,
} = R
const asyncify = (fn) => Async.fromPromise(async (...args) => await fn(...args))
const handleHyperErr = ifElse(
isHyperErr,
Async.Resolved,
Async.Rejected,
)
const mapCacheDne = ifElse(
(e) => includes('no such table', e.message),
always(HyperErr({ msg: 'cache not found', status: 404 })),
// some other error so passthrough
(e) => {
console.log(e)
return e
},
)
const xDoc = compose(
evolve({
id: identity,
key: identity,
value: (v) => JSON.parse(v),
ttl: identity,
timestmp: identity,
}),
zipObj(['id', 'key', 'value', 'ttl', 'timestmp']),
)
const expired = (ttl, timestmp) => {
if (!ttl) return false
const stop = addMilliseconds(parseISO(timestmp), ttl)
return isAfter(new Date(), stop)
}
const quote = (str) => `"${str}"`
/**
* If the ttl is not provided, default to 0
* which means store indefinitely
*
* Otherwise, choose the max of ttl and 1 millisecond.
* This way, if a negative ttl is provided, for whatever reason,
* it results in the document being expired in the next millisecond,
* effectively immediately
*/
const mapTtl = (ttl) => ttl == null ? 0 : Math.max(Number(ttl), 1)
const createTable = (name) => `
CREATE TABLE ${quote(name)} (
id INTEGER PRIMARY KEY AUTOINCREMENT,
key TEXT,
value TEXT,
ttl INTEGER,
timestmp TEXT
)
`
const dropTable = (name) => `drop table ${quote(name)}`
const insertDoc = (table) => `
insert into ${quote(table)} (key,value,ttl,timestmp) values (?, ?, ?, ?)`
export default (db) => {
const query = asyncify(db.query.bind(db))
const evictExpired = (store) =>
ifElse(
length,
(docs) =>
Async.Resolved(docs)
.map(partition((doc) => expired(doc.ttl, doc.timestmp)))
.chain(([expired, good]) => {
return expired.length
// evict all expired docs, then return the good ones
? query(
`delete from ${quote(store)} where id in (${
// See https://stackoverflow.com/questions/4788724/sqlite-bind-list-of-values-to-where-col-in-prm
Array(expired.length).fill('?').join(',')})`,
pluck('id', expired),
).map(always(good))
: Async.Resolved(good)
}),
Async.Resolved,
)
const createStore = (name) => {
return Async.of(createTable(name))
.chain(query)
.bimap(
ifElse(
(e) => includes('already exists', e.message),
always(HyperErr({ msg: 'cache already exists', status: 409 })),
identity,
),
identity,
)
.bichain(
handleHyperErr,
always(Async.Resolved({ ok: true })),
)
.toPromise()
}
const createDoc = ({ store, key, value, ttl }) => {
return Async.of(`select key from ${quote(store)} where key = ?`)
.chain((q) => query(q, [key]))
.bimap(
mapCacheDne,
identity,
)
.chain(ifElse(
length,
() =>
Async.Rejected(HyperErr({
status: 409,
msg: 'document conflict',
})),
() =>
query(
insertDoc(store),
[
key,
JSON.stringify(value),
mapTtl(ttl),
new Date().toISOString(),
],
),
))
.bichain(
handleHyperErr,
always(Async.Resolved({ ok: true })),
).toPromise()
}
const deleteDoc = ({ store, key }) => {
return Async.of(`delete from ${quote(store)} where key = ?`)
.chain((q) => query(q, [key]))
.bimap(
mapCacheDne,
identity,
)
.bichain(
handleHyperErr,
always(Async.Resolved({ ok: true })),
).toPromise()
}
const getDoc = ({ store, key }) => {
return Async.of(
`select id, key, value, ttl, timestmp from ${quote(store)} where key = ?`,
)
.chain((q) => query(q, [key]))
.bimap(
mapCacheDne,
identity,
)
.chain(ifElse(
length,
Async.Resolved,
() =>
Async.Rejected(HyperErr({
status: 404,
msg: 'document not found',
})),
))
.map(compose(
xDoc,
head, // just one result will come back, so just grab it
))
.chain((doc) => evictExpired(store)([doc]))
.map(head) // just one result will come back, so just grab it
.chain((doc) =>
doc
? Async.Resolved(doc.value)
: Async.Rejected(HyperErr({ status: 404, msg: 'ttl expired!' }))
)
.bichain(
handleHyperErr,
Async.Resolved,
).toPromise()
}
const updateDoc = ({ store, key, value, ttl }) => {
return Async.of(`select id, value from ${quote(store)} where key = ?`)
.chain((q) => query(q, [key]))
.bimap(
mapCacheDne,
identity,
)
// upsert
.chain(ifElse(
complement(length),
() =>
query(
`insert into ${quote(store)} (key, value, ttl, timestmp) values (?, ?, ?, ?)`,
[
key,
JSON.stringify(value),
mapTtl(ttl),
new Date().toISOString(),
],
),
(res) => {
const [id] = res[0]
const cur = JSON.parse(res[0][1])
// TODO: should this do a full replace instead of a merge,
// TODO: for consistency with other hyper adapters?
value = JSON.stringify({ ...cur, ...value })
return query(
`update ${quote(store)} set value = ?, ttl = ?, timestmp = ? where id = ?`,
[value, ttl, new Date().toISOString(), id],
)
},
))
.map(always({ ok: true }))
.bichain(
handleHyperErr,
Async.Resolved,
)
.toPromise()
}
const listDocs = ({ store, pattern }) => {
return Async.of(
`select id, key, value, ttl, timestmp from ${quote(store)} where key like ?`,
)
.chain((q) => query(q, [pattern.replace('*', '%')]))
.bimap(
mapCacheDne,
map(xDoc),
)
.chain(evictExpired(store))
.map(map(pick(['key', 'value'])))
.bichain(
handleHyperErr,
(docs) => Async.Resolved({ ok: true, docs }),
)
.toPromise()
}
const index = () => {
return Promise.resolve(HyperErr({ status: 501, msg: 'not implemented' }))
}
const destroyStore = (name) => {
return Async.of(dropTable(name))
.chain(query)
.bimap(
mapCacheDne,
identity,
)
.bichain(
handleHyperErr,
always(Async.Resolved({ ok: true })),
)
.toPromise()
}
return {
createStore,
createDoc,
deleteDoc,
getDoc,
updateDoc,
listDocs,
index,
destroyStore,
}
}