Persoenliche Mediazentrale
ulrich
2021-04-26 a48ca301dc5a00b724cb87492be39df2bb40b6f2
commit | author | age
86bbf7 1 /*
94b1c2 2   Tango - Personal Media Center
cf6509 3   Copyright (C) 2021  Ulrich Hilger
U 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  */
94b1c2 18 package de.uhilger.tango.api;
86bbf7 19
095119 20 import com.sun.net.httpserver.Headers;
86bbf7 21 import com.sun.net.httpserver.HttpExchange;
94b1c2 22 import de.uhilger.tango.App;
U 23 import de.uhilger.tango.Server;
24 import de.uhilger.tango.entity.Einstellung;
25 import de.uhilger.tango.entity.Entity;
26 import de.uhilger.tango.store.FileStorage;
27 import de.uhilger.tango.store.Storage;
28 import de.uhilger.tango.store.StorageFile;
86bbf7 29 import java.io.File;
be4056 30 import java.io.FileFilter;
86bbf7 31 import java.io.IOException;
U 32 import java.io.OutputStream;
33 import java.util.ArrayList;
d4d091 34 import java.util.Arrays;
dce2c7 35 import java.util.HashMap;
U 36 import java.util.Map;
be4056 37 import java.util.Set;
dce2c7 38 import java.util.logging.Level;
86bbf7 39 import java.util.logging.Logger;
a48ca3 40 import org.farng.mp3.MP3File;
U 41 import org.farng.mp3.TagException;
42 import org.farng.mp3.id3.ID3v1;
86bbf7 43
U 44 /**
45  *
46  * @author ulrich
47  */
48 public class ListFileHandler extends FileHandler {
49   
50   /* Der Logger fuer diesen ListFileHandler */
51   private static final Logger logger = Logger.getLogger(ListFileHandler.class.getName());
52   
630b44 53   private static final String[] specialChars = {new String("\u00c4"), new String("\u00d6"), 
U 54       new String("\u00dc"), new String("\u00e4"), new String("\u00f6"), new String("\u00fc"), new String("\u00df")};
55   
dce2c7 56   Map extMap = new HashMap();
U 57   
86bbf7 58   public ListFileHandler(String absoluteDirectoryPathAndName) {
U 59     super(absoluteDirectoryPathAndName);
dce2c7 60     /*
0e9cd3 61       Ermittlung von Dateifiltern. 
dce2c7 62       Sie werden erwartet in den Einstellungen 'audioexts' und 'videoexts'
U 63       jeweils als Dateierweiterungen mit Komma getrennt
64       z.B. "mp4,m4v"
65     */
66     FileStorage fs = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF)));
0e9cd3 67     initMap(fs, App.getRs(App.RB_AUDIOEXTS), StorageFile.TYP_AUDIO);
U 68     initMap(fs, App.getRs(App.RB_VIDEOEXTS), StorageFile.TYP_VIDEO);
86bbf7 69   }
U 70
dce2c7 71   private void initMap(Storage s, String key, String typ) {
U 72     Entity e = s.read(Einstellung.class.getSimpleName(), key);
73     if(e instanceof Einstellung) {
74       String[] exts = ((Einstellung) e).getValue().split(",");
75       for(String ext : exts) {
76         extMap.put(ext, typ);
77       }
78     }
79   }
80   
86bbf7 81   @Override
U 82   public void handle(HttpExchange e) throws IOException {
83     String path = e.getRequestURI().toString();
84     logger.fine(path);
0e9cd3 85     if(path.endsWith(Server.SLASH)) {
86bbf7 86       String fName = getFileName(e);
U 87       logger.fine(fName);
88       File dir = new File(fileBase, fName);
89       logger.fine(dir.getAbsolutePath());
be4056 90       File[] files = dir.listFiles(new FileFilter() {
U 91         @Override
92         public boolean accept(File pathname) {
93           Set keys = extMap.keySet();
94           String fname = pathname.getName();
95           int pos = fname.lastIndexOf(".");
96           String ext = fname.substring(pos+1);          
97           return keys.contains(ext) || pathname.isDirectory();
98         }
99       });
d4d091 100       Arrays.sort(files);      
86bbf7 101       ArrayList list = new ArrayList();
U 102       if(files != null) {
103         for(File file : files) {
104           StorageFile sf = new StorageFile();
7c22a2 105           String fname = file.getName();
U 106           sf.setName(fname);
b56bb3 107           sf.setTitelAnzName(fname);
86bbf7 108           if(file.isDirectory()) {
822ddf 109             sf.setTyp(StorageFile.TYP_FOLDER);
86bbf7 110           } else {
dce2c7 111             int pos = fname.lastIndexOf(".");
U 112             String ext = fname.substring(pos+1);
113             logger.log(Level.FINE, "ext: {0}", ext);
114             Object o = extMap.get(ext);
115             if(o instanceof String) {
116               sf.setTyp(o.toString());
a48ca3 117               getMetadata(file, sf);
7c22a2 118             } else {
U 119               sf.setTyp(StorageFile.TYP_FILE);
120             }
86bbf7 121           }
U 122           list.add(sf);
123         }
124       }
d4d091 125       //Collections.sort(list);
630b44 126       String json = escapeHtml(jsonWithCustomType(list, "Medialiste"));
U 127       
86bbf7 128       logger.fine(json);
095119 129       Headers headers = e.getResponseHeaders();
630b44 130       headers.add("Content-Type", "application/json; charset=UTF-8");
86bbf7 131       e.sendResponseHeaders(200, json.length());
U 132       OutputStream os = e.getResponseBody();
133       os.write(json.getBytes());
134       os.close();        
135     } else {
136       super.handle(e);
137     }
138   }
139   
630b44 140   public String escapeHtml(String text) {
U 141     text = text.replace(specialChars[0], "Ae");
142     text = text.replace(specialChars[1], "Oe");
143     text = text.replace(specialChars[2], "Ue");
144     text = text.replace(specialChars[3], "ae");
145     text = text.replace(specialChars[4], "oe");
146     text = text.replace(specialChars[5], "ue");
147     text = text.replace(specialChars[6], "ss");
148     
149     /*
150     text = text.replace(specialChars[0], "&Auml;");
151     text = text.replace(specialChars[1], "&Ouml;");
152     text = text.replace(specialChars[2], "&Uuml;");
153     text = text.replace(specialChars[3], "&auml;");
154     text = text.replace(specialChars[4], "&ouml;");
155     text = text.replace(specialChars[5], "&uuml;");
156     text = text.replace(specialChars[6], "&szlig;");
157     */
158     return text;
159   }
160   
a48ca3 161   private void getMetadata(File file, StorageFile sf) {
37eadf 162     if(sf.getTyp().equalsIgnoreCase(StorageFile.TYP_AUDIO)) {
a48ca3 163       try {
U 164         MP3File mp3 = new MP3File(file);
165         ID3v1 tag = mp3.getID3v1Tag();
166         sf.setInterpret(tag.getArtist());
167         String trackTitel = tag.getTitle();
168         if(trackTitel != null && trackTitel.length() > 0) {
169           sf.setTitelAnzName(trackTitel);
170         }
171         sf.setAlbum(tag.getAlbumTitle());
172       } catch (IOException ex) {
173         Logger.getLogger(ListFileHandler.class.getName()).log(Level.SEVERE, null, ex);
174       } catch (TagException ex) {
175         Logger.getLogger(ListFileHandler.class.getName()).log(Level.SEVERE, null, ex);
b56bb3 176       }
37eadf 177     }
U 178   }
86bbf7 179   
U 180 }