-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.ts
More file actions
237 lines (206 loc) · 6.77 KB
/
index.ts
File metadata and controls
237 lines (206 loc) · 6.77 KB
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
import type {
ProtectDynamoDBConfig,
ProtectDynamoDBInstance,
ProtectDynamoDBError,
} from './types'
import type { EncryptedPayload, SearchTerm } from '@cipherstash/protect'
import type { ProtectTable, ProtectTableColumn } from '@cipherstash/protect'
import { withResult } from '@byteslice/result'
const ciphertextAttrSuffix = '__source'
const searchTermAttrSuffix = '__hmac'
class ProtectDynamoDBErrorImpl extends Error implements ProtectDynamoDBError {
constructor(
message: string,
public code: string,
public details?: Record<string, unknown>,
) {
super(message)
this.name = 'ProtectDynamoDBError'
}
}
function toEncryptedDynamoItem(
encrypted: Record<string, unknown>,
encryptedAttrs: string[],
): Record<string, unknown> {
return Object.entries(encrypted).reduce(
(putItem, [attrName, attrValue]) => {
if (encryptedAttrs.includes(attrName)) {
if (attrValue === null || attrValue === undefined) {
putItem[attrName] = attrValue
} else {
const encryptPayload = attrValue as EncryptedPayload
if (encryptPayload?.c) {
if (encryptPayload.hm) {
putItem[`${attrName}${searchTermAttrSuffix}`] = encryptPayload.hm
}
putItem[`${attrName}${ciphertextAttrSuffix}`] = encryptPayload.c
}
}
} else {
putItem[attrName] = attrValue
}
return putItem
},
{} as Record<string, unknown>,
)
}
function toItemWithEqlPayloads(
decrypted: Record<string, EncryptedPayload | unknown>,
encryptedAttrs: string[],
): Record<string, unknown> {
return Object.entries(decrypted).reduce(
(formattedItem, [attrName, attrValue]) => {
if (
attrName.endsWith(ciphertextAttrSuffix) &&
encryptedAttrs.includes(attrName.slice(0, -ciphertextAttrSuffix.length))
) {
formattedItem[attrName.slice(0, -ciphertextAttrSuffix.length)] = {
c: attrValue,
bf: null,
hm: null,
i: { c: 'notUsed', t: 'notUsed' },
k: 'notUsed',
ob: null,
v: 2,
}
} else if (attrName.endsWith(searchTermAttrSuffix)) {
// skip HMAC attrs since we don't need those for decryption
} else {
formattedItem[attrName] = attrValue
}
return formattedItem
},
{} as Record<string, unknown>,
)
}
export function protectDynamoDB(
config: ProtectDynamoDBConfig,
): ProtectDynamoDBInstance {
const { protectClient, options } = config
const logger = options?.logger
const handleError = (error: Error, context: string): ProtectDynamoDBError => {
const protectError = new ProtectDynamoDBErrorImpl(
error.message,
'PROTECT_DYNAMODB_ERROR',
{ context },
)
if (options?.errorHandler) {
options.errorHandler(protectError)
}
if (logger) {
logger.error(`Error in ${context}`, protectError)
}
return protectError
}
return {
async encryptModel<T extends Record<string, unknown>>(
item: T,
protectTable: ProtectTable<ProtectTableColumn>,
) {
return await withResult(
async () => {
const encryptResult = await protectClient.encryptModel(
item,
protectTable,
)
if (encryptResult.failure) {
throw new Error(
`encryption error: ${encryptResult.failure.message}`,
)
}
const data = encryptResult.data
const encryptedAttrs = Object.keys(protectTable.build().columns)
return toEncryptedDynamoItem(data, encryptedAttrs)
},
(error) => handleError(error, 'encryptModel'),
)
},
async bulkEncryptModels<T extends Record<string, unknown>>(
items: T[],
protectTable: ProtectTable<ProtectTableColumn>,
) {
return await withResult(
async () => {
const encryptResult = await protectClient.bulkEncryptModels(
items,
protectTable,
)
if (encryptResult.failure) {
throw new Error(
`encryption error: ${encryptResult.failure.message}`,
)
}
const data = encryptResult.data
const encryptedAttrs = Object.keys(protectTable.build().columns)
return data.map((encrypted) =>
toEncryptedDynamoItem(encrypted, encryptedAttrs),
)
},
(error) => handleError(error, 'bulkEncryptModels'),
)
},
async decryptModel<T extends Record<string, unknown>>(
item: Record<string, EncryptedPayload | unknown>,
protectTable: ProtectTable<ProtectTableColumn>,
) {
return await withResult(
async () => {
const encryptedAttrs = Object.keys(protectTable.build().columns)
const withEqlPayloads = toItemWithEqlPayloads(item, encryptedAttrs)
const decryptResult = await protectClient.decryptModel<T>(
withEqlPayloads as T,
)
if (decryptResult.failure) {
throw new Error(`[protect]: ${decryptResult.failure.message}`)
}
return decryptResult.data
},
(error) => handleError(error, 'decryptModel'),
)
},
async bulkDecryptModels<T extends Record<string, unknown>>(
items: Record<string, EncryptedPayload | unknown>[],
protectTable: ProtectTable<ProtectTableColumn>,
) {
return await withResult(
async () => {
const encryptedAttrs = Object.keys(protectTable.build().columns)
const itemsWithEqlPayloads = items.map((item) =>
toItemWithEqlPayloads(item, encryptedAttrs),
)
const decryptResult = await protectClient.bulkDecryptModels<T>(
itemsWithEqlPayloads as T[],
)
if (decryptResult.failure) {
throw new Error(`[protect]: ${decryptResult.failure.message}`)
}
return decryptResult.data
},
(error) => handleError(error, 'bulkDecryptModels'),
)
},
async createSearchTerms(terms: SearchTerm[]) {
return await withResult(
async () => {
const searchTermsResult = await protectClient.createSearchTerms(terms)
if (searchTermsResult.failure) {
throw new Error(`[protect]: ${searchTermsResult.failure.message}`)
}
return searchTermsResult.data.map((term) => {
if (typeof term === 'string') {
throw new Error(
'expected encrypted search term to be an EncryptedPayload',
)
}
if (!term?.hm) {
throw new Error('expected encrypted search term to have an HMAC')
}
return term.hm
})
},
(error) => handleError(error, 'createSearchTerms'),
)
},
}
}
export * from './types'