-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatherData.js
87 lines (78 loc) · 2.26 KB
/
gatherData.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
module.exports = {
gatherData: async function (apiData, checkList) {
// Node modules
const Path = require('path')
// External modules
const Fetch = require('node-fetch') // v3 only supports ESM - switch?
let reqData = {}
reqData.full_name = apiData.full_name
reqData.html_url = apiData.html_url
reqData.language = apiData.language
reqData.default_branch = apiData.default_branch
reqData.forks_count = apiData.forks_count
reqData.stargazers_count = apiData.stargazers_count
reqData.open_issues = apiData.open_issues
let config = ['base']
let lang = apiData.language
switch (lang) {
case 'JavaScript':
config.push('js')
break
case 'TypeScript':
config.push('ts')
break
}
let filesReq = {}
let relCheckList = {}
for (checkName in checkList) {
let checkDetails = checkList[checkName]
if (config.includes(checkDetails.config)) {
filesReq[checkDetails.file] = null
relCheckList[checkName] = checkDetails
}
}
for (let i = 0; i < Object.keys(filesReq).length; i++) {
let fileName = Object.keys(filesReq)[i]
let fileContent = null
if (null == fileName) continue
let url =
'https://raw.githubusercontent.com/' +
apiData.full_name +
'/master/' +
fileName
// DNS lookup errors at random causing stop to program
// If fetch request fails, wait - try again - move on if unsuccessful
let fileRaw = Promise
try {
fileRaw = await Fetch(url)
} catch (err) {
await new Promise((resolve) => setTimeout(resolve, 7777))
try {
fileRaw = await Fetch(url)
} catch (err) {
continue
}
}
if (fileRaw.ok) {
if ('.json' == Path.extname(url)) {
try {
fileContent = await fileRaw.json()
} catch (err) {
continue
}
} else {
fileContent = await fileRaw.text()
}
reqData[fileName] = fileContent
// getting package name
if ('package.json' == fileName) {
reqData.package_name = fileContent.name
}
}
}
return {
data: reqData,
checks: relCheckList,
}
},
}