Compare commits

..

No commits in common. "5c4040acc57bc39b0c11123ba19bf848390650a2" and "e23fcdde1ab043721555f498c2043bec597d2051" have entirely different histories.

3 changed files with 4 additions and 20 deletions

View file

@ -36,15 +36,6 @@ The password for the SSL certification, no default
Environment version of [data.json](https://git.bb1.fun/BradBot_1/GiteaForwarder/src/branch/master/data.json), no default Environment version of [data.json](https://git.bb1.fun/BradBot_1/GiteaForwarder/src/branch/master/data.json), no default
### `README_NAME`
The name of the user that will commit the readme changes (if enabled), defaults to GiteaForwarder
### `README_EMAIL`
The email of the user that will commit the readme changes (if enabled), defaults to donotreply@bb1.fun
## Examples ## Examples
### Docker run ### Docker run
@ -52,13 +43,13 @@ The email of the user that will commit the readme changes (if enabled), defaults
#### With an environment variable #### With an environment variable
```shell ```shell
docker run --name forwarder -e PORT=80 -e README_NAME=GiteaForwarder -e README_EMAIL=donotreply@bb1.fun -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":[{"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) #### With a volume mount (preffered)
```shell ```shell
docker run --name forwarder -e PORT=80 -e README_NAME=GiteaForwarder -e README_EMAIL=donotreply@bb1.fun -v ./data.json:./data.json -p 80:80 -d bradbot1/gitea-forwarder docker run --name forwarder -e PORT=80 -v ./data.json:./data.json -p 80:80 -d bradbot1/gitea-forwarder
``` ```
You can find an example of [data.json here](https://git.bb1.fun/BradBot_1/GiteaForwarder/src/branch/master/data.json) You can find an example of [data.json here](https://git.bb1.fun/BradBot_1/GiteaForwarder/src/branch/master/data.json)
@ -78,8 +69,6 @@ services:
environment: environment:
PORT: 80 PORT: 80
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"}]}]}]' 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"}]}]}]'
README_NAME: GiteaForwarder
README_EMAIL: donotreply@bb1.fun
``` ```
#### With a volume mount (preffered) #### With a volume mount (preffered)
@ -89,14 +78,11 @@ version: '3'
services: services:
forwarder: forwarder:
build: .
image: bradbot1/gitea-forwarder image: bradbot1/gitea-forwarder
ports: ports:
- '80:80' - '80:80'
environment: environment:
PORT: 80 PORT: 80
README_NAME: GiteaForwarder
README_EMAIL: donotreply@bb1.fun
volumes: volumes:
- ./data.json:./data.json - ./data.json:./data.json
``` ```

View file

@ -12,7 +12,5 @@ services:
#SSL_CERT_PATH: #SSL_CERT_PATH:
#SSL_KEY_PATH: #SSL_KEY_PATH:
#SSL_PASSWORD: #SSL_PASSWORD:
README_NAME: GiteaForwarder
README_EMAIL: donotreply@bb1.fun
volumes: volumes:
- ./data.json:./data.json - ./data.json:./data.json

View file

@ -84,12 +84,12 @@ export async function changeCommitAuthors(recipient: Recipient, out: string = __
} }
export async function insertToReadme(projectName: string, projectLink: string, out: string = __dirname): Promise<void> { export async function insertToReadme(projectName: string, projectLink: string, out: string = __dirname): Promise<void> {
const git = Git(out).addConfig('user.email', process.env['README_EMAIL']||"donotreply@bb1.fun").addConfig('user.name', process.env['README_NAME']||"GiteaForwarder"); const git = Git(out).addConfig('user.email', 'BradBot_1@outlook.com').addConfig('user.name', 'BradBot1');
var data: string = `> This was cloned from [${projectName}](${projectLink})\n`; var data: string = `> This was cloned from [${projectName}](${projectLink})\n`;
if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString(); if (existsSync(out + "README.md")) data = data + readFileSync(out + "README.md").toString();
writeFileSync(out + "README.md", data); writeFileSync(out + "README.md", data);
await git.add("README.md") await git.add("README.md")
await git.commit("Modify README.md", "README.md", { await git.commit("Modify README.md", "README.md", {
"--author": `"${process.env['README_NAME']||"GiteaForwarder"} <${process.env['README_EMAIL']||"donotreply@bb1.fun"}>"` "--author": '"BradBot1 <BradBot_1@outlook.com>"'
}); });
} }