-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyze-languages.js
232 lines (204 loc) · 7.61 KB
/
analyze-languages.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
import { Octokit } from '@octokit/rest';
import { createWriteStream, readFileSync, existsSync, writeFileSync, mkdirSync } from 'fs';
import { parse } from 'csv-parse/sync';
import path from 'path';
import dotenv from 'dotenv';
dotenv.config();
function getLanguageFromExtension(filename) {
const ext = path.extname(filename).toLowerCase();
const languageMap = {
'.js': 'JavaScript',
'.ts': 'TypeScript',
'.jsx': 'React (JS)',
'.tsx': 'React (TS)',
'.py': 'Python',
'.rb': 'Ruby',
'.java': 'Java',
'.go': 'Go',
'.cpp': 'C++',
'.cc': 'C++',
'.c': 'C',
'.h': 'C',
'.hpp': 'C++',
'.cs': 'C#',
'.php': 'PHP',
'.swift': 'Swift',
'.kt': 'Kotlin',
'.rs': 'Rust',
'.scala': 'Scala',
'.html': 'HTML',
'.css': 'CSS',
'.scss': 'SCSS',
'.sql': 'SQL',
'.sh': 'Shell',
'.bash': 'Shell',
'.yml': 'YAML',
'.yaml': 'YAML',
'.json': 'JSON',
'.md': 'Markdown',
'.xml': 'XML',
'.dockerfile': 'Dockerfile',
'.vue': 'Vue',
'.dart': 'Dart',
'.ex': 'Elixir',
'.exs': 'Elixir',
'.erl': 'Erlang',
'.fs': 'F#',
'.fsx': 'F#',
'.hs': 'Haskell',
'.lua': 'Lua',
'.m': 'Objective-C',
'.mm': 'Objective-C',
'.pl': 'Perl',
'.r': 'R',
'.rake': 'Ruby'
};
return languageMap[ext] || 'Other';
}
async function getPRFiles(octokit, owner, repo, pull_number) {
const files = [];
try {
for await (const response of octokit.paginate.iterator(
octokit.rest.pulls.listFiles,
{
owner,
repo,
pull_number,
per_page: 100
}
)) {
files.push(...response.data);
}
} catch (error) {
console.error(`Error getting PR files for ${repo}#${pull_number}:`, error.message);
}
return files;
}
async function analyzeUserLanguages(orgName, token) {
const date = new Date();
const month = String(date.getMonth() + 1).padStart(2, '0');
const year = date.getFullYear();
const outputDir = `./output`;
if (!existsSync(outputDir)) {
mkdirSync(outputDir, { recursive: true });
}
const outputFile = `${outputDir}/${orgName}_user_languages_${year}_${month}.csv`;
const cacheFile = `${outputDir}/${orgName}_processed_repos.json`;
const octokit = new Octokit({ auth: token });
const endDate = new Date();
const startDate = new Date();
const daysToAnalyze = parseInt(process.env.NUMBER_OF_DAYS_TO_ANALYZE || '60');
startDate.setDate(startDate.getDate() - daysToAnalyze);
let existingData = new Map();
let headers = 'User,Repository,Language,LinesAdded,LinesRemoved,PRCount,DateRangeStart,DateRangeEnd\n';
if (existsSync(outputFile)) {
const fileContent = readFileSync(outputFile, 'utf8');
const records = parse(fileContent, {
columns: true,
skip_empty_lines: true,
relax_column_count: true
});
records.forEach(record => {
const key = `${record.User}|||${record.Repository}|||${record.Language}`;
existingData.set(key, record);
});
}
let processedRepos = new Set();
if (existsSync(cacheFile)) {
processedRepos = new Set(JSON.parse(readFileSync(cacheFile, 'utf8')));
console.log(`Loaded ${processedRepos.size} processed repos from cache`);
}
const outputStream = createWriteStream(outputFile);
outputStream.write(headers);
existingData.forEach(record => {
outputStream.write(
`"${record.User}","${record.Repository}","${record.Language}",` +
`${record.LinesAdded},${record.LinesRemoved},${record.PRCount},` +
`"${record.DateRangeStart}","${record.DateRangeEnd}"\n`
);
});
try {
const repos = await octokit.paginate(octokit.rest.repos.listForOrg, {
org: orgName,
per_page: 100
});
for (const repo of repos) {
if (processedRepos.has(repo.name)) {
console.log(`Skipping ${repo.name} (already processed)`);
continue;
}
console.log(`Analyzing ${repo.name}...`);
const userLanguageStats = new Map();
try {
for await (const response of octokit.paginate.iterator(
octokit.rest.pulls.list,
{
owner: orgName,
repo: repo.name,
state: 'all',
sort: 'updated',
direction: 'desc',
per_page: 100
}
)) {
for (const pr of response.data) {
const prDate = new Date(pr.updated_at);
if (prDate < startDate) {
break;
}
const files = await getPRFiles(octokit, orgName, repo.name, pr.number);
const author = pr.user.login;
for (const file of files) {
const language = getLanguageFromExtension(file.filename);
const key = `${author}|||${repo.name}|||${language}`;
const existing = existingData.get(key) || {
additions: 0,
deletions: 0,
prCount: 0
};
if (!userLanguageStats.has(key)) {
userLanguageStats.set(key, {
additions: parseInt(existing.LinesAdded || 0),
deletions: parseInt(existing.LinesRemoved || 0),
prCount: parseInt(existing.PRCount || 0)
});
}
const stats = userLanguageStats.get(key);
stats.additions += file.additions;
stats.deletions += file.deletions;
stats.prCount += 1;
}
}
}
userLanguageStats.forEach((stats, key) => {
const [user, repo, language] = key.split('|||');
outputStream.write(
`"${user}","${repo}","${language}",${stats.additions},${stats.deletions},` +
`${stats.prCount},"${startDate.toISOString().split('T')[0]}",` +
`"${endDate.toISOString().split('T')[0]}"\n`
);
});
} catch (error) {
console.error(`Error processing repo ${repo.name}:`, error.message);
continue;
}
processedRepos.add(repo.name);
writeFileSync(cacheFile, JSON.stringify([...processedRepos]));
}
} catch (error) {
console.error('Error:', error.message);
process.exit(1);
} finally {
outputStream.end();
}
}
async function main() {
const orgName = process.argv[2] || process.env.GITHUB_ORG;
const token = process.env.GITHUB_TOKEN;
if (!orgName || !token) {
console.error('Please provide organization name and set GITHUB_TOKEN');
process.exit(1);
}
await analyzeUserLanguages(orgName, token);
}
main();