123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package request
-
- import (
- "fmt"
- "net/http"
-
- "github.com/gin-gonic/gin"
- )
-
- type Checker interface {
- Check() error
- }
-
- func ParseParamFail(ctx *gin.Context, r interface{}, fs ...func() error) bool {
- if r != nil {
- err := ctx.ShouldBind(r)
- if err != nil {
- err = HTTPError{Status: http.StatusBadRequest, Msg: err.Error()}
- }
-
- if Fail(ctx, err) {
- return true
- }
-
- if checker, ok := r.(Checker); ok {
- err := checker.Check()
- if err != nil {
- err = HTTPError{Status: http.StatusBadRequest, Msg: err.Error()}
- }
-
- if Fail(ctx, err) {
- return true
- }
- }
- }
-
- for _, f := range fs {
- err := f()
- if err != nil {
- err = HTTPError{Status: http.StatusBadRequest, Msg: err.Error()}
- }
-
- if Fail(ctx, err) {
- return true
- }
- }
-
- return false
- }
-
- func Fail(ctx *gin.Context, err error) bool {
- if err == nil {
- return false
- }
-
- status := http.StatusInternalServerError
- if v, ok := err.(HTTPError); ok {
- status = v.Status
- }
-
- ctx.JSON(status, gin.H{"msg": err.Error()})
-
- return true
- }
-
- func Success(ctx *gin.Context, data interface{}) {
- if data == nil {
- ctx.Status(http.StatusNoContent)
- return
- }
-
- switch ctx.Request.Method {
- case http.MethodGet, http.MethodHead, http.MethodOptions, http.MethodDelete:
- ctx.JSON(http.StatusOK, data)
- case http.MethodPost, http.MethodPut, http.MethodPatch:
- ctx.JSON(http.StatusCreated, data)
- default:
- ctx.JSON(http.StatusBadRequest, HTTPError{Msg: fmt.Sprintf("unsupported request method %s", ctx.Request.Method)})
- }
- }
|