Compare commits
2 commits
0958fda473
...
c0b44b9701
Author | SHA1 | Date | |
---|---|---|---|
|
c0b44b9701 | ||
|
109fd6a633 |
|
@ -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":[{"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":[{"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
|
||||
```
|
||||
|
||||
#### With a volume mount (preffered)
|
||||
|
@ -108,7 +108,8 @@ 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,7 +17,8 @@
|
|||
"email": "00000001+user2@users.noreply.github.com",
|
||||
"name": "user2"
|
||||
}
|
||||
]
|
||||
],
|
||||
"modifyReadme": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -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>();
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue