mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-27 21:58:43 +08:00
34 lines
892 B
Go
34 lines
892 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/frame/g"
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
"hotgo/internal/service"
|
|
)
|
|
|
|
var (
|
|
NoLogin []interface{} // 无需登录
|
|
LoginRequiredRouter []interface{} // 需要登录
|
|
)
|
|
|
|
// Register 注册通过代码生成的后台路由
|
|
func Register(ctx context.Context, group *ghttp.RouterGroup) {
|
|
prefix := g.Cfg().MustGet(ctx, "router.admin.prefix", "/admin")
|
|
group.Group(prefix.String(), func(group *ghttp.RouterGroup) {
|
|
if len(NoLogin) > 0 {
|
|
group.Bind(NoLogin...)
|
|
}
|
|
group.Middleware(service.Middleware().AdminAuth)
|
|
if len(LoginRequiredRouter) > 0 {
|
|
group.Bind(LoginRequiredRouter...)
|
|
}
|
|
})
|
|
}
|