任意结构体,增加RouterFunc识别

This commit is contained in:
白茶清欢 2021-03-26 18:01:34 +08:00
parent eb9d6abd4f
commit 08a8a8015c
2 changed files with 19 additions and 4 deletions

View File

@ -55,10 +55,20 @@ func RegisterRouter(router *gin.Engine, apiInstanceList ...interface{}) error {
}
continue
}
routerLog(val.String() + " 注册的路由既不是 IApi 也不是 RouterFunc, 自动识别函数是否包含RouterFunc")
routerLog(val.String() + "结构体或者结构体指针, 自动识别函数是否包含RouterFunc")
// 不是IApi接口,自动识别函数列表 RouterFunc 函数自动注册
methodCnt := val.NumMethod()
for i := 0; i < methodCnt; i++ {
// TODO : 识别函数本身是不是 RouterFunc
af, o := val.Method(i).Interface().(func() (string, string, gin.HandlerFunc, []gin.HandlerFunc))
if o {
method, uri, handler, middlewareList := af()
if err := util.RegisterRouter(router, method, uri, handler, middlewareList); nil != err {
routerLog(err.Error())
return err
}
continue
}
apiFuncList := val.Method(i).Call(nil)
for _, apiFuncVal := range apiFuncList {
apiFunc, ok := apiFuncVal.Interface().(RouterFunc)
@ -70,14 +80,13 @@ func RegisterRouter(router *gin.Engine, apiInstanceList ...interface{}) error {
routerLog(err.Error())
return err
}
routerLog(apiFuncVal.String() + " 自动注册路由成功")
}
}
case reflect.Func:
api, ok := apiInstance.(RouterFunc)
if !ok {
err := errors.New("注册路由必须是 IApi 或者 RouterFunc")
err := errors.New("函数方式注册路由必须是 RouterFunc")
routerLog(err.Error())
return err
}
@ -87,7 +96,7 @@ func RegisterRouter(router *gin.Engine, apiInstanceList ...interface{}) error {
return err
}
default:
err := errors.New("注册的路由必须是 IApi 或者 RouterFunc")
err := errors.New("注册的路由必须是 IApi 或者 RouterFunc 或者 包含 RouterFunc 的结构体")
routerLog(err.Error())
return err
}

View File

@ -70,3 +70,9 @@ func (oa *otherApi) DemoApiFunc() RouterFunc {
func (oa *otherApi) Lala() {
}
func (oa *otherApi) SelfApi() (method string, uri string, handlerFunc gin.HandlerFunc, middlewareList []gin.HandlerFunc) {
return http.MethodGet, "/api/other/self/test", func(context *gin.Context) {
}, nil
}