-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-activity.js
285 lines (234 loc) · 9.3 KB
/
github-activity.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import https from 'https';
import readline from 'readline';
import chalk from 'chalk';
import figlet from 'figlet';
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const CACHE_DIR = path.join(__dirname, 'cache');
const CACHE_MAX_AGE = 86400000; // 1 day in milliseconds
const CACHE_TTL = 300000; // 5 minutes in milliseconds
// Ensure cache directory exists
if (!fs.existsSync(CACHE_DIR)) {
fs.mkdirSync(CACHE_DIR);
}
const clearOldCacheFiles = () => {
console.log(chalk.blue('Checking for old cache files to clear...'));
const files = fs.readdirSync(CACHE_DIR);
files.forEach(file => {
const filePath = path.join(CACHE_DIR, file);
const stats = fs.statSync(filePath);
const fileAge = Date.now() - stats.mtimeMs;
if (fileAge > CACHE_MAX_AGE) {
fs.unlinkSync(filePath);
console.log(chalk.red(`Deleted old cache file: ${file}`));
}
});
console.log(chalk.green('Cache cleanup complete.'));
};
const eventTypes = [
'PushEvent',
'PullRequestEvent',
'CreateEvent',
'WatchEvent',
'DeleteEvent',
'IssueCommentEvent',
'All'
];
const checkUserExists = (username, callback) => {
const options = {
hostname: 'api.github.com',
path: `/users/${username}`,
method: 'GET',
headers: {
'User-Agent': 'node.js'
}
};
const req = https.request(options, (res) => {
let result = '';
res.on('data', (chunk) => {
result += chunk;
});
res.on('end', () => {
if (res.statusCode === 404) {
console.log(chalk.red(`Error: User ${username} not found.`));
callback(false);
} else if (res.statusCode === 200) {
callback(true);
} else {
console.log(chalk.red(`Error: Failed to fetch user data. Status Code: ${res.statusCode}`));
callback(false);
}
});
});
req.on('error', (e) => {
console.error(chalk.red(`Problem with request: ${e.message}`));
callback(false);
});
req.end();
};
const getUserActivity = (username, selectedEventType) => {
const cacheKey = `${username}_${selectedEventType}.json`;
const cacheFilePath = path.join(CACHE_DIR, cacheKey);
// Check if the cache exists and is still valid (TTL of 5 minutes)
if (fs.existsSync(cacheFilePath)) {
const stats = fs.statSync(cacheFilePath);
const fileAge = Date.now() - stats.mtimeMs;
if (fileAge < CACHE_TTL) {
console.log(chalk.green('\nUsing cached data...'));
const cachedData = JSON.parse(fs.readFileSync(cacheFilePath, 'utf-8'));
// Process and display cached data directly
const summary = cachedData.reduce((acc, event) => {
const repoName = event.repo.name;
const eventType = event.type;
if (!acc[repoName]) {
acc[repoName] = {};
}
if (!acc[repoName][eventType]) {
acc[repoName][eventType] = 0;
}
acc[repoName][eventType]++;
return acc;
}, {});
console.log(chalk.yellow('\nActivity Summary:'));
const output = Object.entries(summary).flatMap(([repoName, events]) =>
Object.entries(events).map(([eventType, count]) => {
let action = '';
switch (eventType) {
case 'PushEvent':
action = `Pushed ${count} commit${count > 1 ? 's' : ''}`;
break;
case 'CreateEvent':
action = `Created ${count} event${count > 1 ? 's' : ''}`;
break;
case 'WatchEvent':
action = `Starred`;
break;
case 'DeleteEvent':
action = `Deleted ${count} event${count > 1 ? 's' : ''}`;
break;
case 'PullRequestEvent':
action = `Opened ${count} pull request${count > 1 ? 's' : ''}`;
break;
case 'IssueCommentEvent':
action = `Commented on ${count} issue${count > 1 ? 's' : ''}`;
break;
default:
action = `${eventType} (${count})`;
}
return chalk.green(`- ${action} in ${repoName}`);
})
);
output.forEach(line => console.log(line));
return;
} else {
console.log(chalk.yellow('Cache expired. Fetching new data...\n'));
}
}
const options = {
hostname: 'api.github.com',
path: `/users/${username}/events`,
method: 'GET',
headers: {
'User-Agent': 'node.js'
}
};
const req = https.request(options, (res) => {
let data = '';
res.on('data', (chunk) => {
data += chunk;
});
res.on('end', () => {
if (res.statusCode === 200) {
const events = JSON.parse(data);
fs.writeFileSync(cacheFilePath, JSON.stringify(events));
const filteredEvents = selectedEventType === 'All' ? events : events.filter(event => event.type === selectedEventType);
const summary = filteredEvents.reduce((acc, event) => {
const repoName = event.repo.name;
const eventType = event.type;
if (!acc[repoName]) {
acc[repoName] = {};
}
if (!acc[repoName][eventType]) {
acc[repoName][eventType] = 0;
}
acc[repoName][eventType]++;
return acc;
}, {});
console.log(chalk.yellow('\nActivity Summary:'));
const output = Object.entries(summary).flatMap(([repoName, events]) =>
Object.entries(events).map(([eventType, count]) => {
let action = '';
switch (eventType) {
case 'PushEvent':
action = `Pushed ${count} commit${count > 1 ? 's' : ''}`;
break;
case 'CreateEvent':
action = `Created ${count} event${count > 1 ? 's' : ''}`;
break;
case 'WatchEvent':
action = `Starred`;
break;
case 'DeleteEvent':
action = `Deleted ${count} event${count > 1 ? 's' : ''}`;
break;
case 'PullRequestEvent':
action = `Opened ${count} pull request${count > 1 ? 's' : ''}`;
break;
case 'IssueCommentEvent':
action = `Commented on ${count} issue${count > 1 ? 's' : ''}`;
break;
default:
action = `${eventType} (${count})`;
}
return chalk.green(`- ${action} in ${repoName}`);
})
);
output.forEach(line => console.log(line));
} else {
console.log(chalk.red(`Error: ${res.statusCode} - ${res.statusMessage}`));
}
});
});
req.on('error', (e) => {
console.error(chalk.red(`Problem with request: ${e.message}`));
});
req.end();
};
const main = () => {
clearOldCacheFiles();
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
figlet('GitHub User Activity', (err, data) => {
if (err) {
console.log(chalk.red('Something went wrong...'));
console.dir(err);
return;
}
console.log(chalk.blue(data));
rl.question('Enter GitHub Username: ', (username) => {
checkUserExists(username, (exists) => {
if (!exists) {
rl.close();
return;
}
console.log(chalk.green(`Fetching activity for ${username}...`));
console.log(chalk.cyan('Select the event type to filter by:'));
eventTypes.forEach((eventType, index) => {
console.log(chalk.magenta(`${index + 1}. ${eventType}`));
});
rl.question('\nEnter the number corresponding to the event type: ', (choice) => {
const selectedEventType = eventTypes[parseInt(choice) - 1] || 'All';
getUserActivity(username, selectedEventType );
rl.close();
});
});
});
});
}
main();