All checks were successful
Build and Release / release (push) Successful in 1m8s
84 lines
2.4 KiB
Go
84 lines
2.4 KiB
Go
package controllers
|
|
|
|
import (
|
|
"context"
|
|
"history-api/internal/dtos/request"
|
|
"history-api/internal/dtos/response"
|
|
"history-api/internal/services"
|
|
"history-api/pkg/validator"
|
|
"time"
|
|
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
type GeometryController struct {
|
|
service services.GeometryService
|
|
}
|
|
|
|
func NewGeometryController(svc services.GeometryService) *GeometryController {
|
|
return &GeometryController{service: svc}
|
|
}
|
|
|
|
// GetGeometryById handles fetching a single geometry by ID.
|
|
// @Summary Get geometry by ID
|
|
// @Description Get detailed information about a specific geometry
|
|
// @Tags Geometries
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param id path string true "Geometry ID"
|
|
// @Success 200 {object} response.CommonResponse
|
|
// @Failure 500 {object} response.CommonResponse
|
|
// @Router /geometries/{id} [get]
|
|
func (h *GeometryController) GetGeometryById(c fiber.Ctx) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
id := c.Params("id")
|
|
res, err := h.service.GetGeometryByID(ctx, id)
|
|
if err != nil {
|
|
return c.Status(err.Code).JSON(response.CommonResponse{
|
|
Status: false,
|
|
Message: err.Message,
|
|
})
|
|
}
|
|
return c.Status(fiber.StatusOK).JSON(response.CommonResponse{
|
|
Status: true,
|
|
Data: res,
|
|
})
|
|
}
|
|
|
|
// SearchGeometries handles searching for geometries.
|
|
// @Summary Search geometries
|
|
// @Description Search geometries with cursor pagination and spatial filtering
|
|
// @Tags Geometries
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param query query request.SearchGeometryDto false "Search Query"
|
|
// @Success 200 {object} response.CommonResponse
|
|
// @Failure 500 {object} response.CommonResponse
|
|
// @Router /geometries [get]
|
|
func (h *GeometryController) SearchGeometries(c fiber.Ctx) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
dto := &request.SearchGeometryDto{}
|
|
if err := validator.ValidateQueryDto(c, dto); err != nil {
|
|
return c.Status(fiber.StatusBadRequest).JSON(response.CommonResponse{
|
|
Status: false,
|
|
Errors: err,
|
|
})
|
|
}
|
|
|
|
res, err := h.service.SearchGeometries(ctx, dto)
|
|
if err != nil {
|
|
return c.Status(err.Code).JSON(response.CommonResponse{
|
|
Status: false,
|
|
Message: err.Message,
|
|
})
|
|
}
|
|
|
|
return c.Status(fiber.StatusOK).JSON(response.CommonResponse{
|
|
Status: true,
|
|
Data: res,
|
|
})
|
|
}
|