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