Skip to content

Commit 43a22c6

Browse files
authored
show pull link for agit pull request also (#18235)
1 parent bd7680f commit 43a22c6

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

routers/private/hook_post_receive.go

+38
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package private
88
import (
99
"fmt"
1010
"net/http"
11+
"strconv"
1112
"strings"
1213

1314
"code.gitea.io/gitea/models"
@@ -124,6 +125,43 @@ func HookPostReceive(ctx *gitea_context.PrivateContext) {
124125
refFullName := opts.RefFullNames[i]
125126
newCommitID := opts.NewCommitIDs[i]
126127

128+
// post update for agit pull request
129+
if git.SupportProcReceive && strings.HasPrefix(refFullName, git.PullPrefix) {
130+
if repo == nil {
131+
repo = loadRepository(ctx, ownerName, repoName)
132+
if ctx.Written() {
133+
return
134+
}
135+
}
136+
137+
pullIndexStr := strings.TrimPrefix(refFullName, git.PullPrefix)
138+
pullIndexStr = strings.Split(pullIndexStr, "/")[0]
139+
pullIndex, _ := strconv.ParseInt(pullIndexStr, 10, 64)
140+
if pullIndex <= 0 {
141+
continue
142+
}
143+
144+
pr, err := models.GetPullRequestByIndex(repo.ID, pullIndex)
145+
if err != nil && !models.IsErrPullRequestNotExist(err) {
146+
log.Error("Failed to get PR by index %v Error: %v", pullIndex, err)
147+
ctx.JSON(http.StatusInternalServerError, private.Response{
148+
Err: fmt.Sprintf("Failed to get PR by index %v Error: %v", pullIndex, err),
149+
})
150+
return
151+
}
152+
if pr == nil {
153+
continue
154+
}
155+
156+
results = append(results, private.HookPostReceiveBranchResult{
157+
Message: setting.Git.PullRequestPushMessage && repo.AllowsPulls(),
158+
Create: false,
159+
Branch: "",
160+
URL: fmt.Sprintf("%s/pulls/%d", repo.HTMLURL(), pr.Index),
161+
})
162+
continue
163+
}
164+
127165
branch := git.RefEndName(opts.RefFullNames[i])
128166

129167
// If we've pushed a branch (and not deleted it)

0 commit comments

Comments
 (0)