123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package thing
- 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/things/place/{placeId} [get]
- // @Param placeId path int true "Place ID"
- // @Success 200 {object} dto.ThingsExtResponse
- // @Failure 400 {object} dto.ErrorResponse
- // @Failure 500 {object} dto.ErrorResponse
- // @Summary Get things by place ID
- // @Tags Things
- // @security APIKey
- // @Accept json
- // @Produce json
- func GetPlaceThingsHandler(
- thingRepository ThingRepository,
- thingTagRepository ThingTagRepository,
- ) fiber.Handler {
- return func(fctx *fiber.Ctx) error {
- ctx := fctx.Context()
- id, err := request.ConvertToUint64(fctx, "placeId")
- if err != nil {
- logger.Info(ctx, err.Error())
- return fiber.NewError(fiber.StatusBadRequest, err.Error())
- }
- things, err := thingRepository.GetAllByPlaceID(ctx, id)
- if err != nil {
- logger.Error(ctx, err.Error())
- return fiber.NewError(fiber.StatusInternalServerError, err.Error())
- }
- tags, err := thingTagRepository.GetByPlaceID(ctx, id)
- if err != nil {
- logger.Error(ctx, err.Error())
- return fiber.NewError(fiber.StatusInternalServerError, err.Error())
- }
- things = location.ApplyLocation(fctx, things)
- tags = location.ApplyLocation(fctx, tags)
- return fctx.JSON(mappers.ToThingsExtResponse(things, tags))
- }
- }
|