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>
114 lines
2.5 KiB
Go
114 lines
2.5 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
// Config holds all configuration for the school service
|
|
type Config struct {
|
|
// Server
|
|
Port string
|
|
Environment string
|
|
|
|
// Database
|
|
DatabaseURL string
|
|
|
|
// JWT
|
|
JWTSecret string
|
|
|
|
// CORS
|
|
AllowedOrigins []string
|
|
|
|
// Rate Limiting
|
|
RateLimitRequests int
|
|
RateLimitWindow int // in seconds
|
|
|
|
// LLM Gateway (for AI features)
|
|
LLMGatewayURL string
|
|
|
|
// Timetable solver service (Python/FastAPI, port 8095)
|
|
SolverServiceURL string
|
|
|
|
// Notification upstream services (Phase 9d). Empty → stub mode.
|
|
MatrixServiceURL string
|
|
EmailServiceURL string
|
|
}
|
|
|
|
// Load loads configuration from environment variables
|
|
func Load() (*Config, error) {
|
|
// Load .env file if exists (for development)
|
|
_ = godotenv.Load()
|
|
|
|
cfg := &Config{
|
|
Port: getEnv("PORT", "8084"),
|
|
Environment: getEnv("ENVIRONMENT", "development"),
|
|
DatabaseURL: getEnv("DATABASE_URL", ""),
|
|
JWTSecret: getEnv("JWT_SECRET", ""),
|
|
RateLimitRequests: getEnvInt("RATE_LIMIT_REQUESTS", 100),
|
|
RateLimitWindow: getEnvInt("RATE_LIMIT_WINDOW", 60),
|
|
LLMGatewayURL: getEnv("LLM_GATEWAY_URL", "http://backend:8000/llm"),
|
|
SolverServiceURL: getEnv("SOLVER_SERVICE_URL", "http://timetable-solver-service:8095"),
|
|
MatrixServiceURL: getEnv("MATRIX_SERVICE_URL", ""),
|
|
EmailServiceURL: getEnv("EMAIL_SERVICE_URL", ""),
|
|
}
|
|
|
|
// Parse allowed origins
|
|
originsStr := getEnv("ALLOWED_ORIGINS", "http://localhost:3000,http://localhost:8000")
|
|
cfg.AllowedOrigins = parseCommaSeparated(originsStr)
|
|
|
|
// Validate required fields
|
|
if cfg.DatabaseURL == "" {
|
|
return nil, fmt.Errorf("DATABASE_URL is required")
|
|
}
|
|
|
|
if cfg.JWTSecret == "" {
|
|
return nil, fmt.Errorf("JWT_SECRET is required")
|
|
}
|
|
|
|
return cfg, nil
|
|
}
|
|
|
|
func getEnv(key, defaultValue string) string {
|
|
if value := os.Getenv(key); value != "" {
|
|
return value
|
|
}
|
|
return defaultValue
|
|
}
|
|
|
|
func getEnvInt(key string, defaultValue int) int {
|
|
if value := os.Getenv(key); value != "" {
|
|
var result int
|
|
fmt.Sscanf(value, "%d", &result)
|
|
return result
|
|
}
|
|
return defaultValue
|
|
}
|
|
|
|
func parseCommaSeparated(s string) []string {
|
|
if s == "" {
|
|
return []string{}
|
|
}
|
|
var result []string
|
|
start := 0
|
|
for i := 0; i <= len(s); i++ {
|
|
if i == len(s) || s[i] == ',' {
|
|
item := s[start:i]
|
|
// Trim whitespace
|
|
for len(item) > 0 && item[0] == ' ' {
|
|
item = item[1:]
|
|
}
|
|
for len(item) > 0 && item[len(item)-1] == ' ' {
|
|
item = item[:len(item)-1]
|
|
}
|
|
if item != "" {
|
|
result = append(result, item)
|
|
}
|
|
start = i + 1
|
|
}
|
|
}
|
|
return result
|
|
}
|