32 lines
579 B
Go
32 lines
579 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"owl-blogs/app"
|
||
|
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
)
|
||
|
|
||
|
type AuthMiddleware struct {
|
||
|
authorService *app.AuthorService
|
||
|
}
|
||
|
|
||
|
func NewAuthMiddleware(authorService *app.AuthorService) *AuthMiddleware {
|
||
|
return &AuthMiddleware{authorService: authorService}
|
||
|
}
|
||
|
|
||
|
func (m *AuthMiddleware) Handle(c *fiber.Ctx) error {
|
||
|
// get token from cookie
|
||
|
token := c.Cookies("token")
|
||
|
if token == "" {
|
||
|
return c.Redirect("/auth/login")
|
||
|
}
|
||
|
|
||
|
// check token
|
||
|
valid := m.authorService.ValidateToken(token)
|
||
|
if !valid {
|
||
|
return c.Redirect("/auth/login")
|
||
|
}
|
||
|
|
||
|
return c.Next()
|
||
|
}
|