2024-03-14 13:38:42 +00:00
|
|
|
package adminkindboxreqhandler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
|
|
|
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
|
|
|
echo "github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
2024-05-15 07:38:39 +00:00
|
|
|
// Deliver godoc
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Summary Admin deliver a kindboxreq
|
|
|
|
// @Tags KindBoxReq
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Param id path int true "KindBoxReq ID"
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Success 200 {object} param.DeliverKindBoxReqResponse
|
|
|
|
// @Failure 400 {string} "Bad request"
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Security AuthBearerAdmin
|
2024-06-14 08:41:36 +00:00
|
|
|
// @Router /admin/kindboxreqs/deliver-kind-box-req/{id} [patch].
|
2024-03-14 13:38:42 +00:00
|
|
|
func (h Handler) Deliver(c echo.Context) error {
|
|
|
|
var req param.DeliverKindBoxReqRequest
|
|
|
|
|
|
|
|
id, cErr := strconv.ParseUint(c.Param("id"), 10, 64)
|
|
|
|
|
|
|
|
if cErr != nil {
|
|
|
|
return c.JSON(http.StatusBadRequest, errmsg.ErrorMsgInvalidInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
req.KindBoxReqID = uint(id)
|
|
|
|
|
|
|
|
if fieldErrors, err := h.adminKindBoxReqVld.ValidateDeliver(req); err != nil {
|
|
|
|
msg, code := httpmsg.Error(err)
|
|
|
|
|
|
|
|
return c.JSON(code, echo.Map{
|
|
|
|
"message": msg,
|
|
|
|
"errors": fieldErrors,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, sErr := h.adminKindBoxReqSvc.Deliver(c.Request().Context(), req)
|
|
|
|
|
|
|
|
if sErr != nil {
|
|
|
|
msg, code := httpmsg.Error(sErr)
|
|
|
|
|
|
|
|
return echo.NewHTTPError(code, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(http.StatusOK, resp)
|
|
|
|
}
|