forked from JanitaM/hyper-adapter-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadapter.js
227 lines (207 loc) · 5.86 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
// deno-lint-ignore-file no-unused-vars
import { crocks } from "./deps.js";
import * as lib from "./lib/dynamodb.js";
import {
okCreateDb,
notOkCreateDb,
okDestroyDb,
notOkDestroyDb,
okGetDoc,
notOkUpdateDoc,
okUpdateDoc,
okQuery,
notOkQuery,
okCreateDoc,
notOkCreateDoc,
notOkGetDoc,
okDeleteDoc,
notOkDeleteDoc,
okListDocs,
notOkListDocs,
okBulkDocs,
notOkBulkDocs,
okIdxDocs,
notOkIdxDocs
} from "./lib/responseBuilders.js";
const { Async } = crocks;
/**
*
* @typedef {Object} CreateDocumentArgs
* @property {string} db
* @property {string} id
* @property {object} doc
*
* @typedef {Object} RetrieveDocumentArgs
* @property {string} db
* @property {string} id
*
* @typedef {Object} QueryDocumentsArgs
* @property {string} db
* @property {QueryArgs} query
*
* @typedef {Object} QueryArgs
* @property {object} selector
* @property {string[]} fields
* @property {number} limit
* @property {object[]} sort
* @property {string} use_index
*
* @typedef {Object} IndexDocumentArgs
* @property {string} db
* @property {string} name
* @property {string[]} fields
*
* @typedef {Object} ListDocumentArgs
* @property {string} db
* @property {number} limit
* @property {string} startkey
* @property {string} endkey
* @property {string[]} keys
*
* @typedef {Object} BulkDocumentsArgs
* @property {string} db
* @property {object[]} docs
*
* @typedef {Object} Response
* @property {boolean} ok
*/
/**
*
* @param {{ DynamoDB: any, factory: any }} aws
* @returns
*/
const adapter = (ddb) => {
const client = {
createDatabase: Async.fromPromise(lib.createDatabase(ddb)),
removeDatabase: Async.fromPromise(lib.removeDatabase(ddb)),
createDocument: Async.fromPromise(lib.createDocument(ddb)),
indexDocuments: Async.fromPromise(lib.indexDocuments(ddb)),
retrieveDocument: Async.fromPromise(lib.retrieveDocument(ddb)),
updateDocument: Async.fromPromise(lib.updateDocument(ddb)),
removeDocument: Async.fromPromise(lib.removeDocument(ddb)),
queryDocuments: Async.fromPromise(lib.queryDocuments(ddb)),
listDocuments: Async.fromPromise(lib.listDocuments(ddb)),
bulkDocuments: Async.fromPromise(lib.bulkDocuments(ddb)),
};
/**
* @param {string} name
* @returns {Promise<Response>}
*/
const createDatabase = (name) =>
client.createDatabase(name).bimap(notOkCreateDb, okCreateDb).toPromise();
/**
* @param {string} name
* @returns {Promise<Response>}
*/
const removeDatabase = (name) =>
client.removeDatabase(name).bimap(notOkDestroyDb, okDestroyDb).toPromise();
/**
* @param {CreateDocumentArgs}
* @returns {Promise<Response>}
*/
const createDocument = ({ db, id, doc }) =>
client
.createDocument({ db, id, doc })
.bimap(notOkCreateDoc, okCreateDoc)
.toPromise();
/**
* @param {RetrieveDocumentArgs}
* @returns {Promise<Response>}
*/
const retrieveDocument = ({ db, id }) =>
client
.retrieveDocument({ db, id })
.bimap(notOkGetDoc, okGetDoc)
.toPromise();
/**
* @param {CreateDocumentArgs}
* @returns {Promise<Response>}
*/
const updateDocument = ({ db, id, doc }) =>
client
.updateDocument({ db, id, doc })
.bimap(notOkUpdateDoc, okUpdateDoc)
.toPromise();
/**
* @param {RetrieveDocumentArgs}
* @returns {Promise<Response>}
*/
const removeDocument = ({ db, id }) =>
client
.removeDocument({ db, id })
.bimap(notOkDeleteDoc, okDeleteDoc)
.toPromise();
/**
* @param {QueryDocumentsArgs}
* @returns {Promise<Response>}
*/
const queryDocuments = ({ query, db }) =>
client.queryDocuments({ query, db }).bimap(notOkQuery, okQuery).toPromise();
/**
*
* @param {IndexDocumentArgs}
* @returns {Promise<Response>}
*/
// schema json object containing db, name, fields
// insert into meta doc each new index
// tbd
const indexDocuments = ({ db, name, fields }) =>
client.indexDocuments({ db, name, fields }).bimap(notOkIdxDocs, okIdxDocs).toPromise();
/**
*
* @param {ListDocumentArgs}
* @returns {Promise<Response>} NOTE: This returns `ok` and `docs`, but
* `Response` denotes only `ok`.
*/
const listDocuments = ({ db, limit, startkey, endkey, keys, descending }) =>
client
.listDocuments({
db,
limit,
startkey,
endkey,
keys,
descending,
})
.bimap(notOkListDocs, okListDocs)
.toPromise();
/**
*
* @param {BulkDocumentsArgs}
* @returns {Promise<Response>}
*/
const bulkDocuments = ({ db, docs }) =>
client
.bulkDocuments({ db, docs })
.bimap(notOkBulkDocs, okBulkDocs)
.toPromise()
// NOTE: Every one of these gets converted from a Promise to an Async and back
// to a Promise. I'd consider writing a single generic function that
// composes these actions together for you. You've got `Async.fromPromise`
// and crocks' `asyncToPromise` that you could leverage somehow so that
// all your functions lose the `client` and `.toPromise()` and end up
// being just like:
//
// listDocumentsAsync({ ... })
// .bimap(notOkListDocuments, okListDocuments)
//
// I guess what I'm really getting at is that the individual functions
// don't control getting turned into an Async, but they control turning
// themselves back into a Promise, and that difference of control feels
// weird to me — like they should just be Asyncs, and something else
// handles this conversion control.
//@rpearce - I'm not sure what this composed fn would look like
return Object.freeze({
createDatabase,
removeDatabase,
createDocument,
retrieveDocument,
updateDocument,
removeDocument,
queryDocuments,
indexDocuments,
listDocuments,
bulkDocuments,
});
};
export default adapter;