-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreate-starline.js
308 lines (265 loc) · 10.1 KB
/
create-starline.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
import {Octokit as _Octokit} from "@octokit/core";
import {restEndpointMethods} from "@octokit/plugin-rest-endpoint-methods";
import {paginateGraphQL} from "@octokit/plugin-paginate-graphql";
import {throttling} from "@octokit/plugin-throttling";
import {createSvg} from "./starline-svg.js";
import * as fs from "node:fs";
import * as path from "node:path";
import {
downloadGithubReleaseAsset,
getGistOwner,
gistExists,
parseRepository,
uploadGithubReleaseAsset
} from "./lib/github.js";
import starlineConfig from "./config.js";
const input = {
resource: process.argv[2]
}
const Octokit = _Octokit
.plugin(throttling)
.plugin(restEndpointMethods)
.plugin(paginateGraphQL);
const OctokitThrottle = {
onRateLimit: (retryAfter, options, octokit, retryCount) => {
octokit.log.warn(`Request quota exhausted for request ${options.method} ${options.url}`,);
if (retryCount < 1) {
// only retries once
octokit.log.info(`Retrying after ${retryAfter} seconds!`);
return true;
}
}, onSecondaryRateLimit: (retryAfter, options, octokit) => {
// does not retry, only logs a warning
octokit.log.warn(`SecondaryRateLimit detected for request ${options.method} ${options.url}`,);
},
}
const octokit = new Octokit({auth: process.env.GITHUB_TOKEN, throttle: OctokitThrottle})
const octokitGist = new Octokit({auth: process.env.GIST_GITHUB_TOKEN, throttle: OctokitThrottle})
// --- main start -------------------------------------------------------------
const stargazerDates = await getStargazerDates(input.resource)
console.log(`Create starline image...`)
const svg = createSvg(stargazerDates.dates)
const svgFileName = `${input.resource}/${starlineConfig.files.image.name}`
// store image to local file system
const svgFileNameLocal = 'starlines/' + svgFileName
console.log(' Write to ' + svgFileNameLocal)
writeFileSyncRecursive(svgFileNameLocal, svg)
// store image to GitHub release
console.log(` Upload to GitHub release ${starlineConfig.cache.releaseTag}`)
await uploadGithubReleaseAsset({
...starlineConfig.repository,
releaseTag: starlineConfig.cache.releaseTag,
fileName: svgFileName,
label: `${input.resource} SVG`,
fileData: svg,
contentType: starlineConfig.files.image.contentType,
overwrite: true,
})
// --- main end ---------------------------------------------------------------
async function getStargazerDates(resource) {
console.log(`Get ${resource} stargazers...`)
const resourceParts = resource.split('/');
// user
if (resourceParts.length === 1) {
let user = resourceParts[0]
let cached = 0
let fetched = 0
let dates = []
for (const repository of await getUserRepositories(user)) {
console.log(repository + '...')
const stargazerDates = await getStargazerDates(repository)
.catch((error) => {
console.error(error)
return {cached: 0, fetched: 0, dates: []}
})
cached += stargazerDates.cached
fetched += stargazerDates.fetched
dates = dates.concat(stargazerDates.dates)
}
return {
cached,
fetched,
dates,
}
}
// repository
console.log(` Load stargazers cache...`)
const stargazerCache = await loadStargazerDates(resource)
if (stargazerCache.dates.length > 0) {
console.log(` ${stargazerCache.dates.length} stargazers (latest: ${stargazerCache.dates[0].toISOString().split('T')[0]})`)
} else {
console.log(` 0 stargazers`)
}
const fetchedStargazerDates = []
console.log(` Fetch stargazers...`)
for await (const stargazersBatch of await getStargazerIterator(resource)) {
let stopIterating = false
const starredAtDates = stargazersBatch.edges.map(({starredAt}) => new Date(starredAt))
for (const starredAtDate of starredAtDates) {
if (starredAtDate <= stargazerCache.dates[0]) {
stopIterating = true
break;
}
fetchedStargazerDates.push(starredAtDate);
}
const fetchedStargazersCount = fetchedStargazerDates.length;
const stargazersToFetch = stargazersBatch.totalCount - (stargazerCache.dates?.length);
const stargazersFetchProgress = stargazersToFetch <= 0 ? 1
: fetchedStargazersCount / stargazersToFetch;
console.log(` ${String(Math.round(stargazersFetchProgress * 100)).padStart(3, ' ')}% (${String(fetchedStargazersCount).padStart(stargazersToFetch.toString().length, ' ')}/${stargazersToFetch})`)
if (stopIterating) {
break;
}
}
const stargazerDates = fetchedStargazerDates.concat(stargazerCache.dates)
if (fetchedStargazerDates.length > 0) {
console.log(` Store stargazers cache...`)
await storeStargazerDates(resource, stargazerDates)
console.log(` ${stargazerDates.length} stargazers (latest: ${stargazerDates[0].toISOString().split('T')[0]})`)
}
return {
cached: stargazerCache.dates.length,
fetched: fetchedStargazerDates.length,
dates: stargazerDates,
}
}
async function getStargazerIterator(repository) {
// gist
if (repository.endsWith('@gist')) {
console.log(` Repository found...`)
repository = repository.replace(/@gist$/, '');
if (!await gistExists(repository)) {
throw new Error(`Gist ${repository} not found`)
}
const repositoryObject = parseRepository(repository);
return wrapAsyncIteratorWithMapping(octokitGist.graphql.paginate.iterator(`
query paginate ($gist: String!, $cursor: String) {
viewer {
gist(name: $gist) {
stargazers(first: 100, orderBy: {field:STARRED_AT, direction: DESC}, after: $cursor) {
totalCount
edges {
starredAt
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}`, {
gist: repositoryObject.repo,
}), (res) => res.viewer.gist.stargazers)
}
// repository
const repositoryObject = parseRepository(repository);
return wrapAsyncIteratorWithMapping(octokit.graphql.paginate.iterator(`
query paginate ($owner: String!, $repo: String!, $cursor: String) {
repositoryOwner(login: $owner) {
repository(name: $repo) {
stargazers(first: 100, orderBy: {field:STARRED_AT, direction: DESC}, after: $cursor) {
totalCount
edges {
starredAt
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}`, {
owner: repositoryObject.owner,
repo: repositoryObject.repo,
}), (res) => res.repositoryOwner.repository.stargazers)
}
async function getUserRepositories(user) {
let result = []
const repositories = await octokit.graphql.paginate(`
query paginate ($owner: String!, $cursor: String) {
repositoryOwner(login: $owner) {
repositories(ownerAffiliations:[OWNER], first: 100, after: $cursor) {
nodes {
name
}
pageInfo {
hasNextPage
endCursor
}
}
}
}`, {
owner: user,
}).then((data) => data.repositoryOwner.repositories.nodes.map(({name}) => `${user}/${name}`))
result = result.concat(repositories)
const gists = await octokitGist.graphql.paginate(`
query paginate ($user: String!, $cursor: String) {
user(login: $user) {
gists(first: 100, after: $cursor) {
nodes {
name
}
pageInfo {
hasNextPage
endCursor
}
}
}
}`, {
user,
}).then((data) => data.user.gists.nodes.map(({name}) => `${user}/${name}@gist`))
result = result.concat(gists)
return result
}
// --- Stargazer Store ---------------------------------------------------
async function storeStargazerDates(resource, dates) {
const fileName = `${resource}/${starlineConfig.files.dates.name}`
let fileData = dates.map((date) => date.getTime())
fileData = JSON.stringify(fileData)
// local file store
writeFileSyncRecursive('starlines/' + fileName, fileData)
// github release store
await uploadGithubReleaseAsset({
...starlineConfig.repository,
releaseTag: starlineConfig.cache.releaseTag,
fileName,
label: `${resource} Cache`,
fileData,
contentType: starlineConfig.files.dates.contentType,
overwrite: true,
})
}
/**
* Load dates
* @param resource
* @returns {Promise<{dates: Date[], age: number}>}
*/
async function loadStargazerDates(resource) {
const asset = await downloadGithubReleaseAsset({
...starlineConfig.repository,
releaseTag: starlineConfig.cache.releaseTag,
fileName: `${resource}/${starlineConfig.files.dates.name}`,
})
if (!asset) {
return {
dates: [],
age: Infinity,
}
}
return {
dates: JSON.parse(asset.data).map((date) => new Date(date)),
age: parseInt(asset.age),
}
}
// --- Utils -------------------------------------------------------------------
function writeFileSyncRecursive(filename, content = '') {
fs.mkdirSync(path.dirname(filename), {recursive: true})
fs.writeFileSync(filename, content)
}
async function* wrapAsyncIteratorWithMapping(asyncIterator, mapFn) {
for await (const value of asyncIterator) {
yield await mapFn(value);
}
}