79614b2d07
- Updated multiple repository and service files to replace imports from "github.com/mlogclub/simple/web/params" with "cs-agent/internal/pkg/httpx/params". - Adjusted context handling in auth_service and ws_service to use gin.Context instead of iris.Context. - Ensured consistent usage of HTTP status responses across websocket handlers.
25 lines
424 B
Go
25 lines
424 B
Go
package middleware
|
|
|
|
import (
|
|
"cs-agent/internal/services"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/mlogclub/simple/web"
|
|
)
|
|
|
|
func AuthMiddleware(ctx *gin.Context) {
|
|
if !authenticateRequest(ctx) {
|
|
return
|
|
}
|
|
ctx.Next()
|
|
}
|
|
|
|
func authenticateRequest(ctx *gin.Context) bool {
|
|
if _, err := services.AuthService.Authenticate(ctx); err != nil {
|
|
ctx.JSON(200, web.JsonError(err))
|
|
ctx.Abort()
|
|
return false
|
|
}
|
|
return true
|
|
}
|