-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecomputeFromBlob.js
83 lines (78 loc) · 2.08 KB
/
recomputeFromBlob.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
const azure = require('azure-storage')
const request = require('superagent')
const _ = require('lodash')
const blobService = azure.createBlobService(
'DefaultEndpointsProtocol=https;AccountName=<ACCOUNT>;AccountKey=<KEY>;'
)
go()
async function go() {
let continuation = null
const prefixes = [
'npm/npmjs/-/a',
'npm/npmjs/-/b',
'npm/npmjs/-/c',
'npm/npmjs/-/d',
'npm/npmjs/-/e',
'npm/npmjs/-/f',
'npm/npmjs/-/g',
'npm/npmjs/-/h',
'npm/npmjs/-/i',
'npm/npmjs/-/j',
'npm/npmjs/-/k',
'npm/npmjs/-/l',
'npm/npmjs/-/m',
'npm/npmjs/-/n',
'npm/npmjs/-/o',
'npm/npmjs/-/p',
'npm/npmjs/-/q',
'npm/npmjs/-/r',
'npm/npmjs/-/s',
'npm/npmjs/-/t',
'npm/npmjs/-/u',
'npm/npmjs/-/v',
'npm/npmjs/-/w',
'npm/npmjs/-/x',
'npm/npmjs/-/y',
'npm/npmjs/-/z'
]
for (let prefix of prefixes) {
do {
await new Promise(resolve => {
blobService.listBlobsSegmentedWithPrefix(
'production',
prefix,
continuation,
{maxResults: 500},
async (error, result) => {
const coordinatesList = _.uniq(
result.entries.map(x => _toCoordinates(x.name)).filter(x => x)
)
await sendGetDefinitionRequest(coordinatesList)
continuation = result.continuationToken
console.log('next')
console.log(coordinatesList[0])
resolve()
}
)
})
} while (continuation !== null)
}
}
function _toCoordinates(name) {
if (name.startsWith('attachment/') || name.startsWith('deadletter'))
return null
;[a, b, c, d, e, f] = name.split('/')
return (coordinates = [a, b, c, d, f].join('/'))
}
async function sendGetDefinitionRequest(coordinatesList) {
try {
const response = await request
.post('https://api.clearlydefined.io/definitions?expand=-files')
.set('Content-Type', 'application/json')
.send(JSON.stringify(coordinatesList))
console.log(response.status)
} catch (e) {
console.log(JSON.stringify(coordinatesList))
throw e
}
}