2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqhandler
|
|
|
|
|
|
|
|
import (
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box_req"
|
2024-01-16 16:13:06 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/pkg/claim"
|
2024-01-26 12:11:50 +00:00
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
2024-01-02 15:35:26 +00:00
|
|
|
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
|
|
|
echo "github.com/labstack/echo/v4"
|
2024-05-31 12:36:48 +00:00
|
|
|
"net/http"
|
2024-01-02 14:04:16 +00:00
|
|
|
)
|
|
|
|
|
2024-05-15 07:38:39 +00:00
|
|
|
// Add godoc
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Summary Add a new kind box request for a benefactor
|
|
|
|
// @Tags KindBoxReq
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Param Request body param.KindBoxReqAddRequest true "New kind box request details"
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Success 200 {object} param.KindBoxReqAddResponse
|
|
|
|
// @Failure 400 {string} "Bad request"
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Security AuthBearerBenefactor
|
2024-06-14 08:41:36 +00:00
|
|
|
// @Router /benefactor/kindboxreqs/ [post].
|
2024-01-02 14:04:16 +00:00
|
|
|
func (h Handler) Add(c echo.Context) error {
|
2024-01-24 15:14:13 +00:00
|
|
|
req := param.KindBoxReqAddRequest{}
|
2024-01-26 12:11:50 +00:00
|
|
|
if err := c.Bind(&req); err != nil {
|
|
|
|
return c.JSON(http.StatusBadRequest, echo.Map{
|
|
|
|
"message": errmsg.ErrBadRequest,
|
|
|
|
})
|
|
|
|
// TODO: return echo.NewHTTPError(http.StatusBadRequest, errmsg.ErrBadRequest) ؟؟؟
|
2024-01-02 14:04:16 +00:00
|
|
|
}
|
2024-01-24 15:14:13 +00:00
|
|
|
claims := claim.GetClaimsFromEchoContext(c)
|
|
|
|
req.BenefactorID = claims.UserID
|
2024-01-16 16:13:06 +00:00
|
|
|
|
2024-05-31 12:36:48 +00:00
|
|
|
if fieldErrors, err := h.benefactorKindBoxReqVld.ValidateAddRequest(req); err != nil {
|
|
|
|
msg, code := httpmsg.Error(err)
|
2024-01-02 15:35:26 +00:00
|
|
|
|
2024-01-02 14:04:16 +00:00
|
|
|
return c.JSON(code, echo.Map{
|
|
|
|
"message": msg,
|
2024-05-31 12:36:48 +00:00
|
|
|
"errors": fieldErrors,
|
2024-01-02 14:04:16 +00:00
|
|
|
})
|
|
|
|
}
|
2024-01-02 15:35:26 +00:00
|
|
|
resp, sErr := h.benefactorKindBoxReqSvc.Add(c.Request().Context(), req)
|
2024-01-02 14:04:16 +00:00
|
|
|
if sErr != nil {
|
|
|
|
msg, code := httpmsg.Error(sErr)
|
2024-01-02 15:35:26 +00:00
|
|
|
|
2024-01-02 14:04:16 +00:00
|
|
|
return echo.NewHTTPError(code, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(http.StatusCreated, resp)
|
|
|
|
}
|