-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.js
457 lines (364 loc) Β· 10.3 KB
/
db.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
const {writeFile, readFile, stat} = require('fs/promises');
const mkdirp = require('mkdirp');
const {get, post} = require('superagent');
const git = require('isomorphic-git');
const http = require('isomorphic-git/http/node');
const semver = require('semver');
const toml = require('toml');
const Throttle = require('superagent-throttle')
const Search = require("flexsearch");
let throttle = new Throttle({
active: true, // set false to pause queue
rate: 10, // how many requests can be sent every `ratePer`
ratePer: 2000, // number of ms in which `rate` requests may be sent
concurrent: 10 // how many requests can be sent concurrently
})
const getVersions = async (nameWithOwner) => {
const cachePath = `.cache/${nameWithOwner.replace(/[/]/g, '-')}-refs.json`;
const cached = await readFile(cachePath, 'utf8').catch(()=>null);
if (cached) {
return JSON.parse(cached);
}
let refs = git.listServerRefs({
http,
url: `https://github.com/${nameWithOwner}.git`,
symrefs: true
});
const result = await refs.then(
remote => {
const refs =
remote
.map(x => [x.oid, x.ref
.replace('refs/heads/','')
.replace('refs/tags/','')]);
const main = new Set(['master', 'main', 'develop'])
const branches = refs.filter(x=>main.has(x[1]));
return branches.concat(
[...refs]
.filter(x=>semver.valid(x[1]))
.sort( (a, b) => semver.compare(b[1], a[1]))
);
});
await writeFile(cachePath, JSON.stringify(result, null, 2));
return result;
}
const getFile = (nameWithOwner, file) => async (ref) => {
const cachePath = `.cache/${nameWithOwner.replace(/[/]/g, '-')}-${ref}-${file}`;
const cached = await readFile(cachePath, 'utf8')
.catch(() => null)
if (cached) {
return [file, ref, cached];
}
const result =
await
get(`https://raw.githubusercontent.com/${nameWithOwner}/${ref}/${file}`)
.use(throttle.plugin())
.then(x=>x.text)
.catch(() => '')
await writeFile(cachePath, result);
return [file, ref, result];
}
const findManifests = async (nameWithOwner) => {
const cachePath = `.cache/${nameWithOwner.replace(/[/]/g, '-')}-manifests.json`;
const cached = await readFile(cachePath, 'utf8').catch(()=>null);
if (cached) {
return JSON.parse(cached);
}
const versions = await getVersions(nameWithOwner);
const manifests = await Promise
.all(versions.map( ([oid, ref]) => getFile(nameWithOwner, 'buckaroo.toml')(ref)))
.then(xs => xs.filter(x=> x[2] && x[2] != '' ));
const lockFiles = await Promise.all(
manifests.map(x => getFile(nameWithOwner, 'buckaroo.lock.toml')(x[1]))
);
const bucks = await Promise.all(
manifests.map(x => getFile(nameWithOwner, 'BUCK')(x[1]))
);
const bazels = await Promise.all(
manifests.map(x => getFile(nameWithOwner, 'BUILD')(x[1]))
);
const result = manifests.map(
(x, i) => ({
ref: x[1],
manifest: x[2],
lockFile: lockFiles[i][2],
buck: bucks[i][2],
bazel: bazels[i][2],
})
);
await writeFile(cachePath, JSON.stringify(result, null, 2));
return result;
}
function tryParse(x) {
try {
return toml.parse(x);
}catch(_){
return {};
}
}
function extractDeps (x) {
const manifest = tryParse(x.manifest);
const lockFile = tryParse(x.lockFile||'');
const deps = (manifest.dependency||[]).map(x => ({
uri: x.package,
name: x.package.replace('github.com/', ''),
version: x.version
}));
const lock = Object.entries((lockFile||{}).lock||{}).map( ([package, spec]) => ({
uri: package,
name: package.replace('github.com/', ''),
spec
}));
return {
...x,
deps,
lock
}
}
const query = `
# Type queries into this side of the screen, and you will
# see intelligent typeaheads aware of the current GraphQL type schema,
# live syntax, and validation errors highlighted within the text.
# We'll get you started with a simple query showing your username!
query GetRepos($count: Int = 1, $after: String) {
organization(login: "buckaroo-pm") {
repositories(first:$count, after: $after) {
pageInfo {
hasNextPage
endCursor
}
nodes {
nameWithOwner
description
licenseInfo { name: spdxId }
homepageUrl
updatedAt
pushedAt
openGraphImageUrl
stargazerCount
forkCount
parent {
nameWithOwner
stargazerCount
forkCount
updatedAt
pushedAt
mentionableUsers(first:25) {
totalCount
nodes {
login
avatarUrl
}
}
contactLinks {
about
name
url
}
openGraphImageUrl
fundingLinks {
url
platform
}
repositoryTopics(first:20) {
nodes {
topic { name }
}
}
}
repositoryTopics(first:20) {
nodes {
topic { name }
}
}
}
}
}
}
`
const getReadme = async (nameWithOwner) => {
const cachePath = `.cache/${nameWithOwner.replace(/[/]/g, '-')}.md`;
const file = await readFile(cachePath, 'utf8')
.catch(()=>null)
if (file) {
return file;
}
const result = await
get(`https://api.github.com/repos/${nameWithOwner}/readme`)
.use(throttle.plugin())
.set({
'User-Agent': 'superagent',
Authorization: `Bearer ${process.env.GITHUB_TOKEN}`
})
.then(x=>Buffer.from(x.body.content, 'base64').toString('utf8'))
.catch(()=>'');
await writeFile(cachePath, result);
return result;
}
const getRepos = async ({count, after}) => {
const cachePath = `.cache/repo-${count}${after||''}.json`;
const file = await readFile(cachePath, 'utf8')
.then(x=>JSON.parse(x))
.catch(()=>null)
if (file) {
return file;
}
const result =
await post('https://api.github.com/graphql')
.use(throttle.plugin())
.set({
'User-Agent': 'superagent',
Authorization: `Bearer ${process.env.GITHUB_TOKEN}`
})
.send({
query,
variables: {count, after},
operationName: 'GetRepos'
})
.then(x=>x.body.data);
await writeFile(cachePath, JSON.stringify(result, null, 2));
return result;
}
async function oneAtATime(xs) {
return xs.reduce(async (a, b) => {
const prev = await a;
const next = await b();
return [...prev, next];
}, Promise.resolve([]));
}
function cleanupEntry(x) {
return ({
packageName: x.nameWithOwner,
name: (x.parent||x).nameWithOwner,
image: (x.parent||x).openGraphImageUrl,
licence: (x.licenseInfo||{name:''}).name,
description: x.description,
readme: x.readme,
versions: x.manifests,
updated: x.updatedAt,
updatedUpstream: (x.parent||x).updatedAt,
contributors: (x.parent&&x.parent.mentionableUsers.nodes || []),
fundingLinks: (x.parent&&x.parent.fundingLinks.map(x=>x.url)||[]),
contactLinks: (x.parent&&x.parent.contactLinks.map(x=>x.url)||[]),
stars: Math.max(x.stargazerCount, (x.parent||x).stargazerCount),
forks: Math.max(x.forkCount, (x.parent||x).forkCount),
topics: (x.parent||x).repositoryTopics.nodes.map(x=>x.topic.name)
})
}
function summary(x) {
return {
packageName: x.packageName,
name: x.name,
//image: x.image,
license: x.license,
stars: x.stars,
topics: x.topics,
description: x.description,
versions: x.versions
.map(x=>({
ref:x.ref,
bazel: !!x.bazel,
buck: !!x.buck,
deps: x.deps.length,
transitive: x.lock.length
})),
updated: x.updated,
updatedUpstream: x.updatedUpstream
}
}
function buildDatabase(xs) {
const topicIndex =
xs.flatMap(x => x.topics.map(t => [t, summary(x)]))
.reduce( (a, [t, x]) => ({...a, [t]: [...a[t], ...x] }), {})
return {
all: dxs,
topicIndex,
}
}
async function main() {
await mkdirp('.cache');
let after;
let all = [];
while (1) {
const repos = await getRepos({count:20, after});
const data = await oneAtATime(
repos
.organization
.repositories
.nodes
.map((x) => async() => {
const [readme, manifests] = await Promise.all([
getReadme(x.nameWithOwner),
findManifests(x.nameWithOwner)
.then(xs=>xs.map(extractDeps))
]);
return {
...x,
readme,
manifests
}
})
);
const {hasNextPage, endCursor} =
repos
.organization
.repositories
.pageInfo
after = endCursor;
console.log(data);
all = [...all, ...data];
if (!hasNextPage)
break;
}
const entries = all.map(cleanupEntry);
for (const entry of entries) {
const dir = `public/packages/${entry.packageName}`;
const img =
stat(`${dir}/logo.png`)
.then(() =>
get(entry.image)
.responseType('blob')
.buffer(true))
.catch(()=>{})
delete entry.image;
await mkdirp(dir);
await Promise.all([
writeFile(`${dir}/full.json`, JSON.stringify(entry, null, 2)),
writeFile(`${dir}/summary.json`, JSON.stringify(summary(entry), null, 2)),
img.then(data => {
if (data && data.body instanceof Buffer) {
return writeFile(`${dir}/logo.png`, data.body)
}
})
]);
}
const db = entries.map(summary);
await writeFile(`public/packages/summaries.json`, JSON.stringify(db, null, 2));
const search = Search.create({
doc: {
id: "id",
field: {
name: "match",
description: {
tokenize: "forward",
encode: "extra"
},
},
}
});
const index = search.add(db.map( (x, i) =>({
id: i,
name: x.packageName,
description: x.description,
stars: x.stars,
topics: x.topics,
...(x.versions[0]||{})
})));
await writeFile(`public/packages/search.index`, index.export());
const names = db.map(x=>{
const [owner, name] = x.packageName.split('/');
return {owner, name};
});
await writeFile(`public/packages/names.json`, JSON.stringify(names, null, 2));
}
main()