123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package notification
- import (
- "git.dmitriygnatenko.ru/dima/homethings/internal/dto"
- "git.dmitriygnatenko.ru/dima/homethings/internal/factory"
- "git.dmitriygnatenko.ru/dima/homethings/internal/helpers"
- "git.dmitriygnatenko.ru/dima/homethings/internal/interfaces"
- "git.dmitriygnatenko.ru/dima/homethings/internal/mappers"
- "git.dmitriygnatenko.ru/dima/homethings/internal/repositories"
- "github.com/go-playground/validator/v10"
- "github.com/gofiber/fiber/v2"
- )
- // @Router /api/v1/things/notifications [post]
- // @Param data body dto.AddThingNotificationRequest true "Request body"
- // @Success 200 {object} dto.ThingNotificationResponse
- // @Failure 400 {object} dto.ErrorResponse
- // @Failure 500 {object} dto.ErrorResponse
- // @Summary Add thing notification
- // @Tags Notifications
- // @security APIKey
- // @Accept json
- // @Produce json
- func AddThingNotificationHandler(sp interfaces.ServiceProvider) fiber.Handler {
- return func(fctx *fiber.Ctx) error {
- ctx := fctx.Context()
- req := dto.AddThingNotificationRequest{}
- if err := fctx.BodyParser(&req); err != nil {
- return fiber.NewError(fiber.StatusBadRequest, err.Error())
- }
- var validate = validator.New()
- if err := validate.Struct(req); err != nil {
- return fctx.Status(fiber.StatusBadRequest).JSON(factory.CreateValidateErrorResponse(err))
- }
- dbReq, err := mappers.ConvertToAddThingNotificationRequestModel(req)
- if err != nil {
- return fiber.NewError(fiber.StatusBadRequest, err.Error())
- }
- if err = sp.GetThingNotificationRepository().Add(ctx, *dbReq, nil); err != nil {
- if repositories.IsFKViolationError(err) || repositories.IsDuplicateKeyError(err) {
- return fiber.NewError(fiber.StatusBadRequest, "")
- }
- return fiber.NewError(fiber.StatusInternalServerError, err.Error())
- }
- res, err := sp.GetThingNotificationRepository().Get(ctx, req.ThingID)
- if err != nil {
- return fiber.NewError(fiber.StatusInternalServerError, err.Error())
- }
- res = helpers.ApplyLocation(fctx, res)
- return fctx.JSON(mappers.ConvertToThingNotificationResponseDTO(*res))
- }
- }
|