Dateiverwaltung fuer neon
ulrich
2024-11-11 ca6de6f21612c7da34113c4429d7c30bbfdb3b65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
  neon-fm - Dateiverwaltung fuer neon
  Copyright (C) 2024  Ulrich Hilger
 
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Affero General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version.
 
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Affero General Public License for more details.
 
  You should have received a copy of the GNU Affero General Public License
  along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
package de.uhilger.neon.fm;
 
import com.sun.net.httpserver.HttpExchange;
import de.uhilger.neon.FileServer;
import de.uhilger.neon.HttpResponder;
import de.uhilger.fm.FileHelper;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 *
 * @author Ulrich Hilger
 * @version 0.1, 08.11.2024
 */
public class FileCreator extends AbstractFileActor {
 
  public void run(HttpExchange exchange) {
    try {
      super.run(exchange);
      if (fileName.endsWith(FileServer.STR_SLASH)) { // es ist ein Ordner
        if (!file.exists()) {
          file.mkdir();
          antwort(exchange, HttpResponder.SC_OK, file.getAbsolutePath());
        } else {
          String antw = "Ordner existiert bereits.";
          antwort(exchange, HttpResponder.SC_UNPROCESSABLE_ENTITY, antw);
        }
      } else { // es ist eine Datei
        if (file.exists()) {
          FileHelper trans = new FileHelper();
          file = trans.getNewFileName(file);
        }
        speichern(exchange);
      }            
    } catch (IOException ex) {
      Logger.getLogger(FileCreator.class.getName()).log(Level.SEVERE, ex.getMessage(), ex);
    } finally {
      free();
    }
  }
}