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.
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
jwt "github.com/go-admin-team/go-admin-core/v2/jwtauth"
|
|
"go-admin/app/admin/apis"
|
|
"go-admin/common/actions"
|
|
"go-admin/common/middleware"
|
|
)
|
|
|
|
func init() {
|
|
routerCheckRole = append(routerCheckRole, registerSysUserRouter)
|
|
}
|
|
|
|
// 需认证的路由代码
|
|
func registerSysUserRouter(v1 *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
|
|
api := apis.SysUser{}
|
|
r := v1.Group("/sys-user").Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole()).Use(actions.PermissionAction())
|
|
{
|
|
r.GET("", api.GetPage)
|
|
r.GET("/:id", api.Get)
|
|
r.POST("", api.Insert)
|
|
r.PUT("", api.Update)
|
|
r.DELETE("", api.Delete)
|
|
}
|
|
|
|
user := v1.Group("/user").Use(authMiddleware.MiddlewareFunc()).Use(middleware.AuthCheckRole()).Use(actions.PermissionAction())
|
|
{
|
|
user.GET("/profile", api.GetProfile)
|
|
user.POST("/avatar", api.InsetAvatar)
|
|
user.PUT("/pwd/set", api.UpdatePwd)
|
|
user.PUT("/pwd/reset", api.ResetPwd)
|
|
user.PUT("/status", api.UpdateStatus)
|
|
}
|
|
v1auth := v1.Group("").Use(authMiddleware.MiddlewareFunc())
|
|
{
|
|
v1auth.GET("/getinfo", api.GetInfo)
|
|
}
|
|
} |