9a61f55cb1
- Design-System (assets/css/design-system.css) mit 21 Komponenten, iPad-Responsive-Breakpoints, Touch-Ziele 36px, Music-Player, Glossar-Tooltips - Templates (sims/template.html + student/teacher-Dashboard) - Docs: module-interface.md (inkl. 4a Sprachregel, 4b Leichte Sprache, 4c iPad), content-architecture.md, crash-recovery.md, music-registry.md - Admin-Infrastruktur: admin-modules.html + api/admin-modules.php (Titel, Emoji, Bild, Status, Dauer, Alter pro Modul) - Inbox-System: _inbox/README.md + _status.md fuer Atlas + Briefings an Klima, Glossar, Lehrplan, Fluss - Zentrale SFX-Pipeline (scripts/generate-sounds.py) - DALL-E-Bilder: 8 Badges + 5 Glossar-Repraesentationsbilder (Querformat) - Logo + Inter-Font lokal - PHP-APIs: admin, glossar, levels, licenses, progress, waypoints, assignments, profile, tickets - Spielsprache entfernt (admin-modules, admin-levels, schueler) - Landing-Page-Bearbeitungen (Boote sichtbarer, Button-Hintergrund) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
62 lines
2.3 KiB
PHP
62 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* API: Waypoints (Geo-Koordinaten)
|
|
* GET /api/waypoints → Alle Waypoints
|
|
* GET /api/waypoints?region=tirol → Gefiltert
|
|
* POST /api/waypoints {action} → CRUD (Admin)
|
|
*/
|
|
|
|
$method = $_SERVER['REQUEST_METHOD'];
|
|
$db = Database::get();
|
|
|
|
if ($method === 'GET') {
|
|
$region = $_GET['region'] ?? '';
|
|
$type = $_GET['type'] ?? '';
|
|
$where = '1=1';
|
|
$params = [];
|
|
if ($region) { $where .= ' AND region = ?'; $params[] = $region; }
|
|
if ($type) { $where .= ' AND wp_type = ?'; $params[] = $type; }
|
|
$wps = $db->fetchAll("SELECT id, wp_key, name, lat, lon, region, wp_type, info FROM geo_waypoints WHERE $where ORDER BY region, wp_type, name", $params);
|
|
Response::ok($wps);
|
|
}
|
|
|
|
if ($method === 'POST') {
|
|
Session::start();
|
|
$adminId = $_SESSION['admin_id'] ?? null;
|
|
$teacherId = Session::teacherId();
|
|
if (!$adminId && !$teacherId) Response::error('Nicht autorisiert', 401);
|
|
|
|
$body = json_decode(file_get_contents('php://input'), true);
|
|
$action = $body['action'] ?? '';
|
|
|
|
if ($action === 'save') {
|
|
$wpKey = preg_replace('/[^a-z0-9_]/', '', strtolower(trim($body['wpKey'] ?? '')));
|
|
$name = mb_substr(trim($body['name'] ?? ''), 0, 100);
|
|
$lat = (float)($body['lat'] ?? 0);
|
|
$lon = (float)($body['lon'] ?? 0);
|
|
$region = trim($body['region'] ?? 'vorarlberg');
|
|
$wpType = $body['wpType'] ?? 'village';
|
|
$info = mb_substr(trim($body['info'] ?? ''), 0, 255);
|
|
if (!$wpKey || !$name || !$lat || !$lon) Response::error('wpKey, name, lat, lon erforderlich');
|
|
|
|
$db->execute(
|
|
'INSERT INTO geo_waypoints (wp_key, name, lat, lon, region, wp_type, info)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)
|
|
ON DUPLICATE KEY UPDATE name=VALUES(name), lat=VALUES(lat), lon=VALUES(lon), region=VALUES(region), wp_type=VALUES(wp_type), info=VALUES(info)',
|
|
[$wpKey, $name, $lat, $lon, $region, $wpType, $info ?: null]
|
|
);
|
|
Response::ok();
|
|
}
|
|
|
|
if ($action === 'delete') {
|
|
$id = (int)($body['id'] ?? 0);
|
|
if (!$id) Response::error('id erforderlich');
|
|
$db->execute('DELETE FROM geo_waypoints WHERE id = ?', [$id]);
|
|
Response::ok();
|
|
}
|
|
|
|
Response::error('Unbekannte Aktion');
|
|
}
|
|
|
|
Response::error('Methode nicht erlaubt', 405);
|