33 lines
721 B
Smarty
Raw Normal View History

2023-06-25 18:30:39 +08:00
package {{.PkgName}}
import (
"net/http"
2023-07-20 16:32:41 +08:00
"reflect"
2023-07-20 15:21:03 +08:00
2023-06-25 18:30:39 +08:00
"fusenapi/utils/basic"
{{.ImportPackages}}
)
func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
{{if .HasRequest}}var req types.{{.RequestType}}
userinfo, err := basic.RequestParseBackend(w, r, svcCtx, &req)
2023-07-20 15:21:03 +08:00
if err != nil {
2023-06-25 18:30:39 +08:00
return
}
2023-07-20 15:21:03 +08:00
2023-06-25 18:30:39 +08:00
// 创建一个业务逻辑层实例
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
2023-07-20 16:32:41 +08:00
rl := reflect.ValueOf(l)
basic.BeforeLogic(w, r, rl)
2023-06-25 18:30:39 +08:00
{{if .HasResp}}resp{{end}} := l.{{.Call}}({{if .HasRequest}}&req, {{end}}userinfo)
2023-07-20 15:21:03 +08:00
2023-07-24 13:17:02 +08:00
if !basic.AfterLogic(w, r, rl, resp) {
2023-07-21 10:28:17 +08:00
basic.NormalAfterLogic(w, r, resp)
}
2023-06-25 18:30:39 +08:00
}
}