Compare commits
No commits in common. "c0b44b9701f5035f01b519dab5a07b42286aa37e" and "0958fda4735d4400a94c61899106a46e8aeec84c" have entirely different histories.
c0b44b9701
...
0958fda473
|
@ -43,7 +43,7 @@ Environment version of [data.json](https://git.bb1.fun/BradBot_1/GiteaForwarder/
|
|||
#### With an environment variable
|
||||
|
||||
```shell
|
||||
docker run --name forwarder -e PORT=80 -e DATA='[{"origin":"https://git.example.com/user/repo","recipients":[{"modifyReadme":true,"url":"https://gitlab.com/user/repo","authors":[{"old":"user@example.com","email":"00000000+user@users.noreply.github.com","name":"user"}]}]}]' -p 80:80 -d bradbot1/gitea-forwarder
|
||||
docker run --name forwarder -e PORT=80 -e DATA='[{"origin":"https://git.example.com/user/repo","recipients":[{"url":"https://gitlab.com/user/repo","authors":[{"old":"user@example.com","email":"00000000+user@users.noreply.github.com","name":"user"}]}]}]' -p 80:80 -d bradbot1/gitea-forwarder
|
||||
```
|
||||
|
||||
#### With a volume mount (preffered)
|
||||
|
@ -108,8 +108,7 @@ source: [docker-compose.yml](https://git.bb1.fun/BradBot_1/GiteaForwarder/src/br
|
|||
"email": "00000001+user2@users.noreply.github.com",
|
||||
"name": "user2"
|
||||
}
|
||||
],
|
||||
"modifyReadme": true
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -17,8 +17,7 @@
|
|||
"email": "00000001+user2@users.noreply.github.com",
|
||||
"name": "user2"
|
||||
}
|
||||
],
|
||||
"modifyReadme": true
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -18,7 +18,6 @@ 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>();
|
||||
|
||||
|
|
|
@ -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, existsSync, readFileSync } from 'fs'
|
||||
import { writeFileSync } from 'fs'
|
||||
|
||||
export async function cloneRepo(repo: string, out: string = __dirname): Promise<void> {
|
||||
try {
|
||||
|
@ -83,9 +83,8 @@ export async function changeCommitAuthors(recipient: Recipient, out: string = __
|
|||
}
|
||||
}
|
||||
|
||||
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);
|
||||
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()
|
||||
}
|
|
@ -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, insertToReadme } from './Git/GitManager';
|
||||
import { cloneRepo, changeCommitAuthors, push } from './Git/GitManager';
|
||||
import { rmSync, existsSync, readFileSync } from 'fs'
|
||||
|
||||
var dataToLoad: string;
|
||||
|
@ -56,7 +56,6 @@ 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;
|
||||
|
@ -96,7 +95,6 @@ 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,
|
||||
|
|
Loading…
Reference in a new issue