2024-01-02 14:04:16 +00:00
|
|
|
package adminkindboxreqhandler
|
2024-02-03 04:56:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2024-04-28 11:27:23 +00:00
|
|
|
"strconv"
|
2024-02-03 04:56:27 +00:00
|
|
|
|
2024-04-28 11:27:23 +00:00
|
|
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
2024-02-03 04:56:27 +00:00
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
|
|
|
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-04-28 11:27:23 +00:00
|
|
|
var paginationReq paginationparam.PaginationRequest
|
|
|
|
// TODO : pkg convert string to uint
|
|
|
|
//nolint
|
|
|
|
pageNumber, _ := strconv.ParseUint(c.QueryParam("page_number"), 0, 64)
|
|
|
|
//nolint
|
|
|
|
pageSize, _ := strconv.ParseUint(c.QueryParam("page_size"), 0, 64)
|
|
|
|
paginationReq.PageSize = uint(pageSize)
|
|
|
|
paginationReq.PageNumber = uint(pageNumber)
|
|
|
|
|
|
|
|
resp, sErr := h.adminKindBoxReqSvc.GetAll(c.Request().Context(), req, paginationReq)
|
2024-02-03 04:56:27 +00:00
|
|
|
if sErr != nil {
|
|
|
|
msg, code := httpmsg.Error(sErr)
|
|
|
|
|
|
|
|
return echo.NewHTTPError(code, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(http.StatusCreated, resp)
|
|
|
|
}
|