-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
100 lines (87 loc) · 2.69 KB
/
index.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
const { S3Client, GetObjectCommand, PutObjectCommand } = require('@aws-sdk/client-s3')
const { MultihashIndexSortedWriter } = require('cardex')
const { CarIndexer } = require('@ipld/car/indexer')
const { concat } = require('uint8arrays')
const maxRetries = process.env.MAX_RETRIES ? parseInt(process.env.MAX_RETRIES) : 3
const retryDelay = process.env.RETRY_DELAY ? parseInt(process.env.RETRY_DELAY) : 100
/**
* @type {import('aws-lambda').SNSHandler}
*/
exports.handler = async function handler (event, context) {
/** @type {typeof S3Client} */
const S3 = typeof context?.clientContext?.Custom?.S3Client === 'function'
? context.clientContext.Custom.S3Client
: S3Client
const records = toS3Event(event).Records
.filter(r => r.eventName.startsWith('ObjectCreated'))
.filter(r => r.s3.object.key.endsWith('.car'))
for (const r of records) {
const s3 = new S3({ region: r.awsRegion })
const getCmd = new GetObjectCommand({
Bucket: r.s3.bucket.name,
Key: r.s3.object.key
})
await retry(async () => {
const res = await s3.send(getCmd)
const { writer, out } = MultihashIndexSortedWriter.create()
/** @type {Error?} */
let error
;(async () => {
try {
const indexer = await CarIndexer.fromIterable(res.Body)
for await (const blockIndexData of indexer) {
await writer.put(blockIndexData)
}
} catch (err) {
error = err
} finally {
await writer.close()
}
})()
const chunks = []
for await (const chunk of out) {
chunks.push(chunk)
}
if (error) {
throw error
}
const putCmd = new PutObjectCommand({
Bucket: r.s3.bucket.name,
Key: r.s3.object.key + '.idx',
Body: concat(chunks)
})
await s3.send(putCmd)
})
}
}
/**
* Extract an S3Event from the passed SNSEvent.
* @param {import('aws-lambda').SNSEvent} snsEvent
* @returns {import('aws-lambda').S3Event}
*/
function toS3Event (snsEvent) {
const s3Event = { Records: [] }
for (const snsRec of snsEvent.Records) {
try {
for (const s3Rec of JSON.parse(snsRec.Sns.Message).Records || []) {
if (s3Rec.eventSource !== 'aws:s3') continue
s3Event.Records.push(s3Rec)
}
} catch (err) {
console.error(`failed to extract S3Event record from SNSEvent record: ${err.message}`, snsRec)
}
}
return s3Event
}
async function retry (fn) {
let attempts = 0
while (true) {
try {
return await fn()
} catch (err) {
if (++attempts >= maxRetries) throw err
}
await sleep(retryDelay)
}
}
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))