-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloadPostcodes.js
37 lines (30 loc) · 935 Bytes
/
loadPostcodes.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
const { processFile, downloadFile, unzipFile } = require('./lib')
const handle = async event => {
const startTime = Date.now()
try {
console.log('Download started')
const fileName = '/tmp/ukpostcodes.zip'
await downloadFile('https://www.freemaptools.com/download/full-postcodes/ukpostcodes.zip', fileName)
console.log('Download done')
console.log('Unzip started')
await unzipFile(fileName, '/tmp')
console.log('Unzip done')
console.log('Start loading postcodes into DynamoDB')
await processFile('/tmp/ukpostcodes.csv')
} catch (error) {
console.error(error)
}
const timeTakenSecs = (Date.now() - startTime) / 1000
console.log(`Job done in ${timeTakenSecs} seconds`)
return {
statusCode: 200,
body: JSON.stringify(
{
message: `UK postcodes loaded into DynamoDB successfully in ${timeTakenSecs} seconds`
}
)
}
}
module.exports = {
handle
}