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