Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix misuse of switch #152

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions middleware/csrf/custom_errorfunc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,16 @@ var (
// myErrFunc is executed when an error occurs in csrf middleware.
func myErrFunc(_ context.Context, ctx *app.RequestContext) {
err := ctx.Errors.Last()
switch err {
Claude-Zq marked this conversation as resolved.
Show resolved Hide resolved
case errMissingForm, errMissingParam, errMissingHeader, errMissingQuery:
if err == nil {
return
}

if errors.Is(err, errMissingForm) || errors.Is(err, errMissingParam) || errors.Is(err, errMissingHeader) || errors.Is(err, errMissingQuery) {
ctx.String(http.StatusBadRequest, err.Error()) // extract csrf-token failed
case errMissingSalt:
} else if errors.Is(err, errMissingSalt) {
fmt.Println(err.Error())
ctx.String(http.StatusInternalServerError, err.Error()) // get salt failed,which is unexpected
case errInvalidToken:
ctx.String(http.StatusInternalServerError, err.Error()) // get salt failed, which is unexpected
} else if errors.Is(err, errInvalidToken) {
ctx.String(http.StatusBadRequest, err.Error()) // csrf-token is invalid
}
ctx.Abort()
Expand Down
Loading