FEAT: optional inserting message into readme

This commit is contained in:
BradBot_1 2023-02-23 20:49:38 +00:00
parent 0958fda473
commit 109fd6a633
3 changed files with 10 additions and 6 deletions

View file

@ -18,6 +18,7 @@ import { GitAuthor } from '../Git/GitAuthor';
export class Recipient {
public readonly humanName: string;
public insertToReadme: boolean = false;
public readonly url:string;
public authorMap: Map<string, GitAuthor> = new Map<string, GitAuthor>();

View file

@ -18,7 +18,7 @@ import { simpleGit as Git } from 'simple-git';
import { GitAuthor } from './GitAuthor';
import { Recipient } from '../Forward/Recipient';
import { execSync } from 'child_process';
import { writeFileSync } from 'fs'
import { writeFileSync, existsSync, readFileSync } from 'fs'
export async function cloneRepo(repo: string, out: string = __dirname): Promise<void> {
try {
@ -83,8 +83,9 @@ export async function changeCommitAuthors(recipient: Recipient, out: string = __
}
}
export async function handleForward(forward: Forward):Promise<void> {
const git = Git().env('GIT_SSH_COMMAND', 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no');
await git.clone(forward.origin);
git.log()
export async function insertToReadme(projectName: string, projectLink: string, out: string = __dirname): Promise<void> {
const git = Git(out);
var data: string = `> This was cloned from [${projectName}](${projectLink})`;
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
writeFileSync(out + "README.md", data);
}

View file

@ -17,7 +17,7 @@ import { Forward } from './Forward/Forward';
import { createForward, getForwardByWebhook } from './Forward/ForwardManager';
import { createServer } from './Server/Server';
import { env, cwd } from 'process';
import { cloneRepo, changeCommitAuthors, push } from './Git/GitManager';
import { cloneRepo, changeCommitAuthors, push, insertToReadme } from './Git/GitManager';
import { rmSync, existsSync, readFileSync } from 'fs'
var dataToLoad: string;
@ -56,6 +56,7 @@ for (const forwardData of parsedData) {
continue;
}
const recipient = forward.createRecipient(recipientData.url, recipientData.humanName);
if (recipient.hasOwnProperty("modifyReadme")) recipient.insertToReadme = !!recipientData.modifyReadme;
if (!recipientData.hasOwnProperty("authors")) {
console.error("No authors provided for recipient: " + recipient.humanName||recipient.url);
continue;
@ -95,6 +96,7 @@ createServer(parseInt(env["PORT"]||"3000"), async (webhookId: string, webhookDat
for (const sendTo of forward.getRecipients()) {
await cloneRepo(forward.origin, outputDir);
await changeCommitAuthors(sendTo, outputDir);
if (sendTo.insertToReadme) await insertToReadme(webhookData.repository.full_name, webhookData.repository.html_url, outputDir);
await push(sendTo.url, outputDir);
rmSync(outputDir, {
recursive: true,