-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-data-fetcher.js
248 lines (199 loc) · 4.48 KB
/
github-data-fetcher.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
const fs = require("fs");
const ora = require("ora");
const chalk = require("chalk");
const dotenv = require("dotenv");
const readlineSync = require("readline-sync");
const { Octokit } = require("@octokit/rest");
function delay(ms) {
return new Promise(function (resolve) {
setTimeout(resolve, ms);
});
}
process.on("SIGINT", function () {
process.exit(1);
});
(async function () {
const envSpinner = ora({
text: chalk.yellow("Checking for .env file"),
color: "yellow"
}).start();
const envCheck = dotenv.config();
await delay(500);
envSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
if (envCheck.error) {
ora({
indent: 2,
text: chalk.red("Missing .env file!")
})
.start()
.fail();
process.exit(1);
} else {
ora({
indent: 2,
text: chalk.green("Found .env file!")
})
.start()
.succeed();
const envVars = [ "PERSONAL_ACCESS_TOKEN" ];
let failed = false;
for (let cred of envVars) {
if (!process.env[cred]) {
failed = true;
ora({
indent: 4,
text: chalk.red(`Missing valid ${cred} credential!`)
})
.start()
.fail();
}
}
if (failed) {
process.exit(1);
}
}
console.log("");
await delay(250);
const octoAuthSpinner = ora({
text: chalk.yellow("Initializing Github Client"),
color: "yellow"
}).start();
const octokit = new Octokit({
auth: process.env.PERSONAL_ACCESS_TOKEN
});
await delay(500);
try {
await octokit.request("/user");
} catch (error) {
octoAuthSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
if (error.message === "Bad credentials") {
ora({
indent: 2,
text: chalk.red("Bad credentials!")
})
.start()
.fail();
} else {
ora({
indent: 2,
text: chalk.red(`Error: ${error.name}, Message: ${error.message}!`)
})
.start()
.fail();
}
process.exit(1);
}
octoAuthSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
ora({
indent: 2,
text: chalk.green("Client initialized!")
})
.start()
.succeed();
console.log("");
await delay(100);
let USERNAME = null;
while (!USERNAME) {
const usernameInput = readlineSync.question(
chalk.yellow(
" + Type the Github user whose recent events history" +
"\n you would like to view then hit enter: "
)
);
const verifySpinner = ora({
text: chalk.cyan(`Verifying existence of user "${usernameInput}"`),
color: "cyan",
indent: 4
}).start();
try {
const result = await octokit.users.getByUsername({
username: usernameInput
});
if (result.data === null) {
throw new Error("Not Found");
}
USERNAME = result.data.login;
} catch (error) {
verifySpinner.stopAndPersist({ symbol: chalk.cyan("⠿") });
if (error.message === "Not Found") {
ora({
indent: 6,
text: chalk.red(`${usernameInput} does not exist!`)
})
.start()
.fail();
} else {
ora({
indent: 6,
text: chalk.red(`Error: ${error.name}, Message: ${error.message}!`)
})
.start()
.fail();
}
}
if (USERNAME !== null) {
verifySpinner.stopAndPersist({ symbol: chalk.cyan("⠿") });
ora({
indent: 6,
text: chalk.green(`${usernameInput} exists!`)
})
.start()
.succeed();
}
}
console.log("");
const fetchSpinner = ora({
text: chalk.yellow(`Fetching recent event data for ${USERNAME}`),
color: "yellow"
}).start();
await delay(250);
let results;
try {
results = await octokit.activity.listPublicEventsForUser({
username: USERNAME
});
} catch (error) {
fetchSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
ora({
indent: 2,
text: chalk.red(`Error: ${error.name}, Message: ${error.message}!`)
})
.start()
.fail();
process.exit(1);
}
fetchSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
ora({
indent: 2,
text: chalk.green("Event data acquired!")
})
.start()
.succeed();
await delay(250);
console.log("");
const printSpinner = ora({
text: chalk.yellow(`Pretty printing data to ${__dirname}/${USERNAME}.json`),
color: "yellow"
}).start();
await delay(500);
printSpinner.stopAndPersist({ symbol: chalk.yellow("⠿") });
try {
const { data: events } = results;
const json = JSON.stringify({ events }, null, 1);
fs.writeFileSync(`${USERNAME}.json`, json);
ora({
indent: 2,
text: chalk.green("Printed events data!")
})
.start()
.succeed();
process.exit(0);
} catch (error) {
ora({
indent: 2,
text: chalk.red(`Error: ${error.name}, Message: ${error.message}!`)
})
.start()
.fail();
}
})();