1134 lines
38 KiB
HTML
1134 lines
38 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<!-- Meta Tags -->
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<link rel="icon" type="image/x-icon" href="/pictures/favicon.ico" />
|
||
|
||
<!-- Stylesheets -->
|
||
<link rel="stylesheet" href="settings.css" />
|
||
<title>Ninjacross Timer - Einstellungen</title>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<!-- Header Section -->
|
||
<div class="header">
|
||
<h1>⏱️ Ninjacross Timer</h1>
|
||
<p>Einstellungen & Konfiguration</p>
|
||
</div>
|
||
|
||
<div class="content">
|
||
<!-- Navigation Buttons -->
|
||
<div class="nav-buttons">
|
||
<a href="/" class="nav-button">🏠 Hauptseite</a>
|
||
<a href="/rfid" class="nav-button">📡 RFID</a>
|
||
</div>
|
||
|
||
<!-- Status Message Container -->
|
||
<div id="statusMessage" class="status-message"></div>
|
||
|
||
<!-- Date & Time Section -->
|
||
<div class="section">
|
||
<h2>🕐 Datum & Uhrzeit</h2>
|
||
<div class="current-time" id="currentTime">
|
||
Aktuelle Zeit: Laden...
|
||
</div>
|
||
|
||
<form id="timeForm">
|
||
<div class="time-row">
|
||
<div class="form-group time-input">
|
||
<label for="currentDate">Datum:</label>
|
||
<input type="date" id="currentDate" name="currentDate" />
|
||
</div>
|
||
<div class="form-group time-input">
|
||
<label for="currentTimeInput">Uhrzeit:</label>
|
||
<input
|
||
type="time"
|
||
id="currentTimeInput"
|
||
name="currentTime"
|
||
step="1"
|
||
/>
|
||
</div>
|
||
</div>
|
||
<div class="button-group">
|
||
<button type="submit" class="btn btn-secondary">
|
||
🕐 Uhrzeit setzen
|
||
</button>
|
||
<button
|
||
type="button"
|
||
onclick="syncWithBrowserTime()"
|
||
class="btn btn-secondary"
|
||
>
|
||
💻 Browser-Zeit übernehmen
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<!-- Mode Selection Section -->
|
||
<div class="section">
|
||
<h2>🎯 Modus</h2>
|
||
<form id="modeForm">
|
||
<div class="form-group">
|
||
<label>Modus auswählen:</label>
|
||
<div class="mode-toggle">
|
||
<button type="button" class="mode-button active" data-mode="individual" onclick="selectMode('individual')">
|
||
👤 Individual
|
||
</button>
|
||
<button type="button" class="mode-button" data-mode="wettkampf" onclick="selectMode('wettkampf')">
|
||
🏆 Wettkampf
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<div class="button-group">
|
||
<button type="submit" class="btn btn-primary">
|
||
💾 Modus speichern
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
|
||
<!-- Basic Settings Section -->
|
||
<div class="section">
|
||
<h2>🔧 Grundeinstellungen</h2>
|
||
<form id="settingsForm">
|
||
<div class="form-group">
|
||
<label for="maxTime">Maximale Zeit (Sekunden):</label>
|
||
<input
|
||
type="number"
|
||
id="maxTime"
|
||
name="maxTime"
|
||
min="10"
|
||
max="3600"
|
||
value="120"
|
||
title="Zeit nach der eine Bahn automatisch zurückgesetzt wird"
|
||
/>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="maxTimeDisplay"
|
||
>Wie lange bleibt die letzte Zeit stehen (Sekunden):</label
|
||
>
|
||
<input
|
||
type="number"
|
||
id="maxTimeDisplay"
|
||
name="maxTimeDisplay"
|
||
min="1"
|
||
max="3600"
|
||
value="20"
|
||
title="Zeit nach der die angezeigte Zeit zurückgesetzt wird"
|
||
/>
|
||
</div>
|
||
<div class="button-group">
|
||
<button type="submit" class="btn btn-primary">
|
||
💾 Einstellungen speichern
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<!-- Times Management Section -->
|
||
<div class="section">
|
||
<h2>🏆 Zeiten verwalten</h2>
|
||
<div class="button-group">
|
||
<button onclick="resetBestTimes()" class="btn btn-danger">
|
||
🔄 Beste Zeiten zurücksetzen
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Button Configuration Section -->
|
||
<div class="section">
|
||
<h2>📡 Button-Konfiguration</h2>
|
||
<div class="button-group">
|
||
<button onclick="startLearningMode()" class="btn btn-primary">
|
||
🎯 Anlernmodus starten
|
||
</button>
|
||
<button onclick="resetButtonAssign()" class="btn btn-danger">
|
||
❌ Buttons verlernen
|
||
</button>
|
||
<button onclick="showButtonStatus()" class="btn btn-primary">
|
||
📊 Button-Status anzeigen
|
||
</button>
|
||
</div>
|
||
|
||
<div id="learningMode" class="learning-mode">
|
||
<h3>🎯 Anlernmodus aktiv</h3>
|
||
<p id="learningInstruction" class="pulse">
|
||
Drücken Sie jetzt den Button für: <strong>Bahn 1 Start</strong>
|
||
</p>
|
||
<button onclick="cancelLearningMode()" class="btn btn-danger">
|
||
❌ Abbrechen
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- WiFi Configuration Section -->
|
||
<div class="section" id="wifiSection">
|
||
<h2>📡 WLAN-Konfiguration</h2>
|
||
<div
|
||
id="wifiRestrictionNotice"
|
||
class="restriction-notice"
|
||
style="display: none"
|
||
>
|
||
🔒 WLAN-Konfiguration ist nur mit Lizenz Level 3 oder höher
|
||
verfügbar. Aktuelle Lizenz: Level
|
||
<span id="currentLicenseLevel">0</span>
|
||
</div>
|
||
<form id="wifiForm">
|
||
<div class="form-group">
|
||
<label for="wifi-ssid">WLAN Name (SSID):</label>
|
||
<input
|
||
type="text"
|
||
id="wifi-ssid"
|
||
name="ssid"
|
||
placeholder="WLAN-Name eingeben"
|
||
required
|
||
/>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="wifi-password">WLAN Passwort:</label>
|
||
<input
|
||
type="password"
|
||
id="wifi-password"
|
||
name="password"
|
||
placeholder="WLAN-Passwort eingeben"
|
||
/>
|
||
<div class="section">
|
||
<div
|
||
id="systemInfo"
|
||
style="
|
||
background: white;
|
||
padding: 20px;
|
||
border-radius: 10px;
|
||
font-family: monospace;
|
||
font-size: 14px;
|
||
"
|
||
>
|
||
<div>STA IP-Adresse: <span id="STAipAddress">Laden...</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="button-group">
|
||
<button type="submit" id="wifiSubmitBtn" class="btn btn-primary">
|
||
💾 WLAN-Einstellungen speichern
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2>📍 Standort</h2>
|
||
<div
|
||
id="locationRestrictionNotice"
|
||
class="restriction-notice"
|
||
style="display: none"
|
||
>
|
||
🔒 Standort-Konfiguration ist nur mit Lizenz Level 3 oder höher
|
||
verfügbar. Aktuelle Lizenz: Level
|
||
<span id="currentLocationLicenseLevel">0</span>
|
||
</div>
|
||
<form id="locationForm">
|
||
<div class="form-group">
|
||
<label for="locationSelect">Standort auswählen:</label>
|
||
<select id="locationSelect" name="location" required>
|
||
<option value="">Bitte wählen...</option>
|
||
</select>
|
||
</div>
|
||
<div class="button-group">
|
||
<button
|
||
type="submit"
|
||
id="locationSubmitBtn"
|
||
class="btn btn-primary"
|
||
>
|
||
💾 Standort speichern
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<!-- OTA Update Section -->
|
||
<div class="section">
|
||
<h2>🔄 OTA Update</h2>
|
||
<div
|
||
id="otaRestrictionNotice"
|
||
class="restriction-notice"
|
||
style="display: none"
|
||
>
|
||
🔒 OTA Updates sind nur mit Lizenz Level 2 oder höher verfügbar.
|
||
Aktuelle Lizenz: Level <span id="currentLicenseLevel">0</span>
|
||
</div>
|
||
<div class="button-group">
|
||
<button
|
||
id="otaUpdateBtn"
|
||
onclick="performOTAUpdate()"
|
||
class="btn btn-danger"
|
||
>
|
||
🔄 Update durchführen
|
||
</button>
|
||
<button
|
||
id="mqttPublishBtn"
|
||
onclick="updateButtons()"
|
||
class="btn btn-warning"
|
||
>
|
||
📡 Buttons Updaten
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- System Information Section -->
|
||
<div class="section">
|
||
<h2>ℹ️ System-Information</h2>
|
||
<div
|
||
id="systemInfo"
|
||
style="
|
||
background: white;
|
||
padding: 20px;
|
||
border-radius: 10px;
|
||
font-family: monospace;
|
||
font-size: 14px;
|
||
"
|
||
>
|
||
<div>IP-Adresse: <span id="ipAddress">Laden...</span></div>
|
||
<div>Kanal: <span id="channel">Laden...</span></div>
|
||
<div>MAC-Adresse: <span id="macAddress">Laden...</span></div>
|
||
<div>Internet: <span id="isOnline">Laden...</span></div>
|
||
<div>Freier Speicher: <span id="freeMemory">Laden...</span></div>
|
||
<div>
|
||
Verbundene Buttons: <span id="connectedButtons">Laden...</span>
|
||
</div>
|
||
<div>Lizenz gültig: <span id="isLicenceValid">Laden...</span></div>
|
||
<div>Lizenz Level: <span id="licenceLevel">Laden...</span></div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- License Section -->
|
||
<div class="section">
|
||
<h2>🔧 Lizenz</h2>
|
||
<form id="licenceForm">
|
||
<div class="form-group">
|
||
<label for="licencekey">Lizensschlüssel:</label>
|
||
<input
|
||
type="password"
|
||
id="licencekey"
|
||
name="licence"
|
||
value="Key"
|
||
/>
|
||
</div>
|
||
<div class="button-group">
|
||
<button type="submit" class="btn btn-primary">
|
||
💾 Lizenz speichern
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- JavaScript Code -->
|
||
<script>
|
||
let learningStep = 0;
|
||
const learningSteps = [
|
||
"Bahn 1 Start",
|
||
"Bahn 1 Stop",
|
||
"Bahn 2 Start",
|
||
"Bahn 2 Stop",
|
||
];
|
||
|
||
// Einstellungen laden beim Seitenaufruf
|
||
window.onload = function () {
|
||
loadLicence();
|
||
loadSettings();
|
||
loadWifiSettings();
|
||
loadSystemInfo();
|
||
loadCurrentTime();
|
||
updateCurrentTimeDisplay();
|
||
loadWifiSettings();
|
||
};
|
||
|
||
// Aktuelle Zeit anzeigen (Live-Update)
|
||
function updateCurrentTimeDisplay() {
|
||
setInterval(() => {
|
||
fetch("/api/time")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.timestamp) {
|
||
const date = new Date(data.timestamp * 1000);
|
||
const timeString = date.toLocaleString("de-DE", {
|
||
weekday: "long",
|
||
year: "numeric",
|
||
month: "2-digit",
|
||
day: "2-digit",
|
||
hour: "2-digit",
|
||
minute: "2-digit",
|
||
second: "2-digit",
|
||
});
|
||
document.getElementById(
|
||
"currentTime"
|
||
).textContent = `System Zeit: ${timeString}`;
|
||
} else {
|
||
document.getElementById("currentTime").textContent =
|
||
"Aktuelle Zeit: Fehler beim Laden";
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
document.getElementById("currentTime").textContent =
|
||
"Aktuelle Zeit: Fehler beim Laden";
|
||
});
|
||
}, 1000);
|
||
}
|
||
|
||
// Aktuelle Zeit vom Server laden
|
||
function loadCurrentTime() {
|
||
fetch("/api/time")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.timestamp) {
|
||
const date = new Date(data.timestamp * 1000);
|
||
document.getElementById("currentDate").value = date
|
||
.toISOString()
|
||
.split("T")[0];
|
||
document.getElementById("currentTimeInput").value = date
|
||
.toTimeString()
|
||
.split(" ")[0];
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
console.log(
|
||
"Zeit konnte nicht geladen werden, verwende Browser-Zeit"
|
||
);
|
||
syncWithBrowserTime();
|
||
});
|
||
}
|
||
|
||
// Browser-Zeit in die Eingafelder übernehmen
|
||
function syncWithBrowserTime() {
|
||
const now = new Date();
|
||
document.getElementById("currentDate").value = now
|
||
.toISOString()
|
||
.split("T")[0];
|
||
document.getElementById("currentTimeInput").value = now
|
||
.toTimeString()
|
||
.split(" ")[0];
|
||
showMessage("Browser-Zeit übernommen", "info");
|
||
|
||
// Jetzt auch direkt an den Server senden:
|
||
const dateValue = document.getElementById("currentDate").value;
|
||
const timeValue = document.getElementById("currentTimeInput").value;
|
||
|
||
if (!dateValue || !timeValue) {
|
||
showMessage("Bitte Datum und Uhrzeit eingeben", "error");
|
||
return;
|
||
}
|
||
|
||
const datetime = new Date(`${dateValue}T${timeValue}`);
|
||
const timestamp = Math.floor(datetime.getTime() / 1000);
|
||
|
||
fetch("/api/set-time", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body: "timestamp=" + encodeURIComponent(timestamp),
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage("Uhrzeit erfolgreich gesetzt!", "success");
|
||
} else {
|
||
showMessage("Fehler beim Setzen der Uhrzeit", "error");
|
||
}
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Verbindungsfehler beim Setzen der Zeit", "error")
|
||
);
|
||
}
|
||
|
||
// Zeit setzen
|
||
document
|
||
.getElementById("timeForm")
|
||
.addEventListener("submit", function (e) {
|
||
e.preventDefault();
|
||
|
||
const dateValue = document.getElementById("currentDate").value;
|
||
const timeValue = document.getElementById("currentTimeInput").value;
|
||
|
||
if (!dateValue || !timeValue) {
|
||
showMessage("Bitte Datum und Uhrzeit eingeben", "error");
|
||
return;
|
||
}
|
||
|
||
const datetime = new Date(`${dateValue}T${timeValue}`);
|
||
const timestamp = Math.floor(datetime.getTime() / 1000);
|
||
|
||
fetch("/api/set-time", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body: "timestamp=" + encodeURIComponent(timestamp),
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage("Uhrzeit erfolgreich gesetzt!", "success");
|
||
} else {
|
||
showMessage("Fehler beim Setzen der Uhrzeit", "error");
|
||
}
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Verbindungsfehler beim Setzen der Zeit", "error")
|
||
);
|
||
});
|
||
|
||
document
|
||
.getElementById("licenceForm")
|
||
.addEventListener("submit", function (e) {
|
||
e.preventDefault();
|
||
saveLicence();
|
||
});
|
||
|
||
|
||
// Mode selection function
|
||
// Remove active class from all mode buttons
|
||
function selectMode(mode) {
|
||
document.querySelectorAll('.mode-button').forEach(button => {
|
||
button.classList.remove('active');
|
||
});
|
||
|
||
// Add active class to selected button
|
||
document.querySelector(`[data-mode="${mode}"]`).classList.add('active');
|
||
}
|
||
|
||
// Mode form handler
|
||
document.getElementById('modeForm').addEventListener('submit', function(e) {
|
||
e.preventDefault();
|
||
|
||
const activeButton = document.querySelector('.mode-button.active');
|
||
const selectedMode = activeButton ? activeButton.getAttribute('data-mode') : 'individual';
|
||
|
||
fetch('/api/set-mode', {
|
||
method: 'POST',
|
||
headers: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
},
|
||
body: 'mode=' + encodeURIComponent(selectedMode)
|
||
})
|
||
.then(response => response.json())
|
||
.then(data => {
|
||
if (data.success) {
|
||
showMessage('Modus erfolgreich gespeichert!', 'success');
|
||
} else {
|
||
showMessage('Fehler beim Speichern des Modus', 'error');
|
||
}
|
||
})
|
||
.catch(error => showMessage('Verbindungsfehler', 'error'));
|
||
});
|
||
|
||
// Einstellungen laden
|
||
function loadSettings() {
|
||
fetch("/api/get-settings")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
document.getElementById("maxTime").value = data.maxTime || 300;
|
||
document.getElementById("maxTimeDisplay").value =
|
||
data.maxTimeDisplay || 20;
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Fehler beim Laden der Einstellungen", "error")
|
||
);
|
||
}
|
||
|
||
// System-Informationen laden
|
||
function loadSystemInfo() {
|
||
fetch("/api/info")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
document.getElementById("ipAddress").textContent =
|
||
data.ip || "Unbekannt";
|
||
document.getElementById("STAipAddress").textContent =
|
||
data.ipSTA || "Unbekannt";
|
||
document.getElementById("channel").textContent =
|
||
data.channel || "Unbekannt";
|
||
document.getElementById("macAddress").textContent =
|
||
data.mac || "Unbekannt";
|
||
document.getElementById("isOnline").textContent = data.isOnline
|
||
? "Ja"
|
||
: "Nein";
|
||
document.getElementById("freeMemory").textContent =
|
||
(data.freeMemory || 0) + " Bytes";
|
||
document.getElementById("connectedButtons").textContent =
|
||
data.connectedButtons || 0;
|
||
document.getElementById("isLicenceValid").textContent =
|
||
data.valid || "";
|
||
document.getElementById("licenceLevel").textContent =
|
||
data.tier || "";
|
||
|
||
// Check license level and update OTA button accordingly
|
||
updateOTAButtonAccess(data.tier || 0);
|
||
updateWifiButtonAccess(data.tier || 0);
|
||
updateLocationAccess(data.tier || 0);
|
||
})
|
||
.catch((error) => console.log("Info konnte nicht geladen werden"));
|
||
}
|
||
|
||
function loadLicence() {
|
||
fetch("/api/get-licence")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
document.getElementById("licencekey").value = data.licence || "";
|
||
loadLocations();
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Fehler beim Laden der Lizenz", "error")
|
||
);
|
||
}
|
||
|
||
function saveLicence() {
|
||
const licence = document.getElementById("licencekey").value;
|
||
fetch("/api/set-licence", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body: "licence=" + encodeURIComponent(licence),
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage("Lizenz erfolgreich gespeichert!", "success");
|
||
// Reload system info to update license level and OTA access
|
||
setTimeout(() => {
|
||
loadSystemInfo();
|
||
}, 1000);
|
||
} else {
|
||
showMessage("Fehler beim Speichern der Lizenz", "error");
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
}
|
||
|
||
// WLAN-Einstellungen laden
|
||
function loadWifiSettings() {
|
||
fetch("/api/get-wifi")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
document.getElementById("wifi-ssid").value = data.ssid || "";
|
||
document.getElementById("wifi-password").value =
|
||
data.password || "";
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Fehler beim Laden der WLAN-Einstellungen", "error")
|
||
);
|
||
}
|
||
|
||
// WLAN-Einstellungen beim Laden der Seite abrufen
|
||
window.addEventListener("load", loadWifiSettings);
|
||
|
||
// WLAN-Formular Handler
|
||
document
|
||
.getElementById("wifiForm")
|
||
.addEventListener("submit", function (e) {
|
||
e.preventDefault();
|
||
|
||
const ssid = document.getElementById("wifi-ssid").value;
|
||
const password = document.getElementById("wifi-password").value;
|
||
|
||
if (!ssid) {
|
||
showMessage("Bitte WLAN-Namen eingeben", "error");
|
||
return;
|
||
}
|
||
if (
|
||
!confirm(
|
||
"Der Server wird nach dem setzten neu gestartet. Fortsetzten?"
|
||
)
|
||
) {
|
||
return;
|
||
}
|
||
|
||
fetch("/api/set-wifi", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body: `ssid=${encodeURIComponent(
|
||
ssid
|
||
)}&password=${encodeURIComponent(password)}`,
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage(
|
||
"WLAN-Einstellungen erfolgreich gespeichert!",
|
||
"success"
|
||
);
|
||
} else {
|
||
showMessage(
|
||
data.error || "Fehler beim Speichern der WLAN-Einstellungen",
|
||
"error"
|
||
);
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
});
|
||
|
||
// Update OTA button access based on license level
|
||
function updateOTAButtonAccess(licenseLevel) {
|
||
const otaButton = document.getElementById("otaUpdateBtn");
|
||
const otarestrictionNotice = document.getElementById(
|
||
"otaRestrictionNotice"
|
||
);
|
||
const otacurrentLevelSpan = document.getElementById(
|
||
"currentLicenseLevel"
|
||
);
|
||
|
||
const level = parseInt(licenseLevel) || 0;
|
||
|
||
if (level >= 2) {
|
||
// License level 2 or higher - enable OTA
|
||
otaButton.classList.remove("btn-disabled");
|
||
otaButton.disabled = false;
|
||
otarestrictionNotice.style.display = "none";
|
||
} else {
|
||
// License level below 2 - disable OTA
|
||
otaButton.classList.add("btn-disabled");
|
||
otaButton.disabled = true;
|
||
otarestrictionNotice.style.display = "block";
|
||
otacurrentLevelSpan.textContent = level;
|
||
}
|
||
}
|
||
|
||
// MQTT Message publish function
|
||
function updateButtons() {
|
||
if (confirm("Update Buttons?")) {
|
||
fetch("/api/updateButtons", {
|
||
method: "GET",
|
||
})
|
||
.then((response) => {
|
||
if (response.status === 200) {
|
||
showMessage(
|
||
"Buttons führen das Update erfolgreich aus!",
|
||
"success"
|
||
);
|
||
} else {
|
||
showMessage("Fehler beim Senden der MQTT Message", "error");
|
||
}
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Verbindungsfehler beim MQTT Publish", "error")
|
||
);
|
||
}
|
||
}
|
||
|
||
function updateWifiButtonAccess(licenseLevel) {
|
||
const wifiSubmitBtn = document.getElementById("wifiSubmitBtn");
|
||
const wifiForm = document.getElementById("wifiForm");
|
||
const wifiRestrictionNotice = document.getElementById(
|
||
"wifiRestrictionNotice"
|
||
);
|
||
const wifiCurrentLevelSpan = document.getElementById(
|
||
"currentLicenseLevel"
|
||
);
|
||
|
||
const level = parseInt(licenseLevel) || 0;
|
||
|
||
if (level >= 3) {
|
||
// License level 3 or higher - enable form
|
||
wifiSubmitBtn.classList.remove("btn-disabled");
|
||
wifiSubmitBtn.disabled = false;
|
||
wifiForm.querySelectorAll("input").forEach((input) => {
|
||
input.disabled = false;
|
||
});
|
||
wifiRestrictionNotice.style.display = "none";
|
||
} else {
|
||
// License level below 3 - disable form
|
||
wifiSubmitBtn.classList.add("btn-disabled");
|
||
wifiSubmitBtn.disabled = true;
|
||
wifiForm.querySelectorAll("input").forEach((input) => {
|
||
input.disabled = true;
|
||
});
|
||
wifiRestrictionNotice.style.display = "block";
|
||
wifiCurrentLevelSpan.textContent = level;
|
||
}
|
||
}
|
||
|
||
// OTA Update function with license check
|
||
function performOTAUpdate() {
|
||
const otaButton = document.getElementById("otaUpdateBtn");
|
||
|
||
if (
|
||
otaButton.disabled ||
|
||
otaButton.classList.contains("btn-disabled")
|
||
) {
|
||
showMessage(
|
||
"OTA Update erfordert Lizenz Level 2 oder höher",
|
||
"error"
|
||
);
|
||
return;
|
||
}
|
||
|
||
if (
|
||
confirm(
|
||
"Möchten Sie wirklich ein OTA Update durchführen? Das Gerät wird während des Updates neu gestartet."
|
||
)
|
||
) {
|
||
window.location.href = "/update";
|
||
}
|
||
}
|
||
|
||
// Einstellungen speichern
|
||
document
|
||
.getElementById("settingsForm")
|
||
.addEventListener("submit", function (e) {
|
||
e.preventDefault();
|
||
|
||
const maxTime = parseInt(document.getElementById("maxTime").value);
|
||
const maxTimeDisplay = parseInt(
|
||
document.getElementById("maxTimeDisplay").value
|
||
);
|
||
|
||
fetch("/api/set-max-time", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body:
|
||
"maxTime=" +
|
||
encodeURIComponent(maxTime) +
|
||
"&maxTimeDisplay=" +
|
||
encodeURIComponent(maxTimeDisplay),
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage(
|
||
"Einstellungen erfolgreich gespeichert!",
|
||
"success"
|
||
);
|
||
} else {
|
||
showMessage("Fehler beim Speichern der Einstellungen", "error");
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
});
|
||
|
||
// Beste Zeiten zurücksetzen
|
||
function resetBestTimes() {
|
||
if (confirm("Möchten Sie wirklich alle besten Zeiten zurücksetzen?")) {
|
||
fetch("/api/reset-best", { method: "POST" })
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage(
|
||
"Beste Zeiten erfolgreich zurückgesetzt!",
|
||
"success"
|
||
);
|
||
} else {
|
||
showMessage("Fehler beim Zurücksetzen", "error");
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
}
|
||
}
|
||
|
||
// Anlernmodus starten
|
||
function startLearningMode() {
|
||
learningStep = 0;
|
||
document.getElementById("learningMode").style.display = "block";
|
||
updateLearningInstruction();
|
||
|
||
fetch("/api/start-learning", { method: "POST" })
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage("Anlernmodus gestartet", "info");
|
||
pollLearningStatus();
|
||
} else {
|
||
showMessage("Fehler beim Starten des Anlernmodus", "error");
|
||
cancelLearningMode();
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
showMessage("Verbindungsfehler", "error");
|
||
cancelLearningMode();
|
||
});
|
||
}
|
||
|
||
// Anlernmodus abbrechen
|
||
function cancelLearningMode() {
|
||
document.getElementById("learningMode").style.display = "none";
|
||
|
||
fetch("/api/stop-learning", { method: "POST" })
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
showMessage("Anlernmodus abgebrochen", "info");
|
||
})
|
||
.catch((error) => console.log("Fehler beim Abbrechen"));
|
||
}
|
||
|
||
// Anlern-Anweisung aktualisieren
|
||
function updateLearningInstruction() {
|
||
if (learningStep < learningSteps.length) {
|
||
document.getElementById(
|
||
"learningInstruction"
|
||
).innerHTML = `Drücken Sie jetzt den Button für: <strong>${learningSteps[learningStep]}</strong>`;
|
||
}
|
||
}
|
||
|
||
// Anlern-Status abfragen
|
||
function pollLearningStatus() {
|
||
const pollInterval = setInterval(() => {
|
||
fetch("/api/learn/status")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (!data.active) {
|
||
clearInterval(pollInterval);
|
||
document.getElementById("learningMode").style.display = "none";
|
||
|
||
if (data.completed) {
|
||
showMessage("Alle Buttons erfolgreich angelernt!", "success");
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (data.step !== learningStep) {
|
||
learningStep = data.step;
|
||
updateLearningInstruction();
|
||
|
||
if (learningStep > 0) {
|
||
showMessage(
|
||
`${learningSteps[learningStep - 1]} erfolgreich angelernt!`,
|
||
"success"
|
||
);
|
||
}
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
clearInterval(pollInterval);
|
||
cancelLearningMode();
|
||
});
|
||
}, 1000);
|
||
}
|
||
|
||
function resetButtonAssign() {
|
||
if (
|
||
confirm("Möchten Sie wirklich alle Button-Zuweisungen zurücksetzen?")
|
||
) {
|
||
fetch("/api/unlearn-button", { method: "POST" })
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage(
|
||
"Button-Zuweisungen erfolgreich zurückgesetzt!",
|
||
"success"
|
||
);
|
||
loadSystemInfo();
|
||
} else {
|
||
showMessage(
|
||
"Fehler beim Zurücksetzen der Button-Zuweisungen",
|
||
"error"
|
||
);
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
}
|
||
}
|
||
|
||
// Button-Status anzeigen
|
||
function showButtonStatus() {
|
||
fetch("/api/buttons/status")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
let statusText = "Button-Status:\n\n";
|
||
statusText += `Bahn 1 Start: ${
|
||
data.lane1Start
|
||
? `Konfiguriert${
|
||
data.lane1StartVoltage !== undefined
|
||
? " (Batterystand: " + data.lane1StartVoltage + " %)"
|
||
: ""
|
||
}`
|
||
: "Nicht konfiguriert"
|
||
}\n`;
|
||
statusText += `Bahn 1 Stop: ${
|
||
data.lane1Stop
|
||
? `Konfiguriert${
|
||
data.lane1StopVoltage !== undefined
|
||
? " (Batterystand: " + data.lane1StopVoltage + " %)"
|
||
: ""
|
||
}`
|
||
: "Nicht konfiguriert"
|
||
}\n`;
|
||
statusText += `Bahn 2 Start: ${
|
||
data.lane2Start
|
||
? `Konfiguriert${
|
||
data.lane2StartVoltage !== undefined
|
||
? " (Batterystand: " + data.lane2StartVoltage + " %)"
|
||
: ""
|
||
}`
|
||
: "Nicht konfiguriert"
|
||
}\n`;
|
||
statusText += `Bahn 2 Stop: ${
|
||
data.lane2Stop
|
||
? `Konfiguriert${
|
||
data.lane2StopVoltage !== undefined
|
||
? " (Batterystand: " + data.lane2StopVoltage + " %)"
|
||
: ""
|
||
}`
|
||
: "Nicht konfiguriert"
|
||
}\n`;
|
||
|
||
alert(statusText);
|
||
})
|
||
.catch((error) =>
|
||
showMessage("Fehler beim Laden des Button-Status", "error")
|
||
);
|
||
}
|
||
|
||
//location functions
|
||
// Locations laden und Dropdown befüllen
|
||
function loadLocations() {
|
||
const licence = document.getElementById("licencekey").value; // Get the licence key from the input field
|
||
fetch("http://db.reptilfpv.de:3000/api/location/", {
|
||
method: "GET",
|
||
headers: {
|
||
Authorization: `Bearer ${licence}`, // Add Bearer token using licenkey
|
||
},
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
const select = document.getElementById("locationSelect");
|
||
|
||
// Vorhandene Optionen löschen (außer der ersten "Bitte wählen...")
|
||
while (select.children.length > 1) {
|
||
select.removeChild(select.lastChild);
|
||
}
|
||
|
||
// Neue Optionen aus Backend-Response hinzufügen
|
||
// Neue Optionen aus Backend-Response hinzufügen
|
||
data.forEach((location) => {
|
||
const option = document.createElement("option");
|
||
option.value = location.id;
|
||
option.textContent = location.name;
|
||
select.appendChild(option);
|
||
});
|
||
|
||
// Aktuell gespeicherten Standort laden
|
||
loadCurrentLocation();
|
||
})
|
||
.catch((error) => {
|
||
console.log("Locations konnten nicht geladen werden:", error);
|
||
showMessage("Fehler beim Laden der Locations", "error");
|
||
});
|
||
}
|
||
|
||
// Aktuell gespeicherten Standort laden
|
||
function loadCurrentLocation() {
|
||
fetch("/api/get-location")
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.locationId) {
|
||
document.getElementById("locationSelect").value = data.locationId;
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
console.log(
|
||
"Aktueller Standort konnte nicht geladen werden:",
|
||
error
|
||
);
|
||
});
|
||
}
|
||
|
||
// Location-Zugriff basierend auf Lizenz-Level kontrollieren
|
||
function updateLocationAccess(licenseLevel) {
|
||
const locationSubmitBtn = document.getElementById("locationSubmitBtn");
|
||
const locationRestrictionNotice = document.getElementById(
|
||
"locationRestrictionNotice"
|
||
);
|
||
const locationCurrentLevelSpan = document.getElementById(
|
||
"currentLocationLicenseLevel"
|
||
);
|
||
const locationSelect = document.getElementById("locationSelect");
|
||
|
||
const level = parseInt(licenseLevel) || 0;
|
||
|
||
if (level >= 3) {
|
||
// Lizenz Level 3 oder höher - Form aktivieren
|
||
locationSubmitBtn.classList.remove("btn-disabled");
|
||
locationSubmitBtn.disabled = false;
|
||
locationSelect.disabled = false;
|
||
locationRestrictionNotice.style.display = "none";
|
||
} else {
|
||
// Lizenz Level unter 3 - Form deaktivieren
|
||
locationSubmitBtn.classList.add("btn-disabled");
|
||
locationSubmitBtn.disabled = true;
|
||
locationSelect.disabled = true;
|
||
locationRestrictionNotice.style.display = "block";
|
||
locationCurrentLevelSpan.textContent = level;
|
||
}
|
||
}
|
||
|
||
// Location Form Handler
|
||
document
|
||
.getElementById("locationForm")
|
||
.addEventListener("submit", function (e) {
|
||
e.preventDefault();
|
||
|
||
const locationSubmitBtn =
|
||
document.getElementById("locationSubmitBtn");
|
||
|
||
// Lizenz-Level prüfen
|
||
if (
|
||
locationSubmitBtn.disabled ||
|
||
locationSubmitBtn.classList.contains("btn-disabled")
|
||
) {
|
||
showMessage(
|
||
"Standort-Konfiguration erfordert Lizenz Level 3 oder höher",
|
||
"error"
|
||
);
|
||
return;
|
||
}
|
||
|
||
const locationId = document.getElementById("locationSelect").value;
|
||
|
||
if (!locationId) {
|
||
showMessage("Bitte einen Standort auswählen", "error");
|
||
return;
|
||
}
|
||
|
||
// Standort an Backend senden
|
||
fetch("/api/set-location", {
|
||
method: "POST",
|
||
headers: {
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
},
|
||
body: "locationId=" + encodeURIComponent(locationId),
|
||
})
|
||
.then((response) => response.json())
|
||
.then((data) => {
|
||
if (data.success) {
|
||
showMessage("Standort erfolgreich gespeichert!", "success");
|
||
} else {
|
||
showMessage("Fehler beim Speichern des Standorts", "error");
|
||
}
|
||
})
|
||
.catch((error) => showMessage("Verbindungsfehler", "error"));
|
||
});
|
||
|
||
// Status-Nachricht anzeigen
|
||
function showMessage(message, type) {
|
||
const statusDiv = document.getElementById("statusMessage");
|
||
statusDiv.textContent = message;
|
||
statusDiv.className = `status-message status-${type}`;
|
||
statusDiv.style.display = "block";
|
||
|
||
setTimeout(() => {
|
||
statusDiv.style.display = "none";
|
||
}, 5000);
|
||
}
|
||
|
||
// System-Info alle 30 Sekunden aktualisieren
|
||
setInterval(loadSystemInfo, 30000);
|
||
</script>
|
||
</body>
|
||
</html>
|