package handler

import (
	"net/http"
	"reflect"

	"fusenapi/utils/basic"

	"fusenapi/server/product-template/internal/logic"
	"fusenapi/server/product-template/internal/svc"
	"fusenapi/server/product-template/internal/types"
)

func GetBaseMapListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		var req types.Request
		userinfo, err := basic.RequestParseBackend(w, r, svcCtx, &req)
		if err != nil {
			return
		}

		// 创建一个业务逻辑层实例
		l := logic.NewGetBaseMapListLogic(r.Context(), svcCtx)

		rl := reflect.ValueOf(l)
		basic.BeforeLogic(w, r, rl)

		resp := l.GetBaseMapList(&req, userinfo)

		if !basic.AfterLogic(w, r, rl, resp) {
			basic.NormalAfterLogic(w, r, resp)
		}
	}
}