Skip to content

Commit 975fb6c

Browse files
author
Gusted
committed
Merge branch 'main' into fix-commit-page-when
2 parents 3a78545 + 8472884 commit 975fb6c

File tree

23 files changed

+624
-47
lines changed

23 files changed

+624
-47
lines changed

docs/content/doc/features/webhooks.en-us.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ All event pushes are POST requests. The methods currently supported are:
2828
- Microsoft Teams
2929
- Feishu
3030
- Wechatwork
31+
- Packagist
3132

3233
### Event information
3334

docs/content/doc/features/webhooks.zh-cn.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@ Gitea 的存储 webhook。这可以有存储库管路设定页 `/:username/:repo
2727
- Microsoft Teams
2828
- Feishu
2929
- Wechatwork
30+
- Packagist
3031

3132
## TBD

docs/content/doc/features/webhooks.zh-tw.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Gitea 的儲存庫事件支援 web hook。這可以有儲存庫管理員在設
2727
- Microsoft Teams
2828
- Feishu
2929
- Wechatwork
30+
- Packagist
3031

3132
### 事件資訊
3233

docs/content/doc/installation/with-docker-rootless.en-us.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,15 @@ Match User git
322322
AuthorizedKeysCommand /usr/bin/docker exec -i gitea /usr/local/bin/gitea keys -c /etc/gitea/app.ini -e git -u %u -t %t -k %k
323323
```
324324

325+
(From 1.16.0 you will not need to set the `-c /etc/gitea/app.ini` option.)
326+
325327
All that is left to do is restart the SSH server:
326328

327329
```bash
328330
sudo systemctl restart sshd
329331
```
332+
333+
**Notes**
334+
335+
This isn't actually using the docker SSH - it is simply using the commands around it.
336+
You could theoretically not run the internal SSH server.

docs/content/doc/installation/with-docker.en-us.md

Lines changed: 199 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -307,77 +307,233 @@ To set required TOKEN and SECRET values, consider using Gitea's built-in [genera
307307

308308
## SSH Container Passthrough
309309

310-
Since SSH is running inside the container, SSH needs to be passed through from the host to the container if SSH support is desired. One option would be to run the container SSH on a non-standard port (or moving the host port to a non-standard port). Another option which might be more straightforward is to forward SSH connections from the host to the container. This setup is explained in the following.
310+
Since SSH is running inside the container, SSH needs to be passed through from the host to the container if SSH support is desired. One option would be to run the container SSH on a non-standard port (or moving the host port to a non-standard port). Another option which might be more straightforward is to forward SSH connections from the host to the container.
311311

312-
This guide assumes that you have created a user on the host called `git` which shares the same `UID`/ `GID` as the container values `USER_UID`/ `USER_GID`. These values can be set as environment variables in the `docker-compose.yml`:
312+
There are multiple ways of doing this - however, all of these require some information about the docker being passed to the host.
313313

314-
```bash
315-
environment:
316-
- USER_UID=1000
317-
- USER_GID=1000
318-
```
314+
### SSHing Shim (with authorized_keys)
319315

320-
Next mount `/home/git/.ssh` of the host into the container. Otherwise the SSH authentication cannot work inside the container.
316+
The idea of this option is to use (essentially unchanged) the authorized_keys that gitea creates on the docker and simply shim the gitea binary the docker would use on the host to instead ssh into the docker ssh.
321317

322-
```bash
323-
volumes:
324-
- /home/git/.ssh/:/data/git/.ssh
325-
```
318+
- To make the forwarding work, the SSH port of the container (22) needs to be mapped to the host port 2222 in `docker-compose.yml` . Since this port does not need to be exposed to the outside world, it can be mapped to the `localhost` of the host machine:
326319

327-
Now a SSH key pair needs to be created on the host. This key pair will be used to authenticate the `git` user on the host to the container.
320+
```yaml
321+
ports:
322+
# [...]
323+
- "127.0.0.1:2222:22"
324+
```
328325
329-
```bash
330-
sudo -u git ssh-keygen -t rsa -b 4096 -C "Gitea Host Key"
331-
```
326+
- Next on the host create the `git` user which shares the same `UID`/ `GID` as the container values `USER_UID`/ `USER_GID`. These values can be set as environment variables in the `docker-compose.yml`:
327+
328+
```yaml
329+
environment:
330+
- USER_UID=1000
331+
- USER_GID=1000
332+
```
333+
334+
- Mount `/home/git/.ssh` of the host into the container. Otherwise the SSH authentication cannot work inside the container.
335+
336+
```yaml
337+
volumes:
338+
- /home/git/.ssh/:/data/git/.ssh
339+
```
340+
341+
- Now a SSH key pair needs to be created on the host. This key pair will be used to authenticate the `git` user on the host to the container.
342+
343+
```bash
344+
sudo -u git ssh-keygen -t rsa -b 4096 -C "Gitea Host Key"
345+
```
346+
347+
- Please note depending on the local version of ssh you may want to consider using `-t ecdsa` here.
348+
349+
- `/home/git/.ssh/authorized_keys` on the host now needs to be modified. It needs to act in the same way as `authorized_keys` within the Gitea container. Therefore add the public key of the key you created above ("Gitea Host Key") to `~/git/.ssh/authorized_keys`.
350+
351+
```bash
352+
echo "$(cat /home/git/.ssh/id_rsa.pub)" >> /home/git/.ssh/authorized_keys
353+
```
354+
355+
Important: The pubkey from the `git` user needs to be added "as is" while all other pubkeys added via the Gitea web interface will be prefixed with `command="/usr [...]`.
356+
357+
`/home/git/.ssh/authorized_keys` should then look somewhat like
358+
359+
```bash
360+
# SSH pubkey from git user
361+
ssh-rsa <Gitea Host Key>
362+
363+
# other keys from users
364+
command="/usr/local/bin/gitea --config=/data/gitea/conf/app.ini serv key-1",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty <user pubkey>
365+
```
366+
367+
- The next step is to create the file that will issue the SSH forwarding from the host to the container. The name of this file depends on your version of Gitea:
368+
369+
- For Gitea v1.16.0+:
370+
371+
```bash
372+
cat <<"EOF" | sudo tee /usr/local/bin/gitea
373+
#!/bin/sh
374+
ssh -p 2222 -o StrictHostKeyChecking=no [email protected] "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
375+
EOF
376+
chmod +x /usr/local/bin/gitea
377+
```
378+
379+
- For Gitea v1.15.x and earlier
380+
381+
```bash
382+
cat <<"EOF" | sudo tee /app/gitea/gitea
383+
#!/bin/sh
384+
ssh -p 2222 -o StrictHostKeyChecking=no [email protected] "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
385+
EOF
386+
sudo chmod +x /app/gitea/gitea
387+
```
388+
389+
Here is a detailed explanation what is happening when a SSH request is made:
390+
391+
1. A SSH request is made against the host (usually port 22) using the `git` user, e.g. `git clone git@domain:user/repo.git`.
392+
2. In `/home/git/.ssh/authorized_keys` , the command executes the `/usr/local/bin/gitea` script.
393+
3. `/usr/local/bin/gitea` forwards the SSH request to port 2222 which is mapped to the SSH port (ssh 22) of the container.
394+
4. Due to the existence of the public key of the `git` user in `/home/git/.ssh/authorized_keys` the authentication host → container succeeds and the SSH request get forwarded to Gitea running in the docker container.
395+
396+
If a new SSH key is added in the Gitea web interface, it will be appended to `.ssh/authorized_keys` in the same way as the already existing key.
397+
398+
**Notes**
399+
400+
SSH container passthrough using `authorized_keys` will work only if
401+
402+
- `opensshd` is used in the container
403+
- if `AuthorizedKeysCommand` is _not used_ in combination with `SSH_CREATE_AUTHORIZED_KEYS_FILE=false` to disable authorized files key generation
404+
- `LOCAL_ROOT_URL` is not changed (depending on the changes)
405+
406+
### SSHing Shell (with authorized_keys)
407+
408+
The idea of this option is to use (essentially unchanged) the authorized_keys that gitea creates on the docker and use a special shell for git user that uses ssh to shell to the docker git user.
409+
410+
- In this case we setup as above except instead of creating `/usr/local/bin/gitea` or `/app/gitea/gitea`
411+
we create a new shell for the git user:
412+
413+
```bash
414+
cat <<"EOF" | sudo tee /home/git/ssh-shell
415+
#!/bin/sh
416+
shift
417+
ssh -p 2222 -o StrictHostKeyChecking=no [email protected] "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $@"
418+
EOF
419+
sudo chmod +x /home/git/ssh-shell
420+
sudo usermod -s /home/git/ssh-shell git
421+
```
422+
423+
Be careful here - if you try to login as the git user in future you will ssh directly to the docker.
424+
425+
Here is a detailed explanation what is happening when a SSH request is made:
332426

333-
In the next step a file named `/app/gitea/gitea` (with executable permissions) needs to be created on the host. This file will issue the SSH forwarding from the host to the container. Add the following contents to `/app/gitea/gitea`:
427+
1. A SSH request is made against the host (usually port 22) using the `git` user, e.g. `git clone git@domain:user/repo.git`.
428+
2. In `/home/git/.ssh/authorized_keys` , the command in the command portion is passed to the `ssh-shell` script
429+
3. `ssh-shell` forwards the SSH request to port 2222 overriding whi is mapped to the SSH port (ssh 22) of the container.
430+
4. Due to the existence of the public key of the `git` user in `/home/git/.ssh/authorized_keys` the authentication host → container succeeds and the SSH request get forwarded to Gitea running in the docker container.
431+
432+
If a new SSH key is added in the Gitea web interface, it will be appended to `.ssh/authorized_keys` in the same way as the already existing key.
433+
434+
**Notes**
435+
436+
SSH container passthrough using `authorized_keys` will work only if
437+
438+
- `opensshd` is used in the container
439+
- if `AuthorizedKeysCommand` is _not used_ in combination with `SSH_CREATE_AUTHORIZED_KEYS_FILE=false` to disable authorized files key generation
440+
- `LOCAL_ROOT_URL` is not changed (depending on the changes)
441+
442+
### Docker Shell (with authorized_keys)
443+
444+
Similar to the above ssh shell technique we can use a shell which simply uses `docker exec`:
334445

335446
```bash
447+
cat <<"EOF" | sudo tee /home/git/docker-shell
336448
#!/bin/sh
337-
ssh -p 2222 -o StrictHostKeyChecking=no [email protected] "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
449+
/usr/bin/docker exec -i --env SSH_ORIGINAL_COMMAND="$SSH_ORIGINAL_COMMAND" gitea sh "$@"
450+
EOF
451+
sudo chmod +x /home/git/docker-shell
452+
sudo usermod -s /home/git/docker-shell git
338453
```
339454

340-
Here you should also make sure that you've set the permission of `/app/gitea/gitea` correctly:
455+
Note that `gitea` in the docker command above is the name of the container. If you named yours differently, don't forget to change that. The `git` user also have to have
456+
permission to run `docker exec`.
457+
458+
**Notes**
459+
460+
Docker shell passthrough using `authorized_keys` will work only if
461+
462+
- `opensshd` is used in the container
463+
- if `AuthorizedKeysCommand` is _not used_ in combination with `SSH_CREATE_AUTHORIZED_KEYS_FILE=false` to disable authorized files key generation
464+
- `LOCAL_ROOT_URL` is not changed (depending on the changes)
465+
466+
A Docker execing shim could be created similarly to above.
467+
468+
### Docker Shell with AuthorizedKeysCommand
469+
470+
The AuthorizedKeysCommand route provides another option that does not require many changes to the compose file or the `authorized_keys` - but does require changes to the host `/etc/sshd_config`.
471+
472+
- On the host create called `git` with permission to run `docker exec`.
473+
- We will again assume that the Gitea container is called `gitea`.
474+
- Modify the `git` user's shell to forward commands to the `sh` executable inside the container using `docker exec` as previously described:
475+
476+
```bash
477+
cat <<"EOF" | sudo tee /home/git/docker-shell
478+
#!/bin/sh
479+
/usr/bin/docker exec -i --env SSH_ORIGINAL_COMMAND="$SSH_ORIGINAL_COMMAND" gitea sh "$@"
480+
EOF
481+
sudo chmod +x /home/git/docker-shell
482+
sudo usermod -s /home/git/docker-shell git
483+
```
484+
485+
Now all attempts to login as the `git` user will be forwarded to the docker - including the `SSH_ORIGINAL_COMMAND`. We now need to set-up SSH authenitication on the host.
486+
487+
We will do this by leveraging the [SSH AuthorizedKeysCommand](https://docs.gitea.io/en-us/command-line/#keys) to match the keys against those accepted by Gitea.
488+
489+
Add the following block to `/etc/ssh/sshd_config`, on the host:
341490

342491
```bash
343-
sudo chmod +x /app/gitea/gitea
492+
Match User git
493+
AuthorizedKeysCommandUser git
494+
AuthorizedKeysCommand /usr/bin/docker exec -i gitea /usr/local/bin/gitea keys -c /data/gitea/conf/app.ini -e git -u %u -t %t -k %k
344495
```
345496

346-
To make the forwarding work, the SSH port of the container (22) needs to be mapped to the host port 2222 in `docker-compose.yml` . Since this port does not need to be exposed to the outside world, it can be mapped to the `localhost` of the host machine:
497+
(From 1.16.0 you will not need to set the `-c /data/gitea/conf/app.ini` option.)
498+
499+
Finally restart the SSH server:
347500

348501
```bash
349-
ports:
350-
# [...]
351-
- "127.0.0.1:2222:22"
502+
sudo systemctl restart sshd
352503
```
353504

354-
In addition, `/home/git/.ssh/authorized_keys` on the host needs to be modified. It needs to act in the same way as `authorized_keys` within the Gitea container. Therefore add the public key of the key you created above ("Gitea Host Key") to `~/git/.ssh/authorized_keys`.
355-
This can be done via `echo "$(cat /home/git/.ssh/id_rsa.pub)" >> /home/git/.ssh/authorized_keys`.
356-
Important: The pubkey from the `git` user needs to be added "as is" while all other pubkeys added via the Gitea web interface will be prefixed with `command="/app [...]`.
505+
**Notes**
357506

358-
The file should then look somewhat like
507+
Docker shell passthrough using `AuthorizedKeysCommand` will work only if
359508

360-
```bash
361-
# SSH pubkey from git user
362-
ssh-rsa <Gitea Host Key>
509+
- The host `git` user is allowed to run the `docker exec` command.
510+
511+
A Docker execing shim could be created similarly to above.
512+
513+
### SSH Shell with AuthorizedKeysCommand
514+
515+
Create a key for the host `git` user as above, add it to the docker `/data/git/.ssh/authorized_keys` then finally create and set the `ssh-shell` as above.
516+
517+
Add the following block to `/etc/ssh/sshd_config`, on the host:
363518

364-
# other keys from users
365-
command="/app/gitea/gitea --config=/data/gitea/conf/app.ini serv key-1",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty <user pubkey>
519+
```bash
520+
Match User git
521+
AuthorizedKeysCommandUser git
522+
AuthorizedKeysCommand ssh -p 2222 -o StrictHostKeyChecking=no [email protected] /usr/local/bin/gitea keys -c /data/gitea/conf/app.ini -e git -u %u -t %t -k %k
366523
```
367524

368-
Here is a detailed explanation what is happening when a SSH request is made:
525+
(From 1.16.0 you will not need to set the `-c /data/gitea/conf/app.ini` option.)
369526

370-
1. A SSH request is made against the host (usually port 22) using the `git` user, e.g. `git clone git@domain:user/repo.git`.
371-
2. In `/home/git/.ssh/authorized_keys` , the command executes the `/app/gitea/gitea` script.
372-
3. `/app/gitea/gitea` forwards the SSH request to port 2222 which is mapped to the SSH port (22) of the container.
373-
4. Due to the existence of the public key of the `git` user in `/home/git/.ssh/authorized_keys` the authentication host → container succeeds and the SSH request get forwarded to Gitea running in the docker container.
527+
Finally restart the SSH server:
374528

375-
If a new SSH key is added in the Gitea web interface, it will be appended to `.ssh/authorized_keys` in the same way as the already existing key.
529+
```bash
530+
sudo systemctl restart sshd
531+
```
376532

377533
**Notes**
378534

379-
SSH container passthrough will work only if
535+
SSH container passthrough using `AuthorizedKeysCommand` will work only if
380536

381-
- `opensshd` is used in the container
382-
- if `AuthorizedKeysCommand` is _not used_ in combination with `SSH_CREATE_AUTHORIZED_KEYS_FILE=false` to disable authorized files key generation
383-
- `LOCAL_ROOT_URL` is not changed
537+
- `opensshd` is running on the container
538+
539+
SSHing shims could be created similarly to above.

models/webhook/webhook.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ const (
161161
FEISHU HookType = "feishu"
162162
MATRIX HookType = "matrix"
163163
WECHATWORK HookType = "wechatwork"
164+
PACKAGIST HookType = "packagist"
164165
)
165166

166167
// HookStatus is the status of a web hook

modules/setting/webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func newWebhookService() {
3636
Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5)
3737
Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool()
3838
Webhook.AllowedHostList = sec.Key("ALLOWED_HOST_LIST").MustString("")
39-
Webhook.Types = []string{"gitea", "gogs", "slack", "discord", "dingtalk", "telegram", "msteams", "feishu", "matrix", "wechatwork"}
39+
Webhook.Types = []string{"gitea", "gogs", "slack", "discord", "dingtalk", "telegram", "msteams", "feishu", "matrix", "wechatwork", "packagist"}
4040
Webhook.PagingNum = sec.Key("PAGING_NUM").MustInt(10)
4141
Webhook.ProxyURL = sec.Key("PROXY_URL").MustString("")
4242
if Webhook.ProxyURL != "" {

modules/structs/hook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type CreateHookOptionConfig map[string]string
4040
// CreateHookOption options when create a hook
4141
type CreateHookOption struct {
4242
// required: true
43-
// enum: dingtalk,discord,gitea,gogs,msteams,slack,telegram,feishu,wechatwork
43+
// enum: dingtalk,discord,gitea,gogs,msteams,slack,telegram,feishu,wechatwork,packagist
4444
Type string `json:"type" binding:"Required"`
4545
// required: true
4646
Config CreateHookOptionConfig `json:"config" binding:"Required"`

options/locale/locale_en-US.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1947,6 +1947,10 @@ settings.add_matrix_hook_desc = Integrate <a href="%s">Matrix</a> into your repo
19471947
settings.add_msteams_hook_desc = Integrate <a href="%s">Microsoft Teams</a> into your repository.
19481948
settings.add_feishu_hook_desc = Integrate <a href="%s">Feishu</a> into your repository.
19491949
settings.add_Wechat_hook_desc = Integrate <a href="%s">Wechatwork</a> into your repository.
1950+
settings.add_packagist_hook_desc = Integrate <a href="%s">Packagist</a> into your repository.
1951+
settings.packagist_username = Packagist username
1952+
settings.packagist_api_token = API token
1953+
settings.packagist_package_url = Packagist package URL
19501954
settings.deploy_keys = Deploy Keys
19511955
settings.add_deploy_key = Add Deploy Key
19521956
settings.deploy_key_desc = Deploy keys have read-only pull access to the repository.

public/img/packagist.png

4.47 KB
Loading

0 commit comments

Comments
 (0)