-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdb.ts
More file actions
423 lines (371 loc) · 11.4 KB
/
Copy pathdb.ts
File metadata and controls
423 lines (371 loc) · 11.4 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import * as AWS from 'aws-sdk'
import dayjs = require('dayjs')
import * as log from 'log'
import {
fetchFreshAccessToken,
PartialUserRecord,
UserRecord,
} from './Authorization'
import { Device } from './Device'
import { Plan, PlanName } from './Plan'
AWS.config.update({ region: process.env.VSH_IOT_REGION })
export const docClient = new AWS.DynamoDB.DocumentClient({
apiVersion: '2012-08-10',
})
// The VSH table has TTL enabled on 'deleteAtUnixTime' (see cloudFormation-eu-west-1.yml).
// Only TOKEN records carry that attribute, which is why an expired TOKEN record leaves
// the user's THING#/DEVICE# records behind.
const TOKEN_TTL_DAYS = 60
// Renew the TTL once it has decayed below this, so that a read only triggers a write
// every ~15 days per user instead of on every single request.
const TOKEN_TTL_RENEW_BELOW_DAYS = 45
export function upsertTokens(
{ userId, accessToken, refreshToken, email, skillRegion }: UserRecord,
expiryInSec
): Promise<any> {
let UpdateExpression =
'set updatedAt = :c, accessTokenExpiry = :e, accessToken = :a, refreshToken = :r, deleteAtUnixTime = :ttl'
let ExpressionAttributeValues = {
':c': dayjs().toISOString(),
':e': dayjs().add(expiryInSec, 'second').toISOString(),
':a': accessToken,
':r': refreshToken,
':ttl': dayjs().add(TOKEN_TTL_DAYS, 'day').unix(),
}
if (email) {
UpdateExpression = UpdateExpression + ', email = :m'
ExpressionAttributeValues[':m'] = email
}
if (skillRegion) {
UpdateExpression = UpdateExpression + ', skillRegion = :sr'
ExpressionAttributeValues[':sr'] = skillRegion
}
let params = {
TableName: 'VSH',
Key: {
PK: `USER#${userId}`,
SK: 'TOKEN',
},
UpdateExpression,
ExpressionAttributeValues,
}
return new Promise((resolve, reject) => {
docClient.update(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data)
}
})
})
}
export function postponeTokenDeletion(
userId: string,
daysFromNow: number
): Promise<number> {
const deleteAtUnixTime = dayjs().add(daysFromNow, 'day').unix()
const params = {
TableName: 'VSH',
Key: {
PK: `USER#${userId}`,
SK: 'TOKEN',
},
UpdateExpression: 'set deleteAtUnixTime = :ttl',
// never resurrect an already expired record: an update without this condition
// would create a TOKEN record holding nothing but a TTL, which getUserRecord()
// would then happily return as a token-less user.
ConditionExpression: 'attribute_exists(PK)',
ExpressionAttributeValues: {
':ttl': deleteAtUnixTime,
},
}
return new Promise((resolve, reject) => {
docClient.update(params, function (err) {
if (err) {
return reject(err)
} else {
return resolve(deleteAtUnixTime)
}
})
})
}
export function updateUserRecord(partialUser: PartialUserRecord): Promise<any> {
const updateRec = { ...partialUser }
delete updateRec.userId
updateRec.updatedAt = dayjs().toISOString()
// touching the record (e.g. switching plan) counts as account activity, so extend
// the TTL too - buying a subscription used to leave the old expiry untouched.
updateRec.deleteAtUnixTime = dayjs().add(TOKEN_TTL_DAYS, 'day').unix()
const UpdateExpression =
'set ' +
Object.keys(updateRec)
.map((_field, idx) => `#n${idx} = :v${idx}`)
.join(', ')
const ExpressionAttributeNames = Object.keys(updateRec).reduce(
(acc, attrName, idx) => {
acc[`#n${idx}`] = attrName
return acc
},
{}
)
const ExpressionAttributeValues = Object.keys(updateRec).reduce(
(acc, attrName, idx) => {
acc[`:v${idx}`] = updateRec[attrName]
return acc
},
{}
)
const params = {
TableName: 'VSH',
Key: {
PK: `USER#${partialUser.userId}`,
SK: 'TOKEN',
},
UpdateExpression,
ExpressionAttributeNames,
ExpressionAttributeValues,
}
return new Promise((resolve, reject) => {
docClient.update(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data)
}
})
})
}
export async function getUserRecord(
userId: string,
refreshAccessToken: boolean = true
): Promise<UserRecord> {
let params = {
TableName: 'VSH',
Key: {
PK: `USER#${userId}`,
SK: 'TOKEN',
},
}
let data: any = await new Promise((resolve, reject) => {
docClient.get(params, function (err, data) {
if (err) {
return reject(err)
} else {
if (data.Item) {
return resolve(data.Item)
} else {
return reject(`no token record found for user ${userId}`)
}
}
})
})
// Keep the record alive for as long as the account is in use. This must happen
// *before* the refresh attempt below, which throws on failure: previously the TTL
// was only ever renewed by upsertTokens(), so a user whose token refresh kept
// failing - or who only ever hit paths passing refreshAccessToken=false - had their
// TOKEN record silently deleted by DynamoDB 60 days later, taking their plan and
// payment provider IDs with it and leaving the THING# records orphaned.
if (
!data.deleteAtUnixTime ||
data.deleteAtUnixTime < dayjs().add(TOKEN_TTL_RENEW_BELOW_DAYS, 'day').unix()
) {
try {
data.deleteAtUnixTime = await postponeTokenDeletion(userId, TOKEN_TTL_DAYS)
} catch (e) {
// never fail the caller over a TTL renewal
log.warn('failed to renew TTL of TOKEN record for user %s: %s', userId, e.message)
}
}
if (refreshAccessToken) {
const now = dayjs()
const tokenExpiry = dayjs(data.accessTokenExpiry).subtract(15, 'second')
if (tokenExpiry.isBefore(now)) {
log.info('Token expired, attempting refresh', {
userId: userId.substring(0, 8) + '...',
tokenExpiry: tokenExpiry.toISOString(),
currentTime: now.toISOString(),
refreshTokenPrefix: data.refreshToken?.substring(0, 12) + '...'
})
try {
const newTokens = await fetchFreshAccessToken(data.refreshToken)
await upsertTokens(
{
userId,
accessToken: newTokens.access_token,
refreshToken: newTokens.refresh_token,
},
newTokens.expires_in
)
data.accessToken = newTokens.access_token
log.info('Token refresh and database update successful', {
userId: userId.substring(0, 8) + '...',
hasNewAccessToken: !!newTokens.access_token,
hasNewRefreshToken: !!newTokens.refresh_token,
newExpiresIn: newTokens.expires_in
})
} catch (error) {
log.error('Token refresh failed in getUserRecord', {
userId: userId.substring(0, 8) + '...',
errorName: error.name,
errorMessage: error.message,
tokenExpiry: tokenExpiry.toISOString(),
refreshTokenPrefix: data.refreshToken?.substring(0, 12) + '...',
originalError: error.originalError?.message,
status: error.status,
responseData: error.responseData
})
// Re-throw with additional context for upstream handlers
const contextualError = new Error(`Token refresh failed for user ${userId.substring(0, 8)}...: ${error.message}`)
contextualError.name = 'UserTokenRefreshError'
;(contextualError as any).userId = userId
;(contextualError as any).originalError = error
;(contextualError as any).tokenExpiry = tokenExpiry.toISOString()
throw contextualError
}
} else {
log.debug('Token still valid, no refresh needed', {
userId: userId.substring(0, 8) + '...',
tokenExpiry: tokenExpiry.toISOString(),
currentTime: now.toISOString(),
timeUntilExpiry: tokenExpiry.diff(now, 'seconds') + ' seconds'
})
}
}
if (!data.skillRegion) {
data.skillRegion = process.env.VSH_IOT_REGION
}
data.isBlocked = !data.isBlocked ? false : true
data.plan = data.plan ?? PlanName.FREE
if (!data.allowedDeviceCount) {
const plan = new Plan(data.plan as PlanName)
data.allowedDeviceCount = plan.allowedDeviceCount
}
return data
}
export function upsertDevice({
userId,
deviceId,
friendlyName,
template,
retrievable,
thingId,
}): Promise<any> {
let params = {
TableName: 'VSH',
Key: {
PK: `USER#${userId}`,
SK: `THING#${thingId}#DEVICE#${deviceId}`,
},
UpdateExpression:
'set friendlyName = :fn, template = :te, retrievable = :rt, thingId = :th, deviceId = :de, updatedAt = :ua',
ExpressionAttributeValues: {
':fn': friendlyName,
':te': template,
':rt': retrievable ? true : false,
':th': thingId,
':de': deviceId,
':ua': dayjs().toISOString(),
},
}
return new Promise((resolve, reject) => {
docClient.update(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data)
}
})
})
}
export function deleteDevice({ userId, deviceId, thingId }): Promise<any> {
let params = {
TableName: 'VSH',
Key: {
PK: `USER#${userId}`,
SK: `THING#${thingId}#DEVICE#${deviceId}`,
},
ConditionExpression: 'thingId = :th',
ExpressionAttributeValues: {
':th': thingId,
},
ReturnValues: 'ALL_OLD',
}
return new Promise((resolve, reject) => {
docClient.delete(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data)
}
})
})
}
export async function getDevicesOfUser(userId: string): Promise<Device[]> {
let params = {
TableName: 'VSH',
KeyConditionExpression: 'PK = :pk and begins_with(SK, :sk)',
ExpressionAttributeValues: {
':pk': `USER#${userId}`,
':sk': 'THING',
},
}
let devices: any = await new Promise((resolve, reject) => {
docClient.query(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data.Items)
}
})
})
// ensure 'retrievable' attribute is present (old records in DB might not have it yet):
devices = devices.map((device) => {
device.retrievable = device.retrievable ?? false
return device
})
return devices as Device[]
}
export async function getDeviceCountOfUser({
userId,
excludeThingId,
}: {
userId: string
excludeThingId: string
}): Promise<number> {
return (await getDevicesOfUser(userId)).filter(
(device) => device.thingId !== excludeThingId
).length
}
export async function getDevicesOfThing(
userId: string,
thingId: string
): Promise<Device[]> {
let params = {
TableName: 'VSH',
KeyConditionExpression: 'PK = :pk and begins_with(SK, :sk)',
ExpressionAttributeValues: {
':pk': `USER#${userId}`,
':sk': `THING#${thingId}`,
},
}
let devices: any = await new Promise((resolve, reject) => {
docClient.query(params, function (err, data) {
if (err) {
return reject(err)
} else {
return resolve(data.Items)
}
})
})
// ensure 'retrievable' attribute is present (old records in DB might not have it yet):
devices = devices.map((device) => {
device.retrievable = device.retrievable ?? false
return device
})
return devices as Device[]
}
export async function getThingsOfUser(userId: string) {
const things: Set<string> = new Set()
const devices = await getDevicesOfUser(userId)
return [...devices.reduce((acc, curr) => acc.add(curr.thingId), things)]
}