80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
"vctp/internal/tasks"
|
|
)
|
|
|
|
// SnapshotAggregateForce forces regeneration of a daily or monthly summary table.
|
|
// @Summary Force snapshot aggregation
|
|
// @Description Forces regeneration of a daily or monthly summary table for a specified date or month.
|
|
// @Tags snapshots
|
|
// @Produce json
|
|
// @Param type query string true "Aggregation type: daily or monthly"
|
|
// @Param date query string true "Daily date (YYYY-MM-DD) or monthly date (YYYY-MM)"
|
|
// @Success 200 {object} map[string]string "Aggregation complete"
|
|
// @Failure 400 {object} map[string]string "Invalid request"
|
|
// @Failure 500 {object} map[string]string "Server error"
|
|
// @Router /api/snapshots/aggregate [post]
|
|
func (h *Handler) SnapshotAggregateForce(w http.ResponseWriter, r *http.Request) {
|
|
snapshotType := strings.ToLower(strings.TrimSpace(r.URL.Query().Get("type")))
|
|
dateValue := strings.TrimSpace(r.URL.Query().Get("date"))
|
|
|
|
if snapshotType == "" || dateValue == "" {
|
|
writeJSONError(w, http.StatusBadRequest, "type and date are required")
|
|
return
|
|
}
|
|
|
|
ctx := context.Background()
|
|
ct := &tasks.CronTask{
|
|
Logger: h.Logger,
|
|
Database: h.Database,
|
|
Settings: h.Settings,
|
|
}
|
|
|
|
switch snapshotType {
|
|
case "daily":
|
|
parsed, err := time.Parse("2006-01-02", dateValue)
|
|
if err != nil {
|
|
writeJSONError(w, http.StatusBadRequest, "date must be YYYY-MM-DD")
|
|
return
|
|
}
|
|
if err := ct.AggregateDailySummary(ctx, parsed, true); err != nil {
|
|
writeJSONError(w, http.StatusInternalServerError, err.Error())
|
|
return
|
|
}
|
|
case "monthly":
|
|
parsed, err := time.Parse("2006-01", dateValue)
|
|
if err != nil {
|
|
writeJSONError(w, http.StatusBadRequest, "date must be YYYY-MM")
|
|
return
|
|
}
|
|
if err := ct.AggregateMonthlySummary(ctx, parsed, true); err != nil {
|
|
writeJSONError(w, http.StatusInternalServerError, err.Error())
|
|
return
|
|
}
|
|
default:
|
|
writeJSONError(w, http.StatusBadRequest, "type must be daily or monthly")
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
json.NewEncoder(w).Encode(map[string]string{
|
|
"status": "OK",
|
|
})
|
|
}
|
|
|
|
func writeJSONError(w http.ResponseWriter, status int, message string) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(status)
|
|
json.NewEncoder(w).Encode(map[string]string{
|
|
"status": "ERROR",
|
|
"message": message,
|
|
})
|
|
}
|