mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-22 10:33:13 +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.
36 lines
948 B
Go
36 lines
948 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
jwt "github.com/go-admin-team/go-admin-core/v2/jwtauth"
|
|
"github.com/go-admin-team/go-admin-core/v2/sdk"
|
|
"go-admin/common/actions"
|
|
)
|
|
|
|
const (
|
|
JwtTokenCheck string = "JwtToken"
|
|
RoleCheck string = "AuthCheckRole"
|
|
PermissionCheck string = "PermissionAction"
|
|
)
|
|
|
|
func InitMiddleware(r *gin.Engine) {
|
|
r.Use(DemoEvn())
|
|
// 数据库链接
|
|
r.Use(WithContextDb)
|
|
// 日志处理
|
|
r.Use(LoggerToFile())
|
|
// 自定义错误处理
|
|
r.Use(CustomError)
|
|
// NoCache is a middleware function that appends headers
|
|
r.Use(NoCache)
|
|
// 跨域处理
|
|
r.Use(Options)
|
|
// Secure is a middleware function that appends security
|
|
r.Use(Secure)
|
|
// 链路追踪
|
|
//r.Use(middleware.Trace())
|
|
sdk.Runtime.SetMiddleware(JwtTokenCheck, (*jwt.GinJWTMiddleware).MiddlewareFunc)
|
|
sdk.Runtime.SetMiddleware(RoleCheck, AuthCheckRole())
|
|
sdk.Runtime.SetMiddleware(PermissionCheck, actions.PermissionAction())
|
|
}
|