1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/tools/update-readme-contributors.ts
2023-09-13 19:19:31 +01:00

113 lines
2.5 KiB
TypeScript

import { rootDir } from './tool-utils';
const request = require('request');
interface Contributor {
avatar_url: string;
login: string;
html_url: string;
}
rootDir;
const readmePath = `${rootDir}/README.md`;
const { insertContentIntoFile } = require('./tool-utils.js');
async function gitHubContributors(page: number): Promise<Contributor[]> {
return new Promise((resolve, reject) => {
request.get({
url: `https://api.github.com/repos/laurent22/joplin/contributors${page ? `?page=${page}` : ''}`,
json: true,
headers: { 'User-Agent': 'Joplin Readme Updater' },
}, (error: any, response: any, data: any) => {
if (error) {
reject(error);
} else if (response.statusCode !== 200) {
reject(new Error(`Error HTTP ${response.statusCode}`));
} else {
resolve(data);
}
});
});
}
function contributorTable(contributors: Contributor[]) {
const rows = [];
let row: string[] = [];
rows.push(row);
const rowLength = 5;
let contributorIndex = 0;
while (contributorIndex < contributors.length) {
const c = contributors[contributorIndex];
contributorIndex++;
const cell = `<img width="50" src="${c.avatar_url}"/></br>[${c.login}](${c.html_url})`;
row.push(cell);
if (row.length >= rowLength) {
row = [];
rows.push(row);
}
}
while (rows[rows.length - 1].length < rowLength) rows[rows.length - 1].push('');
const header = [];
const headerLine = [];
for (let i = 0; i < rowLength; i++) {
header.push(' ');
headerLine.push(':---:');
}
const lines = [];
lines.push(`| ${header.join(' | ')} |`);
lines.push(`| ${headerLine.join(' | ')} |`);
for (const row of rows) {
lines.push(`| ${row.join(' | ')} |`);
}
return lines.join('\n');
}
async function main() {
let contributors: Contributor[] = [];
let pageIndex = 0;
const doneNames = [];
while (true) {
const response = await gitHubContributors(pageIndex);
pageIndex++;
if (!response.length) break;
// Remove duplicates
const temp = [];
for (const r of response) {
if (doneNames.indexOf(r.login) >= 0) continue;
doneNames.push(r.login);
temp.push(r);
}
contributors = contributors.concat(temp);
}
contributors = contributors.filter(c => {
return !['joplinbot', 'renovate[bot]', 'github-actions[bot]'].includes(c.login);
});
const tableHtml = contributorTable(contributors);
await insertContentIntoFile(
readmePath,
'<!-- CONTRIBUTORS-TABLE-AUTO-GENERATED -->\n',
'\n<!-- CONTRIBUTORS-TABLE-AUTO-GENERATED -->',
tableHtml,
);
}
main().catch((error) => {
console.error('Fatal error', error);
process.exit(1);
});