mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
33 lines
878 B
Go
33 lines
878 B
Go
// Package genrouter
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
// @Author Ms <133814250@qq.com>
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
package genrouter
|
|
|
|
import (
|
|
"context"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"hotgo/internal/consts"
|
|
"hotgo/internal/service"
|
|
"hotgo/utility/simple"
|
|
)
|
|
|
|
var (
|
|
NoLoginRouter []interface{} // 无需登录
|
|
LoginRequiredRouter []interface{} // 需要登录
|
|
)
|
|
|
|
// Register 注册通过代码生成的后台路由
|
|
func Register(ctx context.Context, group *ghttp.RouterGroup) {
|
|
group.Group(simple.RouterPrefix(ctx, consts.AppAdmin), func(group *ghttp.RouterGroup) {
|
|
if len(NoLoginRouter) > 0 {
|
|
group.Bind(NoLoginRouter...)
|
|
}
|
|
group.Middleware(service.Middleware().AdminAuth)
|
|
if len(LoginRequiredRouter) > 0 {
|
|
group.Bind(LoginRequiredRouter...)
|
|
}
|
|
})
|
|
}
|