123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package image
- import (
- "git.dmitriygnatenko.ru/dima/go-common/logger"
- "github.com/gofiber/fiber/v2"
- "git.dmitriygnatenko.ru/dima/homethings/internal/helpers/location"
- "git.dmitriygnatenko.ru/dima/homethings/internal/helpers/request"
- "git.dmitriygnatenko.ru/dima/homethings/internal/mappers"
- )
- // @Router /api/v1/images/thing/{thingId} [get]
- // @Param thingId path int true "Thing ID"
- // @Success 200 {object} dto.ImagesResponse
- // @Failure 400 {object} dto.ErrorResponse
- // @Failure 500 {object} dto.ErrorResponse
- // @Summary Get images by thing ID
- // @Tags Images
- // @security APIKey
- // @Accept json
- // @Produce json
- func GetThingImagesHandler(
- thingImageRepository ThingImageRepository,
- ) fiber.Handler {
- return func(fctx *fiber.Ctx) error {
- ctx := fctx.Context()
- id, err := request.ConvertToUint64(fctx, "thingId")
- if err != nil {
- logger.Info(ctx, err.Error())
- return fiber.NewError(fiber.StatusBadRequest, err.Error())
- }
- res, err := thingImageRepository.GetByThingID(ctx, id)
- if err != nil {
- logger.Error(ctx, err.Error())
- return fiber.NewError(fiber.StatusInternalServerError, err.Error())
- }
- return fctx.JSON(mappers.ToImagesResponse(location.ApplyLocation(fctx, res)))
- }
- }
|