mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
Every import of the module changes, not only the seven packages that
moved out of sdk/pkg: Go requires the major version in the path from v2
on. Both happen in one pass —
go run github.com/go-admin-team/go-admin-core/tools/coreupgrade@v2.0.0 -w -v2 .
go mod tidy
— which is the command the release notes give, run here as a consumer
would run it. 210 imports across 95 files.
The compatibility shims this used are gone in v2, so the paths that
moved had to move: sdk/pkg/captcha, sdk/pkg/jwtauth and its user
package, sdk/pkg/response and sdk/pkg/casbin.
The count of unformatted files is unchanged at 34, none of them touched
by this: the tool reformats a file only if it was already gofmt clean,
so a migration cannot disappear into whitespace.
42 lines
1.0 KiB
Go
42 lines
1.0 KiB
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
_ "github.com/gin-gonic/gin"
|
|
"github.com/go-admin-team/go-admin-core/v2/jwtauth"
|
|
jwt "github.com/go-admin-team/go-admin-core/v2/jwtauth"
|
|
)
|
|
|
|
var (
|
|
routerNoCheckRole = make([]func(*gin.RouterGroup), 0)
|
|
routerCheckRole = make([]func(v1 *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware), 0)
|
|
)
|
|
|
|
func InitExamplesRouter(r *gin.Engine, authMiddleware *jwt.GinJWTMiddleware) *gin.Engine {
|
|
|
|
// 无需认证的路由
|
|
examplesNoCheckRoleRouter(r)
|
|
// 需要认证的路由
|
|
examplesCheckRoleRouter(r, authMiddleware)
|
|
|
|
return r
|
|
}
|
|
|
|
// 无需认证的路由示例
|
|
func examplesNoCheckRoleRouter(r *gin.Engine) {
|
|
// 可根据业务需求来设置接口版本
|
|
v1 := r.Group("/api/v1")
|
|
for _, f := range routerNoCheckRole {
|
|
f(v1)
|
|
}
|
|
}
|
|
|
|
// 需要认证的路由示例
|
|
func examplesCheckRoleRouter(r *gin.Engine, authMiddleware *jwtauth.GinJWTMiddleware) {
|
|
// 可根据业务需求来设置接口版本
|
|
v1 := r.Group("/api/v1")
|
|
for _, f := range routerCheckRole {
|
|
f(v1, authMiddleware)
|
|
}
|
|
}
|