mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			607 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			607 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package middleware
 | 
						|
 | 
						|
import (
 | 
						|
	"Open_IM/pkg/common/constant"
 | 
						|
	"Open_IM/pkg/common/http"
 | 
						|
	"Open_IM/pkg/common/log"
 | 
						|
	"Open_IM/pkg/common/token_verify"
 | 
						|
	"Open_IM/pkg/utils"
 | 
						|
	"github.com/gin-gonic/gin"
 | 
						|
)
 | 
						|
 | 
						|
func JWTAuth() gin.HandlerFunc {
 | 
						|
	return func(c *gin.Context) {
 | 
						|
		ok, userID := token_verify.GetUserIDFromToken(c.Request.Header.Get("token"))
 | 
						|
		log.NewInfo("0", utils.GetSelfFuncName(), "userID: ", userID)
 | 
						|
		c.Set("userID", userID)
 | 
						|
		if !ok {
 | 
						|
			log.NewError("","GetUserIDFromToken false ", c.Request.Header.Get("token"))
 | 
						|
			c.Abort()
 | 
						|
			http.RespHttp200(c, constant.ErrParseToken, nil)
 | 
						|
			return
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |