1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package request
-
- import (
- "net/http"
- "runtime"
-
- "github.com/gin-gonic/gin"
- "github.com/sirupsen/logrus"
- )
-
- type Checker interface {
- Check() error
- }
-
- func ParseParamSuccess(ctx *gin.Context, r interface{}, fs ...func() error) bool {
- if r != nil {
- if Fail(ctx, http.StatusBadRequest, ctx.ShouldBind(r)) {
- return false
- }
-
- if checker, ok := r.(Checker); ok {
- return !Fail(ctx, http.StatusBadRequest, checker.Check())
- }
- }
-
- for _, f := range fs {
- if Fail(ctx, http.StatusBadRequest, f()) {
- return false
- }
- }
-
- return true
- }
-
- func Fail(ctx *gin.Context, status int, err error) bool {
- if err == nil {
- return false
- }
-
- ctx.JSON(status, gin.H{"msg": err.Error()})
-
- if status == http.StatusInternalServerError {
- _, file, line, _ := runtime.Caller(1)
- logrus.WithField("err", err).Errorf("file:%s line:%d", file, line)
- }
-
- return true
- }
-
- func Success(ctx *gin.Context, data interface{}) {
- if data == nil {
- ctx.Status(http.StatusNoContent)
- return
- }
-
- switch ctx.Request.Method {
- case "GET", "PUT", "DELETE", "HEAD", "PATCH", "OPTIONS":
- ctx.JSON(http.StatusOK, data)
- case "POST":
- ctx.JSON(http.StatusCreated, data)
- default:
- ctx.JSON(http.StatusBadRequest, gin.H{"msg": "unsupported request method" + ctx.Request.Method})
- }
- }
|