niki/delivery/http_server/benefactor/kind_box/get.go

33 lines
800 B
Go
Raw Normal View History

package benefactorkindboxhandler
import (
"net/http"
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box"
2024-01-02 15:35:26 +00:00
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
echo "github.com/labstack/echo/v4"
)
func (h Handler) Get(c echo.Context) error {
var req param.KindBoxGetRequest
if bErr := c.Bind(&req); bErr != nil {
return echo.NewHTTPError(http.StatusBadRequest)
}
2024-01-02 15:35:26 +00:00
if fieldErrors, err := h.benefactorKindBoxVld.ValidateGetRequest(req); err != nil {
msg, code := httpmsg.Error(err)
2024-01-02 15:35:26 +00:00
return c.JSON(code, echo.Map{
"message": msg,
"errors": fieldErrors,
})
}
2024-01-02 15:35:26 +00:00
resp, sErr := h.benefactorKindBoxSvc.Get(c.Request().Context(), req)
if sErr != nil {
msg, code := httpmsg.Error(sErr)
2024-01-02 15:35:26 +00:00
return echo.NewHTTPError(code, msg)
}
return c.JSON(http.StatusCreated, resp)
}