123456789101112131415161718192021222324 |
- package middleware
- import (
- "github.com/gin-gonic/gin"
- "icloudapp.cn/tools/controller"
- "icloudapp.cn/tools/entity"
- )
- func AuthMiddleware() func(c *gin.Context) {
- return func(c *gin.Context) {
-
-
- authHeader := c.Request.Header.Get("Authorization")
- if authHeader == "" {
- controller.ResponseError(c, entity.CodeNeedLogin)
- c.Abort()
- return
- }
-
-
- c.Next()
- }
- }
|