44 lines
971 B
Go
44 lines
971 B
Go
package handler
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"io"
|
|
"net/http"
|
|
"reflect"
|
|
|
|
"fusenapi/utils/basic"
|
|
|
|
"fusenapi/server/websocket/internal/logic"
|
|
"fusenapi/server/websocket/internal/svc"
|
|
"fusenapi/server/websocket/internal/types"
|
|
)
|
|
|
|
func RenderNotifyHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
b,_ := io.ReadAll(r.Body)
|
|
var c map[string]interface{}
|
|
_ = json.Unmarshal(b,&c)
|
|
c["image"] = nil
|
|
logx.Info(fmt.Sprintf("回调渲染数据:%+v",c))
|
|
var req types.RenderNotifyReq
|
|
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// 创建一个业务逻辑层实例
|
|
l := logic.NewRenderNotifyLogic(r.Context(), svcCtx)
|
|
|
|
rl := reflect.ValueOf(l)
|
|
basic.BeforeLogic(w, r, rl)
|
|
|
|
resp := l.RenderNotify(&req, userinfo)
|
|
|
|
if !basic.AfterLogic(w, r, rl, resp) {
|
|
basic.NormalAfterLogic(w, r, resp)
|
|
}
|
|
}
|
|
}
|