A previous `git pull --rebase origin main` dropped 177 local commits,
losing 3400+ files across admin-v2, backend, studio-v2, website,
klausur-service, and many other services. The partial restore attempt
(660295e2) only recovered some files.
This commit restores all missing files from pre-rebase ref 98933f5e
while preserving post-rebase additions (night-scheduler, night-mode UI,
NightModeWidget dashboard integration).
Restored features include:
- AI Module Sidebar (FAB), OCR Labeling, OCR Compare
- GPU Dashboard, RAG Pipeline, Magic Help
- Klausur-Korrektur (8 files), Abitur-Archiv (5+ files)
- Companion, Zeugnisse-Crawler, Screen Flow
- Full backend, studio-v2, website, klausur-service
- All compliance SDKs, agent-core, voice-service
- CI/CD configs, documentation, scripts
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
2.6 KiB
Go
93 lines
2.6 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/breakpilot/consent-service/internal/middleware"
|
|
"github.com/breakpilot/consent-service/internal/services"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// DeadlineHandler handles deadline-related requests
|
|
type DeadlineHandler struct {
|
|
deadlineService *services.DeadlineService
|
|
}
|
|
|
|
// NewDeadlineHandler creates a new deadline handler
|
|
func NewDeadlineHandler(deadlineService *services.DeadlineService) *DeadlineHandler {
|
|
return &DeadlineHandler{
|
|
deadlineService: deadlineService,
|
|
}
|
|
}
|
|
|
|
// GetPendingDeadlines returns all pending consent deadlines for the current user
|
|
func (h *DeadlineHandler) GetPendingDeadlines(c *gin.Context) {
|
|
userID, err := middleware.GetUserID(c)
|
|
if err != nil || userID == uuid.Nil {
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "Invalid user"})
|
|
return
|
|
}
|
|
|
|
deadlines, err := h.deadlineService.GetPendingDeadlines(c.Request.Context(), userID)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to fetch deadlines"})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"deadlines": deadlines,
|
|
"count": len(deadlines),
|
|
})
|
|
}
|
|
|
|
// GetSuspensionStatus returns the current suspension status for a user
|
|
func (h *DeadlineHandler) GetSuspensionStatus(c *gin.Context) {
|
|
userID, err := middleware.GetUserID(c)
|
|
if err != nil || userID == uuid.Nil {
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "Invalid user"})
|
|
return
|
|
}
|
|
|
|
suspended, err := h.deadlineService.IsUserSuspended(c.Request.Context(), userID)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to check suspension status"})
|
|
return
|
|
}
|
|
|
|
response := gin.H{
|
|
"suspended": suspended,
|
|
}
|
|
|
|
if suspended {
|
|
suspension, err := h.deadlineService.GetAccountSuspension(c.Request.Context(), userID)
|
|
if err == nil && suspension != nil {
|
|
response["reason"] = suspension.Reason
|
|
response["suspended_at"] = suspension.SuspendedAt
|
|
response["details"] = suspension.Details
|
|
}
|
|
|
|
deadlines, err := h.deadlineService.GetPendingDeadlines(c.Request.Context(), userID)
|
|
if err == nil {
|
|
response["pending_deadlines"] = deadlines
|
|
}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, response)
|
|
}
|
|
|
|
// TriggerDeadlineProcessing manually triggers deadline processing (admin only)
|
|
func (h *DeadlineHandler) TriggerDeadlineProcessing(c *gin.Context) {
|
|
if !middleware.IsAdmin(c) {
|
|
c.JSON(http.StatusForbidden, gin.H{"error": "Admin access required"})
|
|
return
|
|
}
|
|
|
|
if err := h.deadlineService.ProcessDailyDeadlines(c.Request.Context()); err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to process deadlines"})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"message": "Deadline processing completed"})
|
|
}
|