add_thing.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package thing
  2. //go:generate mkdir -p mocks
  3. //go:generate rm -rf ./mocks/*_minimock.go
  4. //go:generate minimock -i ThingRepository,PlaceThingRepository,ThingTagRepository,ThingImageRepository,ThingNotificationRepository,FileRepository,TransactionManager -o ./mocks/ -s "_minimock.go"
  5. import (
  6. "context"
  7. "git.dmitriygnatenko.ru/dima/go-common/logger"
  8. "git.dmitriygnatenko.ru/dima/homethings/internal/dto"
  9. "git.dmitriygnatenko.ru/dima/homethings/internal/factory"
  10. "git.dmitriygnatenko.ru/dima/homethings/internal/helpers/location"
  11. "git.dmitriygnatenko.ru/dima/homethings/internal/mappers"
  12. "git.dmitriygnatenko.ru/dima/homethings/internal/models"
  13. "github.com/go-playground/validator/v10"
  14. "github.com/gofiber/fiber/v2"
  15. )
  16. type (
  17. TransactionManager interface {
  18. ReadCommitted(context.Context, func(ctx context.Context) error) error
  19. }
  20. ThingRepository interface {
  21. Get(ctx context.Context, id uint64) (*models.Thing, error)
  22. Search(ctx context.Context, search string) ([]models.Thing, error)
  23. GetByPlaceID(ctx context.Context, id uint64) ([]models.Thing, error)
  24. GetAllByPlaceID(ctx context.Context, id uint64) ([]models.Thing, error)
  25. Add(ctx context.Context, req models.AddThingRequest) (uint64, error)
  26. Update(ctx context.Context, req models.UpdateThingRequest) error
  27. Delete(ctx context.Context, id uint64) error
  28. }
  29. PlaceThingRepository interface {
  30. Add(ctx context.Context, req models.AddPlaceThingRequest) error
  31. GetByThingID(ctx context.Context, id uint64) (*models.PlaceThing, error)
  32. UpdatePlace(ctx context.Context, req models.UpdatePlaceThingRequest) error
  33. DeleteThing(ctx context.Context, id uint64) error
  34. }
  35. ThingTagRepository interface {
  36. GetByPlaceID(ctx context.Context, id uint64) ([]models.ThingTag, error)
  37. DeleteByThingID(ctx context.Context, id uint64) error
  38. }
  39. ThingImageRepository interface {
  40. GetByThingID(ctx context.Context, id uint64) ([]models.Image, error)
  41. Delete(ctx context.Context, id uint64) error
  42. }
  43. ThingNotificationRepository interface {
  44. Delete(ctx context.Context, id uint64) error
  45. }
  46. FileRepository interface {
  47. Delete(path string) error
  48. }
  49. )
  50. // @Router /api/v1/things [post]
  51. // @Param data body dto.AddThingRequest true "Request body"
  52. // @Success 200 {object} dto.ThingResponse
  53. // @Failure 400 {object} dto.ErrorResponse
  54. // @Failure 500 {object} dto.ErrorResponse
  55. // @Summary Add thing
  56. // @Tags Things
  57. // @security APIKey
  58. // @Accept json
  59. // @Produce json
  60. func AddThingHandler(
  61. tm TransactionManager,
  62. thingRepository ThingRepository,
  63. placeThingRepository PlaceThingRepository,
  64. ) fiber.Handler {
  65. return func(fctx *fiber.Ctx) error {
  66. ctx := fctx.Context()
  67. req := dto.AddThingRequest{}
  68. if err := fctx.BodyParser(&req); err != nil {
  69. logger.Info(ctx, err.Error())
  70. return fiber.NewError(fiber.StatusBadRequest, err.Error())
  71. }
  72. var validate = validator.New()
  73. if err := validate.Struct(req); err != nil {
  74. logger.Info(ctx, err.Error())
  75. return fctx.Status(fiber.StatusBadRequest).JSON(factory.CreateValidateErrorResponse(err))
  76. }
  77. var id uint64
  78. err := tm.ReadCommitted(ctx, func(ctx context.Context) error {
  79. id, txErr := thingRepository.Add(ctx, mappers.ToAddThingRequest(req))
  80. if txErr != nil {
  81. return txErr
  82. }
  83. txErr = placeThingRepository.Add(ctx, mappers.ToAddPlaceThingRequest(id, req.PlaceID))
  84. if txErr != nil {
  85. return txErr
  86. }
  87. return nil
  88. })
  89. if err != nil {
  90. logger.Error(ctx, err.Error())
  91. return fiber.NewError(fiber.StatusInternalServerError, err.Error())
  92. }
  93. res, err := thingRepository.Get(ctx, id)
  94. if err != nil {
  95. logger.Error(ctx, err.Error())
  96. return fiber.NewError(fiber.StatusInternalServerError, err.Error())
  97. }
  98. res = location.ApplyLocation(fctx, res)
  99. return fctx.JSON(mappers.ToThingResponse(*res))
  100. }
  101. }