mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
User facing messages for AGit errors (#33012)
Adds user facing messages to errors when submitting agit pull request Tries to highlight the returned error more and fixes agit suggestion to create PR on first submission. Closes: https://github.com/go-gitea/gitea/issues/32965 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
@@ -4,9 +4,11 @@
|
||||
package private
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"net/http"
|
||||
|
||||
repo_model "code.gitea.io/gitea/models/repo"
|
||||
issues_model "code.gitea.io/gitea/models/issues"
|
||||
user_model "code.gitea.io/gitea/models/user"
|
||||
"code.gitea.io/gitea/modules/git"
|
||||
"code.gitea.io/gitea/modules/log"
|
||||
"code.gitea.io/gitea/modules/private"
|
||||
@@ -25,10 +27,16 @@ func HookProcReceive(ctx *gitea_context.PrivateContext) {
|
||||
|
||||
results, err := agit.ProcReceive(ctx, ctx.Repo.Repository, ctx.Repo.GitRepo, opts)
|
||||
if err != nil {
|
||||
if repo_model.IsErrUserDoesNotHaveAccessToRepo(err) {
|
||||
ctx.Error(http.StatusBadRequest, "UserDoesNotHaveAccessToRepo", err.Error())
|
||||
if errors.Is(err, issues_model.ErrMustCollaborator) {
|
||||
ctx.JSON(http.StatusUnauthorized, private.Response{
|
||||
Err: err.Error(), UserMsg: "You must be a collaborator to create pull request.",
|
||||
})
|
||||
} else if errors.Is(err, user_model.ErrBlockedUser) {
|
||||
ctx.JSON(http.StatusUnauthorized, private.Response{
|
||||
Err: err.Error(), UserMsg: "Cannot create pull request because you are blocked by the repository owner.",
|
||||
})
|
||||
} else {
|
||||
log.Error(err.Error())
|
||||
log.Error("agit.ProcReceive failed: %v", err)
|
||||
ctx.JSON(http.StatusInternalServerError, private.Response{
|
||||
Err: err.Error(),
|
||||
})
|
||||
|
Reference in New Issue
Block a user