mirror of
https://github.com/go-gitea/gitea.git
synced 2025-01-13 00:12:31 +00:00
Add error prefix in git remote
Return user facing errors in agit for block and collaborator
This commit is contained in:
parent
a7b2707be9
commit
7d3673a127
@ -104,7 +104,9 @@ func fail(ctx context.Context, userMessage, logMsgFmt string, args ...any) error
|
||||
// There appears to be a chance to cause a zombie process and failure to read the Exit status
|
||||
// if nothing is outputted on stdout.
|
||||
_, _ = fmt.Fprintln(os.Stdout, "")
|
||||
_, _ = fmt.Fprintln(os.Stderr, "Gitea:", userMessage)
|
||||
_, _ = fmt.Fprintln(os.Stderr, "error:")
|
||||
_, _ = fmt.Fprintln(os.Stderr, "error:", userMessage)
|
||||
_, _ = fmt.Fprintln(os.Stderr, "error:")
|
||||
|
||||
if logMsgFmt != "" {
|
||||
logMsg := fmt.Sprintf(logMsgFmt, args...)
|
||||
|
@ -4,9 +4,12 @@
|
||||
package private
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"net/http"
|
||||
|
||||
issues_model "code.gitea.io/gitea/models/issues"
|
||||
repo_model "code.gitea.io/gitea/models/repo"
|
||||
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"
|
||||
@ -27,6 +30,14 @@ func HookProcReceive(ctx *gitea_context.PrivateContext) {
|
||||
if err != nil {
|
||||
if repo_model.IsErrUserDoesNotHaveAccessToRepo(err) {
|
||||
ctx.Error(http.StatusBadRequest, "UserDoesNotHaveAccessToRepo", err.Error())
|
||||
} else if errors.Is(err, issues_model.ErrMustCollaborator) {
|
||||
ctx.JSON(http.StatusUnauthorized, private.Response{
|
||||
Err: err.Error(), UserMsg: "You must be a collaborator to submit a pull request",
|
||||
})
|
||||
} else if errors.Is(err, user_model.ErrBlockedUser) {
|
||||
ctx.JSON(http.StatusUnauthorized, private.Response{
|
||||
Err: err.Error(), UserMsg: "You have been blocked by repository owner",
|
||||
})
|
||||
} else {
|
||||
log.Error(err.Error())
|
||||
ctx.JSON(http.StatusInternalServerError, private.Response{
|
||||
|
Loading…
Reference in New Issue
Block a user