Skip to content

Commit b2707bc

Browse files
GiteaBotlunnywxiaoguang
authored
Make actions URL in commit status webhooks absolute (#33620) (#33632)
Backport #33620 by lunny Fix #33603 Co-authored-by: Lunny Xiao <[email protected]> Co-authored-by: wxiaoguang <[email protected]>
1 parent 0512b02 commit b2707bc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

services/webhook/notifier.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
repo_model "code.gitea.io/gitea/models/repo"
1616
user_model "code.gitea.io/gitea/models/user"
1717
"code.gitea.io/gitea/modules/git"
18+
"code.gitea.io/gitea/modules/httplib"
1819
"code.gitea.io/gitea/modules/log"
1920
"code.gitea.io/gitea/modules/repository"
2021
"code.gitea.io/gitea/modules/setting"
@@ -875,14 +876,19 @@ func (m *webhookNotifier) CreateCommitStatus(ctx context.Context, repo *repo_mod
875876
return
876877
}
877878

879+
// as a webhook url, target should be an absolute url. But for internal actions target url
880+
// the target url is a url path with no host and port to make it easy to be visited
881+
// from multiple hosts. So we need to convert it to an absolute url here.
882+
target := httplib.MakeAbsoluteURL(ctx, status.TargetURL)
883+
878884
payload := api.CommitStatusPayload{
879885
Context: status.Context,
880886
CreatedAt: status.CreatedUnix.AsTime().UTC(),
881887
Description: status.Description,
882888
ID: status.ID,
883889
SHA: commit.Sha1,
884890
State: status.State.String(),
885-
TargetURL: status.TargetURL,
891+
TargetURL: target,
886892

887893
Commit: apiCommit,
888894
Repo: convert.ToRepo(ctx, repo, access_model.Permission{AccessMode: perm.AccessModeOwner}),

0 commit comments

Comments
 (0)