Persoenliche Mediazentrale
ulrich
2021-04-07 dce2c79a03b834887f4da33b090a430e9756aac1
commit | author | age
86bbf7 1 /*
cf6509 2   Mediazentrale - Personal Media Center
U 3   Copyright (C) 2021  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/>.
86bbf7 17  */
U 18 package de.uhilger.mediaz.api;
19
20 import com.sun.net.httpserver.HttpExchange;
21 import de.uhilger.mediaz.App;
22 import de.uhilger.mediaz.Server;
dce2c7 23 import de.uhilger.mediaz.entity.Einstellung;
U 24 import de.uhilger.mediaz.entity.Entity;
25 import de.uhilger.mediaz.store.FileStorage;
26 import de.uhilger.mediaz.store.Storage;
86bbf7 27 import de.uhilger.mediaz.store.StorageFile;
U 28 import java.io.File;
29 import java.io.IOException;
30 import java.io.OutputStream;
31 import java.util.ArrayList;
dce2c7 32 import java.util.Arrays;
U 33 import java.util.HashMap;
34 import java.util.List;
35 import java.util.Map;
36 import java.util.logging.Level;
86bbf7 37 import java.util.logging.Logger;
U 38
39 /**
40  *
41  * @author ulrich
42  */
43 public class ListFileHandler extends FileHandler {
44   
45   /* Der Logger fuer diesen ListFileHandler */
46   private static final Logger logger = Logger.getLogger(ListFileHandler.class.getName());
47   
dce2c7 48   Map extMap = new HashMap();
U 49   
86bbf7 50   public ListFileHandler(String absoluteDirectoryPathAndName) {
U 51     super(absoluteDirectoryPathAndName);
dce2c7 52     /*
U 53       Nachfolgend hart codiert die Ermittlung von Dateifiltern. 
54       Sie werden erwartet in den Einstellungen 'audioexts' und 'videoexts'
55       jeweils als Dateierweiterungen mit Komma getrennt
56       z.B. "mp4,m4v"
57     */
58     FileStorage fs = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF)));
59     initMap(fs, "audioexts", StorageFile.TYP_AUDIO);
60     initMap(fs, "videoexts", StorageFile.TYP_VIDEO);
86bbf7 61   }
U 62
dce2c7 63   private void initMap(Storage s, String key, String typ) {
U 64     Entity e = s.read(Einstellung.class.getSimpleName(), key);
65     if(e instanceof Einstellung) {
66       String[] exts = ((Einstellung) e).getValue().split(",");
67       for(String ext : exts) {
68         extMap.put(ext, typ);
69       }
70     }
71   }
72   
86bbf7 73   @Override
U 74   public void handle(HttpExchange e) throws IOException {
75     String path = e.getRequestURI().toString();
76     logger.fine(path);
77     if(path.endsWith(App.getRs(Server.RB_SLASH))) {
78       String fName = getFileName(e);
79       logger.fine(fName);
80       File dir = new File(fileBase, fName);
81       logger.fine(dir.getAbsolutePath());
82       File[] files = dir.listFiles();
83       ArrayList list = new ArrayList();
84       if(files != null) {
85         for(File file : files) {
86           StorageFile sf = new StorageFile();
7c22a2 87           String fname = file.getName();
U 88           sf.setName(fname);
86bbf7 89           if(file.isDirectory()) {
822ddf 90             sf.setTyp(StorageFile.TYP_FOLDER);
86bbf7 91           } else {
dce2c7 92             int pos = fname.lastIndexOf(".");
U 93             String ext = fname.substring(pos+1);
94             logger.log(Level.FINE, "ext: {0}", ext);
95             Object o = extMap.get(ext);
96             if(o instanceof String) {
97               sf.setTyp(o.toString());
7c22a2 98             } else {
U 99               sf.setTyp(StorageFile.TYP_FILE);
100             }
86bbf7 101           }
U 102           list.add(sf);
103         }
104       }
105       String json = jsonWithCustomType(list, "Medialiste");
106       logger.fine(json);
107       e.sendResponseHeaders(200, json.length());
108       OutputStream os = e.getResponseBody();
109       os.write(json.getBytes());
110       os.close();        
111     } else {
112       super.handle(e);
113     }
114   }
115   
116   
117 }