Persoenliche Mediazentrale
ulrich
2021-04-08 8e2578a22a4cf2749d6d884e231335287069f490
src/de/uhilger/mediaz/api/ListHandler.java
@@ -49,10 +49,8 @@
    String path = e.getRequestURI().toString();
    String[] elems = path.split(App.getRs(Server.RB_SLASH));
    String plname = elems[elems.length - 1];
    logger.finer("GET plname: " + plname);
    FileStorage fs = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF)));
    String json = fs.readJson(FileStorage.ST_ABSPIELLISTE, plname);
    logger.finer("PL json: " + json);
    return json;
  }
@@ -61,12 +59,8 @@
    String path = e.getRequestURI().toString();
    String[] elems = path.split(App.getRs(Server.RB_SLASH));
    String response = "ListHandler.put: ungueltiger URL";
    logger.finer("elems.length: " + elems.length);
    for(String elem : elems) {
      logger.finer("elem: " + elem);
    }
    switch(elems.length) {
      case 5:
      case 5: // ohne nr am Ende
        response = addTitel(e, elems[4]);
        break;
        
@@ -78,16 +72,12 @@
  }
  
  private String addTitel(HttpExchange e, String plname) throws IOException {
    //String plname = elems[elems.length - 1];
    logger.finer("plname: " + plname);
    FileStorage fs = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF)));
    Entity entity = fs.read(FileStorage.ST_ABSPIELLISTE, plname);
    String response = "Titel konnte nicht hinzugefuegt werden.";
    if(entity instanceof Abspielliste) {
      Abspielliste aliste = (Abspielliste) entity;
      logger.finer("aliste: " + aliste.getName());
      String titelJson = bodyLesen(e);
      logger.finer("titelJson: " + titelJson);
      Gson gson = new Gson();
      Object o = gson.fromJson(titelJson, fs.typeFromName(Titel.class.getSimpleName()).getType());
      if(o instanceof Titel) {