generated from hyper63/adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadapter.js
223 lines (205 loc) · 5.06 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
// deno-lint-ignore-file no-unused-vars
import { crocks } from "./deps.js";
import * as lib from "./lib/dynamodb.js";
import {
notOk,
okGetDoc,
okDocs,
okId,
ok,
okQuery,
notOkCreateDoc,
notOkGetDoc,
okDeleteDoc,
okListDocs,
okBulkDocs
} 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
*/
export default function (ddb) {
const client = {
createDatabase: Async.fromPromise(lib.createDatabase(ddb)),
removeDatabase: Async.fromPromise(lib.removeDatabase(ddb)),
createDocument: Async.fromPromise(lib.createDocument(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>}
*/
function createDatabase(name) {
return client.createDatabase(name).bimap(notOk, ok).toPromise();
}
/**
* @param {string} name
* @returns {Promise<Response>}
*/
function removeDatabase(name) {
return client.removeDatabase(name).bimap(notOk, ok).toPromise();
}
/**
* @param {CreateDocumentArgs}
* @returns {Promise<Response>}
*/
function createDocument({ db, id, doc }) {
return client
.createDocument({ db, id, doc })
.bimap(notOkCreateDoc, okId)
.toPromise();
}
/**
* @param {RetrieveDocumentArgs}
* @returns {Promise<Response>}
*/
function retrieveDocument({ db, id }) {
return client
.retrieveDocument({ db, id })
.bimap(notOkGetDoc, okGetDoc)
.toPromise();
}
/**
* @param {CreateDocumentArgs}
* @returns {Promise<Response>}
*/
function updateDocument({ db, id, doc }) {
return client
.updateDocument({ db, id, doc })
.bimap(notOk, okId)
.toPromise();
}
/**
* @param {RetrieveDocumentArgs}
* @returns {Promise<Response>}
*/
async function removeDocument({ db, id }) {
return client
.removeDocument({ db, id })
.bimap(notOk, okDeleteDoc)
.toPromise();
}
/**
* @param {QueryDocumentsArgs}
* @returns {Promise<Response>}
*/
async function queryDocuments({ query }) {
console.log("query: ", query);
return client.queryDocuments(query).bimap(notOk, okQuery).toPromise();
}
/**
*
* @param {IndexDocumentArgs}
* @returns {Promise<Response>}
*/
async function indexDocuments({ db, name, fields }) {
// schema json object containing db, name, fields
// insert into meta doc each new index
// tbd
}
/**
*
* @param {ListDocumentArgs}
* @returns {Promise<Response>}
*/
async function listDocuments({
db,
limit,
startkey,
endkey,
keys,
descending,
}) {
return client
.listDocuments({
db,
limit,
startkey,
endkey,
keys,
descending,
})
.bimap(notOk, okListDocs)
.toPromise();
// pk = db, sk = startkey, endkey, keys
// use cases:
// 1. query using only db => sends all docs in db
// 2. limit => sends back first n docs in db
// 3. startkey and endkey => sends back all docs in range (inclusive)
// 4. keys => sends back all docs with the sk matching each key in array of keys
// descending => responses are returned in descending order; used with any
}
/**
*
* @param {BulkDocumentsArgs}
* @returns {Promise<Response>}
*/
async function bulkDocuments({ db, docs }) {
// could be put or delete
// pk = db, sk = id from each docs (may need error check that docs have an id)
return client
.bulkDocuments({ db, docs })
.bimap(notOk, okBulkDocs)
.toPromise();
}
return Object.freeze({
createDatabase,
removeDatabase,
createDocument,
retrieveDocument,
updateDocument,
removeDocument,
queryDocuments,
indexDocuments,
listDocuments,
bulkDocuments,
});
}