mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
package base
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/gofiber/fiber/v2"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type Validatable interface {
|
|
Validate() error
|
|
}
|
|
|
|
type Handler struct {
|
|
Logger *zap.Logger
|
|
Validator *validator.Validate
|
|
}
|
|
|
|
func (h *Handler) BodyParserValidator(c *fiber.Ctx, out any) error {
|
|
if err := c.BodyParser(out); err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("Can't parse body: %s", err.Error()))
|
|
}
|
|
|
|
return h.ValidateStruct(out)
|
|
}
|
|
|
|
func (h *Handler) QueryParserValidator(c *fiber.Ctx, out any) error {
|
|
if err := c.QueryParser(out); err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("Can't parse query: %s", err.Error()))
|
|
}
|
|
|
|
return h.ValidateStruct(out)
|
|
}
|
|
|
|
func (h *Handler) ParamsParserValidator(c *fiber.Ctx, out any) error {
|
|
if err := c.ParamsParser(out); err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, fmt.Sprintf("Can't parse params: %s", err.Error()))
|
|
}
|
|
|
|
return h.ValidateStruct(out)
|
|
}
|
|
|
|
func (h *Handler) ValidateStruct(out any) error {
|
|
if h.Validator != nil {
|
|
if err := h.Validator.Var(out, "required,dive"); err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
}
|
|
}
|
|
|
|
if req, ok := out.(Validatable); ok {
|
|
if err := req.Validate(); err != nil {
|
|
return fiber.NewError(fiber.StatusBadRequest, err.Error())
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|