From 1ef98569623b58f8b4e2b5863cea02bfb1e91a98 Mon Sep 17 00:00:00 2001
From: ulrich
Date: Thu, 21 Nov 2024 22:38:22 +0000
Subject: [PATCH] 'Hier spielen' berichtigt
---
src/de/uhilger/tango/api/AbstractHandler.java | 32 +++++++++++++++++++++++++++++++-
1 files changed, 31 insertions(+), 1 deletions(-)
diff --git a/src/de/uhilger/tango/api/AbstractHandler.java b/src/de/uhilger/tango/api/AbstractHandler.java
index 9afb94e..d767353 100644
--- a/src/de/uhilger/tango/api/AbstractHandler.java
+++ b/src/de/uhilger/tango/api/AbstractHandler.java
@@ -20,11 +20,16 @@
import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
+import de.uhilger.tango.App;
+import de.uhilger.tango.entity.Einstellung;
+import de.uhilger.tango.entity.Entity;
+import de.uhilger.tango.store.Storage;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
+import java.util.ResourceBundle;
import java.util.logging.Logger;
@@ -53,6 +58,8 @@
public static final int RTC_NOT_FOUND = 404;
protected int returnCode;
+
+ private ResourceBundle rb;
public AbstractHandler() {
this.returnCode = RTC_OK;
@@ -126,7 +133,7 @@
return "nicht unterstuetzt";
}
- protected String post(HttpExchange e) {
+ protected String post(HttpExchange e) throws IOException {
setReturnCode(RTC_NOT_FOUND);
return "nicht unterstuetzt";
}
@@ -144,4 +151,27 @@
protected abstract boolean delete(HttpExchange e);
*/
+ protected String getResString(String key) {
+ if(rb == null) {
+ rb = ResourceBundle.getBundle(App.RB_NAME);
+ }
+ return rb.getString(key);
+ }
+
+ protected String getEinstellung(Storage s, String key, String standardWert) {
+ Entity entity = s.read(Einstellung.class.getSimpleName(), key);
+ if (entity instanceof Einstellung) {
+ Einstellung einstellung = (Einstellung) entity;
+ Object o = einstellung.getValue();
+ if(o instanceof String) {
+ return o.toString();
+ } else {
+ return standardWert;
+ }
+ } else {
+ return standardWert;
+ }
+ }
+
+
}
--
Gitblit v1.9.3