You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
1.6 KiB

2 years ago
package response
import (
"encoding/json"
2 years ago
"git.echinacities.com/mogfee/protoc-gen-kit/xerrors"
2 years ago
"github.com/gin-gonic/gin"
"github.com/go-playground/form"
"net/http"
)
type result struct {
ctx *gin.Context
}
func New(ctx *gin.Context) *result {
return &result{ctx: ctx}
}
func (s *result) BindJSON(v any) error {
err := s.ShouldBindJson(v)
if err != nil {
return err
}
if r, ok := v.(interface {
Validate() error
}); ok {
return r.Validate()
}
return nil
}
func (s *result) BindQuery(v any) error {
err := s.ShouldBindQuery(v)
if err != nil {
return err
}
if r, ok := v.(interface {
Validate() error
}); ok {
return r.Validate()
}
return nil
}
func (s *result) ShouldBindQuery(v any) error {
decoder := form.NewDecoder()
decoder.SetTagName("json")
return decoder.Decode(v, s.ctx.Request.URL.Query())
}
func (s *result) ShouldBindJson(v any) error {
body := s.ctx.Request.Body
decoder := json.NewDecoder(body)
return decoder.Decode(v)
}
func (s *result) Error(err error) {
if err == nil {
return
}
//参数错误
if vv, ok := err.(ValidateError); ok {
s.Result(http.StatusBadRequest, "InvalidArgument", vv.ErrorName(), map[string]string{
vv.Field(): vv.Reason(),
})
return
}
gs := xerrors.FromError(err)
s.Result(gs.Status, gs.Reason, gs.Message, gs.Metadata)
}
type ValidateError interface {
Field() string
Reason() string
ErrorName() string
}
func (s *result) Result(httpCode int, reason string, message string, metadata map[string]string) {
s.ctx.JSON(httpCode, gin.H{
"status": httpCode,
"reason": reason,
"message": message,
"metadata": metadata,
})
}