-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.js
More file actions
196 lines (175 loc) · 5.84 KB
/
api.js
File metadata and controls
196 lines (175 loc) · 5.84 KB
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
var request = require("request");
var rp = require("request-promise");
require("dotenv").config({silent: true});
if (typeof process.env.CLIENT_ID === "undefined") {
console.log("[*] Client ID not set.");
return;
}
if (typeof process.env.CLIENT_SECRET === "undefined") {
console.log("[*] Client secret not set.");
return;
}
/*
* Get the last page number of a paginated request.
* Used to determine how many pages of contributors to request.
*/
function getLastLink(header) {
var regex = /page=(\d+)>; rel="last"/;
var match = regex.exec(header);
if (match) {
return match[1];
}
return 0;
}
/*
* Make an api call to the GitHub api.
*/
function ghAPICall(url) {
if (url.indexOf("?") === -1) {
url += "?client_id=" + process.env.CLIENT_ID + "&client_secret=" + process.env.CLIENT_SECRET;
} else {
url += "&client_id=" + process.env.CLIENT_ID + "&client_secret=" + process.env.CLIENT_SECRET;
}
return new Promise(function(resolve, reject) {
rp({
url: "https://api.github.com" + url,
json: true,
headers: {
"User-Agent": "github-stupidity"
},
resolveWithFullResponse: true
}).then(function(res) {
return resolve({body: res.body, link: res.headers.link});
}).catch(function(err) {
if (err.statusCode == 401) {
return reject(new Error("Bad credentials."));
} else if (err.statusCode === 403) {
return reject(new Error("API rate limit exceeded. Please try again later."));
} else if (err.statusCode === 404) {
return reject(new Error("Repository not found."));
} else if (err.statusCode === 422) {
return reject(new Error("Invalid field."));
} else {
return reject(new Error("Failed to make api request."));
}
});
});
}
/*
* Get the number of users who contributed to a repository.
*/
function getContributors(repo) {
return new Promise(function(resolve, reject) {
ghAPICall("/repos/" + repo + "/contributors").then(function(res) {
var data = res.body;
var urls = [];
var last = getLastLink(res.link);
var contributors = data.length;
if (last == 0) {
return resolve(contributors);
}
for (var i=2; i <= last; i++) {
urls.push("/repos/" + repo + "/contributors?page=" + i);
}
var promises = [];
for (var i = 0; i < urls.length; i++) {
setTimeout(function () {
if (urls[i] !== undefined) {
promises.push(ghAPICall(urls[i]));
}
}, 500);
}
Promise.all(promises).then(function(res) {
contributors += res.length;
return resolve(contributors);
});
}, function(err) {
return reject(err);
});
});
}
/*
* Get basic information about a repository, including stars, forks,
* and number of contributors.
*/
function getRepoInfo(repo) {
return new Promise(function(resolve, reject) {
ghAPICall("/repos/" + repo).then(function(result) {
getContributors(repo).then(function(contributors) {
var ret = result.body;
ret["contributors"] = contributors;
return resolve(ret);
}, function(err) {
return reject(err);
});
}, function(err) {
return reject(err);
});
});
}
/*
* Calculate the stupidity of a repository.
*/
function calculateRepoStupidity(repo) {
return new Promise(function(resolve, reject) {
getRepoInfo(repo).then(function(data) {
var name = data["full_name"]
var stars = data["stargazers_count"];
var forks = data["forks_count"];
var contributors = data["contributors"];
var stupidity;
if (stars === 0) {
stupidity = 0;
} else {
stupidity = (((forks - contributors) / stars) * 100);
}
stupidity = stupidity.toFixed(2);
if (stupidity < 0) {
stupidity = 0;
}
var data = {
name: name,
stars: stars,
forks: forks,
contributors: contributors,
stupidity: stupidity
};
return resolve(data);
}, function(err) {
return reject(err);
});
});
}
/*
* Calculate the stupidity of a language
*/
function calculateLanguageStupidity(language) {
return new Promise(function(resolve, reject) {
ghAPICall("/search/repositories?q=+language:" + language + "&sort=stars&order=desc&per_page=20").then(function(data) {
var urls = [];
var repos = data.body["items"];
if (repos.length === 0) {
return reject(new Error("No repositories found."));
}
// Get repo urls
for (repo in repos) {
urls.push(repos[repo]["full_name"]);
}
// Calculate the stupidity of all repositories
Promise.all(urls.map(calculateRepoStupidity)).then(function(data) {
var res = {
language: language,
repos: data
};
return resolve(res);
}, function(err) {
return reject(err);
});
}, function(err) {
return reject(err);
});
});
}
module.exports.calculateRepoStupidity = calculateRepoStupidity;
module.exports.calculateLanguageStupidity = calculateLanguageStupidity;
module.exports.getRepoInfo = getRepoInfo;