Persoenliche Mediazentrale
undisclosed
2023-01-23 03b95f100b605458e5bf2995e955882d9aa51868
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;
    }
  }
}