fusenapi/goctl_template_backend/api/handler.tpl

33 lines
721 B
Smarty
Raw Normal View History

2023-06-25 10:30:39 +00:00
package {{.PkgName}}
import (
"net/http"
2023-07-20 08:32:41 +00:00
"reflect"
2023-07-20 07:21:03 +00:00
2023-06-25 10:30:39 +00: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 07:21:03 +00:00
if err != nil {
2023-06-25 10:30:39 +00:00
return
}
2023-07-20 07:21:03 +00:00
2023-06-25 10:30:39 +00:00
// 创建一个业务逻辑层实例
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
2023-07-20 08:32:41 +00:00
rl := reflect.ValueOf(l)
basic.BeforeLogic(w, r, rl)
2023-06-25 10:30:39 +00:00
{{if .HasResp}}resp{{end}} := l.{{.Call}}({{if .HasRequest}}&req, {{end}}userinfo)
2023-07-20 07:21:03 +00:00
2023-07-24 05:17:02 +00:00
if !basic.AfterLogic(w, r, rl, resp) {
2023-07-21 02:28:17 +00:00
basic.NormalAfterLogic(w, r, resp)
}
2023-06-25 10:30:39 +00:00
}
}