2023-06-05 17:56:55 +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-12 17:28:49 +08:00
|
|
|
"fusenapi/utils/basic"
|
|
|
|
|
2023-06-05 17:56:55 +08:00
|
|
|
{{.ImportPackages}}
|
|
|
|
)
|
|
|
|
|
|
|
|
func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2023-06-14 18:17:45 +08:00
|
|
|
|
2023-06-05 17:56:55 +08:00
|
|
|
{{if .HasRequest}}var req types.{{.RequestType}}
|
2023-08-10 12:04:36 +08:00
|
|
|
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
|
2023-07-20 15:21:03 +08:00
|
|
|
if err != nil {
|
2023-06-05 17:56:55 +08:00
|
|
|
return
|
|
|
|
}
|
2023-07-20 15:21:03 +08:00
|
|
|
|
2023-06-12 15:17:42 +08:00
|
|
|
// 创建一个业务逻辑层实例
|
2023-06-05 17:56:55 +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-12 17:17:57 +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-05 17:56:55 +08:00
|
|
|
}
|
|
|
|
}
|