通用包
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.
utils/transport/v1/http/codec.go

68 lines
1.6 KiB

2 years ago
package http
import (
2 years ago
"fmt"
2 years ago
"github.com/go-kratos/kratos/v2/errors"
"github.com/go-kratos/kratos/v2/transport/http"
stdhttp "net/http"
"strings"
)
const (
baseContentType = "application"
)
type Response struct {
Code int `json:"code" form:"code"`
Data interface{} `json:"data" form:"data"`
2 years ago
Reason string `json:"reason" form:"reason"`
2 years ago
Message string `json:"message" form:"message"`
}
2 years ago
func ResponseEncoder(w stdhttp.ResponseWriter, r *stdhttp.Request, v interface{}) error {
if v == nil {
return nil
2 years ago
}
2 years ago
codec, _ := http.CodecForRequest(r, "Accept")
data, err := codec.Marshal(v)
if err != nil {
return err
2 years ago
}
2 years ago
application := strings.Join([]string{baseContentType, codec.Name()}, "/")
w.Header().Set("Content-Type", application)
2 years ago
2 years ago
d := fmt.Sprintf(`{"code": 0,"data": %s,"reason": "","message": ""}`, string(data))
_, err = w.Write([]byte(d))
2 years ago
if err != nil {
return err
}
return nil
}
func ErrorEncoderPro(w stdhttp.ResponseWriter, r *stdhttp.Request, err error) {
2 years ago
se := errors.FromError(err)
if _, ok := err.(*errors.Error); !ok {
2 years ago
se.Reason = "InternalServerError"
se.Code = stdhttp.StatusInternalServerError
se.Message = "internal server error"
2 years ago
}
codec, _ := http.CodecForRequest(r, "Accept")
body, err := codec.Marshal(se)
if err != nil {
w.WriteHeader(stdhttp.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", ContentType(codec.Name()))
w.WriteHeader(int(se.Code))
_, _ = w.Write(body)
}
// ContentType returns the content-type with base prefix.
func ContentType(subtype string) string {
return strings.Join([]string{baseContentType, subtype}, "/")
}