2024-01-02 14:04:16 +00:00
|
|
|
package adminkindboxreqhandler
|
2024-02-03 04:56:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
|
|
|
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
|
|
|
echo "github.com/labstack/echo/v4"
|
2024-06-12 08:15:28 +00:00
|
|
|
"net/http"
|
2024-02-03 04:56:27 +00:00
|
|
|
)
|
|
|
|
|
2024-05-15 07:38:39 +00:00
|
|
|
// GetAll godoc
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Summary Admin get all kindboxreq
|
|
|
|
// @Tags KindBoxReq
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2024-05-17 20:16:28 +00:00
|
|
|
// @Param page_number query int false "page_number"
|
|
|
|
// @Param page_size query int false "page_size"
|
2024-05-15 07:38:39 +00:00
|
|
|
// @Success 200 {object} param.KindBoxReqGetAllResponse
|
|
|
|
// @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 [get].
|
2024-02-03 04:56:27 +00:00
|
|
|
func (h Handler) GetAll(c echo.Context) error {
|
|
|
|
var req param.KindBoxReqGetAllRequest
|
|
|
|
if bErr := c.Bind(&req); bErr != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest)
|
|
|
|
}
|
2024-06-12 08:15:28 +00:00
|
|
|
resp, sErr := h.adminKindBoxReqSvc.GetAll(c.Request().Context(), req)
|
2024-02-03 04:56:27 +00:00
|
|
|
if sErr != nil {
|
|
|
|
msg, code := httpmsg.Error(sErr)
|
|
|
|
|
|
|
|
return echo.NewHTTPError(code, msg)
|
|
|
|
}
|
|
|
|
|
2024-04-28 11:47:24 +00:00
|
|
|
return c.JSON(http.StatusOK, resp)
|
2024-02-03 04:56:27 +00:00
|
|
|
}
|