-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-questions.js
41 lines (33 loc) · 947 Bytes
/
get-questions.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
const fetch = require("node-fetch");
const fs = require("fs");
fs.readdir("../jobguy/companies/", async (err, companies) => {
var errors = [];
var questionsJson;
for (const companyName of companies) {
path = `../jobguy/companies/${companyName}/`;
try {
var response = await fetch(
`https://api.jobguy.ir/public/company/${encodeURI(
companyName
)}/questions/?size=1000`
);
if (!response.ok) {
throw response.status;
}
console.info(`${companyName}: ✅`);
questionsJson = await response.json();
if (questionsJson.data.length) {
fs.writeFileSync(
`${path}questions.json`,
JSON.stringify(questionsJson)
);
}
} catch (error) {
errors.push(companyName);
console.error(`${companyName}: ❌`);
}
}
if (errors) {
fs.writeFileSync(`questions-errors.json`, JSON.stringify(errors));
}
});