mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-27 20:19:07 +00:00
`gofmt -l` listed 26 files. Seventeen of them were missing the newline at the end of the file; the rest are indentation that used spaces where the file uses tabs, a handful of call sites written `f(a,b)`, and the doc comment spacing gofmt has rewritten since 1.19 (`//X` to `// X`). Nothing here changes behaviour: `go build ./...` and `go vet ./...` are clean and `go test ./common/...` passes, which is the half of the tree these files are concentrated in. Only the files gofmt named are touched, so the diff reads line by line rather than as a reflow of the whole repository. `gofmt -l` is now empty, which is the precondition for gating it in CI -- worth doing, but a separate change.
40 lines
1.1 KiB
Go
40 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)
|
|
}
|
|
}
|