8311b33fb3
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 1m10s
CI / test-go-edu-search (push) Successful in 43s
CI / test-python-klausur (push) Failing after 4m4s
CI / test-python-agent-core (push) Successful in 44s
CI / test-nodejs-website (push) Successful in 51s
Backend (school-service):
- notification_log table with UNIQUE(event_id, lead_days, audience,
channel) for idempotent re-runs. Status enum sent/failed/skipped.
- internal/notifications/templates.go: per-event-type × audience ×
lead-day-bucket × language templates in 8 languages (de/en/tr/ar/
uk/ru/pl/fr). Fallback chain (lang→de, eventType→andere) so we
never miss a render.
- service.go scans cal_school_event for events whose
(start_date - runDate) appears in notification_lead_days. For each
due (audience, channel) tuple it dispatches via POST to the
Matrix/Email upstreams owned by the colleague's services.
Empty URL → status='skipped', logged for visibility.
- dispatcher.go handles the POST, parent-recipient lookup (joins
parent_account + parent_child + cal_school_event.affected_class_ids),
and writeLog with the unique constraint dropping duplicate runs.
- main.go runs a 1-hour ticker; when time.Hour()==6 it invokes the
scanner for today. Idempotent so transient restarts don't double-
send.
- POST /calendar/notifications/run-now for manual trigger + backfill
(?date=YYYY-MM-DD).
- GET /calendar/events/:id/notifications returns notification_log
rows scoped to the owning teacher.
- MATRIX_SERVICE_URL + EMAIL_SERVICE_URL env vars added (default
empty = stub mode).
Frontend (studio-v2):
- NotificationStatus component fetches /events/:id/notifications and
renders coloured badges per (lead, audience, channel, status).
- DayDetail mounts NotificationStatus inside each event card when
notify_parents or notify_students is set.
Tests:
- 6 new Go unit tests for bucketFor + Render (de/tr/fallback paths)
+ substitute(class_suffix). 89 subtests gesamt.
- 2 new Playwright tests: badge render with mocked log, hidden when
notifications are off.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
100 lines
3.2 KiB
Go
100 lines
3.2 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/breakpilot/school-service/internal/notifications"
|
|
"github.com/breakpilot/school-service/internal/services"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
)
|
|
|
|
// Handler holds all the service dependencies
|
|
type Handler struct {
|
|
classService *services.ClassService
|
|
examService *services.ExamService
|
|
gradeService *services.GradeService
|
|
gradebookService *services.GradebookService
|
|
certificateService *services.CertificateService
|
|
aiService *services.AIService
|
|
timetableService *services.TimetableService
|
|
calendarService *services.CalendarService
|
|
parentService *services.ParentService
|
|
notificationService *notifications.Service
|
|
solverServiceURL string
|
|
}
|
|
|
|
// NewHandler creates a new Handler with all services
|
|
func NewHandler(db *pgxpool.Pool, llmGatewayURL, solverServiceURL, matrixURL, emailURL string) *Handler {
|
|
classService := services.NewClassService(db)
|
|
examService := services.NewExamService(db)
|
|
gradeService := services.NewGradeService(db)
|
|
gradebookService := services.NewGradebookService(db)
|
|
certificateService := services.NewCertificateService(db, gradeService, gradebookService)
|
|
aiService := services.NewAIService(llmGatewayURL)
|
|
timetableService := services.NewTimetableService(db)
|
|
calendarService := services.NewCalendarService(db)
|
|
parentService := services.NewParentService(db)
|
|
notificationService := notifications.NewService(db, matrixURL, emailURL)
|
|
|
|
return &Handler{
|
|
classService: classService,
|
|
examService: examService,
|
|
gradeService: gradeService,
|
|
gradebookService: gradebookService,
|
|
certificateService: certificateService,
|
|
aiService: aiService,
|
|
timetableService: timetableService,
|
|
calendarService: calendarService,
|
|
parentService: parentService,
|
|
notificationService: notificationService,
|
|
solverServiceURL: solverServiceURL,
|
|
}
|
|
}
|
|
|
|
// NotificationService exposes the underlying service so main.go can run
|
|
// the daily cron tick.
|
|
func (h *Handler) NotificationService() *notifications.Service {
|
|
return h.notificationService
|
|
}
|
|
|
|
// CalendarService exposes the underlying service so main.go can run the
|
|
// one-off seed import after migrations.
|
|
func (h *Handler) CalendarService() *services.CalendarService {
|
|
return h.calendarService
|
|
}
|
|
|
|
// ParentService exposes the parent service so the parent-session middleware
|
|
// in main.go can resolve session cookies.
|
|
func (h *Handler) ParentService() *services.ParentService {
|
|
return h.parentService
|
|
}
|
|
|
|
// Health returns the service health status
|
|
func (h *Handler) Health(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"status": "healthy",
|
|
"service": "school-service",
|
|
})
|
|
}
|
|
|
|
// getUserID extracts the user ID from the context (set by auth middleware)
|
|
func getUserID(c *gin.Context) string {
|
|
return c.GetString("user_id")
|
|
}
|
|
|
|
// respondError sends an error response
|
|
func respondError(c *gin.Context, status int, message string) {
|
|
c.JSON(status, gin.H{"error": message})
|
|
}
|
|
|
|
// respondSuccess sends a success response with data
|
|
func respondSuccess(c *gin.Context, data interface{}) {
|
|
c.JSON(http.StatusOK, data)
|
|
}
|
|
|
|
// respondCreated sends a created response with data
|
|
func respondCreated(c *gin.Context, data interface{}) {
|
|
c.JSON(http.StatusCreated, data)
|
|
}
|