forked from ebhomengo/niki
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
|
package adminkindboxhandler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box"
|
||
|
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
// Get godoc
|
||
|
// @Summary Get a specific kind box by admin
|
||
|
// @Description This endpoint retrieves a specific kind box by admin
|
||
|
// @Tags KindBox
|
||
|
// @Accept json
|
||
|
// @Produce json
|
||
|
// @Param id path int true "Kind box ID"
|
||
|
// @Success 200 {object} param.KindBoxGetResponse
|
||
|
// @Failure 400 {string} "Bad request"
|
||
|
// @Security AuthBearerAdmin
|
||
|
// @Router /admin/kindboxes/{id} [get].
|
||
|
func (h Handler) Get(c echo.Context) error {
|
||
|
var req param.KindBoxGetRequest
|
||
|
if bErr := c.Bind(&req); bErr != nil {
|
||
|
return echo.NewHTTPError(http.StatusBadRequest)
|
||
|
}
|
||
|
if fieldErrors, err := h.adminKindBoxVld.ValidateGetRequest(req); err != nil {
|
||
|
msg, code := httpmsg.Error(err)
|
||
|
|
||
|
return c.JSON(code, echo.Map{
|
||
|
"message": msg,
|
||
|
"errors": fieldErrors,
|
||
|
})
|
||
|
}
|
||
|
resp, sErr := h.adminKindBoxSvc.Get(c.Request().Context(), req)
|
||
|
if sErr != nil {
|
||
|
msg, code := httpmsg.Error(sErr)
|
||
|
|
||
|
return echo.NewHTTPError(code, msg)
|
||
|
}
|
||
|
|
||
|
return c.JSON(http.StatusOK, resp)
|
||
|
}
|