| | |
| | | */ |
| | | package de.uhilger.mediaz.api; |
| | | |
| | | import com.sun.net.httpserver.Headers; |
| | | import com.sun.net.httpserver.HttpExchange; |
| | | import de.uhilger.mediaz.App; |
| | | import de.uhilger.mediaz.Server; |
| | |
| | | import de.uhilger.mediaz.store.StorageFile; |
| | | import de.uhilger.mediaz.store.Track; |
| | | import java.io.File; |
| | | import java.io.FileFilter; |
| | | import java.io.IOException; |
| | | import java.io.OutputStream; |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.Collections; |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | import java.util.logging.Level; |
| | | import java.util.logging.Logger; |
| | | |
| | |
| | | public ListFileHandler(String absoluteDirectoryPathAndName) { |
| | | super(absoluteDirectoryPathAndName); |
| | | /* |
| | | Nachfolgend hart codiert die Ermittlung von Dateifiltern. |
| | | Ermittlung von Dateifiltern. |
| | | Sie werden erwartet in den Einstellungen 'audioexts' und 'videoexts' |
| | | jeweils als Dateierweiterungen mit Komma getrennt |
| | | z.B. "mp4,m4v" |
| | | */ |
| | | FileStorage fs = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF))); |
| | | initMap(fs, "audioexts", StorageFile.TYP_AUDIO); |
| | | initMap(fs, "videoexts", StorageFile.TYP_VIDEO); |
| | | initMap(fs, App.getRs(App.RB_AUDIOEXTS), StorageFile.TYP_AUDIO); |
| | | initMap(fs, App.getRs(App.RB_VIDEOEXTS), StorageFile.TYP_VIDEO); |
| | | } |
| | | |
| | | private void initMap(Storage s, String key, String typ) { |
| | |
| | | public void handle(HttpExchange e) throws IOException { |
| | | String path = e.getRequestURI().toString(); |
| | | logger.fine(path); |
| | | if(path.endsWith(App.getRs(Server.RB_SLASH))) { |
| | | if(path.endsWith(Server.SLASH)) { |
| | | String fName = getFileName(e); |
| | | logger.fine(fName); |
| | | File dir = new File(fileBase, fName); |
| | | logger.fine(dir.getAbsolutePath()); |
| | | File[] files = dir.listFiles(); |
| | | File[] files = dir.listFiles(new FileFilter() { |
| | | @Override |
| | | public boolean accept(File pathname) { |
| | | Set keys = extMap.keySet(); |
| | | String fname = pathname.getName(); |
| | | int pos = fname.lastIndexOf("."); |
| | | String ext = fname.substring(pos+1); |
| | | return keys.contains(ext) || pathname.isDirectory(); |
| | | } |
| | | }); |
| | | Arrays.sort(files); |
| | | ArrayList list = new ArrayList(); |
| | | if(files != null) { |
| | | for(File file : files) { |
| | | StorageFile sf = new StorageFile(); |
| | | String fname = file.getName(); |
| | | sf.setName(fname); |
| | | sf.setTitelAnzName(fname); |
| | | if(file.isDirectory()) { |
| | | sf.setTyp(StorageFile.TYP_FOLDER); |
| | | } else { |
| | |
| | | list.add(sf); |
| | | } |
| | | } |
| | | //Collections.sort(list); |
| | | String json = jsonWithCustomType(list, "Medialiste"); |
| | | logger.fine(json); |
| | | Headers headers = e.getResponseHeaders(); |
| | | headers.add("Content-Type", "application/json"); |
| | | e.sendResponseHeaders(200, json.length()); |
| | | OutputStream os = e.getResponseBody(); |
| | | os.write(json.getBytes()); |
| | |
| | | if(sf.getTyp().equalsIgnoreCase(StorageFile.TYP_AUDIO)) { |
| | | Track track = new Track(file); |
| | | sf.setInterpret(track.getArtist()); |
| | | sf.setTitelAnzName(track.getTitle()); |
| | | String trackTitel = track.getTitle(); |
| | | if(trackTitel != null && trackTitel.length() > 0) { |
| | | sf.setTitelAnzName(trackTitel); |
| | | } |
| | | sf.setAlbum(track.getAlbum()); |
| | | } |
| | | } |