Dateiverwaltung fuer neon
ulrich
2024-11-20 d64c87fd1796c343894338aba279c3aa672428dc
commit | author | age
031c6b 1 /*
U 2   neon-fm - Dateiverwaltung fuer neon
3   Copyright (C) 2024  Ulrich Hilger
4
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU Affero General Public License as
7   published by the Free Software Foundation, either version 3 of the
8   License, or (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU Affero General Public License for more details.
14
15   You should have received a copy of the GNU Affero General Public License
16   along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18 package de.uhilger.neon.fm;
19
20 import com.sun.net.httpserver.HttpContext;
21 import com.sun.net.httpserver.HttpExchange;
22 import de.uhilger.neon.FileServer;
23 import de.uhilger.neon.HttpHelper;
24 import de.uhilger.neon.HttpResponder;
25 import de.uhilger.fm.Catalog;
26 import java.io.IOException;
27
28 /**
29  * Die Klasse FileCatalog liefert HTTP Methoden zur Erzeugung einer 
30  * Liste von Dateien und Ordnern
31  * 
32  * @author Ulrich Hilger
33  * @version 0.1, 05.11.2024
34  */
35 public class FileCatalog extends AbstractFileActor {
36
37   /**
38    * <p>Diese Methode ist als Reaktion auf einen HTTP GET Aufruf an 
39    * folgenden URL gedacht und liefert eine Liste des Ordnerinhalts 
40    * im JSON-Format</p>
41    * 
42    * <pre>
43    * Ordnerinhalt auflisten:    
44    * http://localhost:[port]/[kontext]/pfad/zum/ordner/
45    * </pre>
46    * 
47    * @param exchange das Objekt mit Infos zu HTTP-Request, -Response usw.
48    */
49   public void list(HttpExchange exchange) {
50     try {
51       init(exchange);
52       HttpContext ctx = exchange.getHttpContext();
53       //String base = ctx.getAttributes().getOrDefault(FileServer.ATTR_FILE_BASE, "").toString();
54       if(base.length() == 0) {
55         new HttpResponder().sendNotFound(exchange, exchange.getRequestURI().toString()); // not found
56       } else {
57         String fName = new HttpHelper().getFileName(exchange);
58         if (fName.endsWith(FileServer.STR_SLASH)) { // Ordnerliste erzeugen
59           String json = new Catalog().list(fName, ctx.getPath(), base);
60           if (null != json) {
61             new HttpResponder().antwortSenden(exchange, HttpResponder.SC_OK, json);
62           } else {
63             new HttpResponder().antwortSenden(exchange, HttpResponder.SC_OK, "{}"); // leere Liste
64           }
65         } else {
66           new FileServer().serveFile(exchange); // Datei ausliefern
67         }
68       }
69     } catch (IOException | IllegalArgumentException ex) {
70       fehlerAntwort(exchange, ex);
71     } finally {
72       free();
73     }
74   }  
75 }