| | |
| | | import de.uhilger.fm.Renamer; |
| | | import de.uhilger.fm.Inflator; |
| | | import de.uhilger.fm.Deflator; |
| | | import de.uhilger.fm.Rotor; |
| | | import java.io.File; |
| | | import java.io.IOException; |
| | | import net.coobird.thumbnailator.Thumbnails; |
| | | |
| | | /** |
| | | * Aenderungen an bestehenden Dateien. |
| | |
| | | private static final String P_DUPLICATE = "duplicate"; |
| | | private static final String P_ZIP = "zip"; |
| | | private static final String P_UNZIP = "unzip"; |
| | | private static final String P_ROTATE = "rotate"; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * HTTP PUT /pfad/zum/ordner?zip' packt den Ordner |
| | | * |
| | | * HTTP PUT /pfad/zur/datei.zip?unzip' entpackt eine Datei |
| | | * |
| | | * HTTP PUT /pfad/zur/datei.jpg?rotate=180 rotiert eine Bilddatei (- links, sonst rechts) |
| | | * |
| | | * Eine Dateiliste im Body sieht z.B. wie folgt aus |
| | | * ["test.txt","dok","weitere-datei.bin","bild.jpg"] |
| | |
| | | //String path = exchange.getRequestURI().toString(); |
| | | zipAntwort(exchange, new Inflator().extractZipfile(fileName, /*path,*/ base)); |
| | | break; |
| | | case P_ROTATE: |
| | | Rotor r = new Rotor(); |
| | | r.rotateImgFiles(file, Integer.parseInt(params[1])); |
| | | antwort(exchange, HttpResponder.SC_OK, fileName + " rotiert."); |
| | | break; |
| | | default: |
| | | antwort(exchange, HttpResponder.SC_NOT_FOUND, "ungueltige Anfrage"); |
| | | break; |
| | |
| | | speichern(exchange); |
| | | } |
| | | } |
| | | } catch (IOException | IllegalArgumentException ex) { |
| | | } catch (Exception ex) { |
| | | fehlerAntwort(exchange, ex); |
| | | } finally { |
| | | free(); |
| | |
| | | antwort(exchange, HttpResponder.SC_UNPROCESSABLE_ENTITY, antw); |
| | | } |
| | | } |
| | | |
| | | |
| | | } |