Ultrakompakter HTTP Server
ulrich
7 days ago 90ccfbd7875b7f1438f8b4268010e40b2c91b645
commit | author | age
e58690 1 /*
U 2   neon - Embeddable HTTP Server based on jdk.httpserver
3   Copyright (C) 2024  Ulrich Hilger
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/>.
17  */
18 package de.uhilger.neon;
19
20 import com.sun.net.httpserver.Headers;
21 import com.sun.net.httpserver.HttpExchange;
22 import java.io.File;
23 import java.io.FileInputStream;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.io.OutputStream;
27 import java.nio.file.Files;
28 import java.text.SimpleDateFormat;
29 import java.util.Date;
30
31 /**
32  * Helfer zur Beantwortung von HTTP-Anfragen
33  * 
34  * @author Ulrich Hilger
35  * @version 1, 03.06.2021
36  */
37 public class HttpResponder {
38   
39   /* Headernamen */
40   public static final String ACCEPT_RANGES_HEADER = "Accept-Ranges";
41   public static final String CONTENT_LENGTH = "Content-Length";
42   public static final String CONTENT_TYPE = "Content-Type";
43   public static final String LAST_MODIFIED_DATE_HEADER = "Last-Modified";
44
45   /* Statuscodes */
46   public static final int SC_OK = 200;
47   public static final int SC_NOT_FOUND = 404;
90ccfb 48   public static final int SC_METHOD_NOT_ALLOWED = 405;
U 49   public static final int SC_INTERNAL_SERVER_ERROR = 500;
50
e58690 51   /* String Konstanten */
U 52   public static final String STR_BYTES = "bytes";
53   public static final String STR_NOT_FOUND = " not found.";
54   public static final String LM_PATTERN = "EEE, dd MMM yyyy HH:mm:ss zzz";
55   
56   /**
57    * Den Inhalt einer Datei ausliefern
58    *
59    * @param e das Objekt mit Methoden zur Untersuchung der Anfrage sowie zum
60    * Anfertigen und Senden der Antwort
61    * @param file die Datei, deren Inhalt ausgeliefert werden soll
62    * @throws IOException falls etwas schief geht entsteht dieser Fehler
63    */
64   public void serveFile(HttpExchange e, File file) throws IOException {
65     if (file.exists()) {
66       setHeaders(e, file);
67       e.getResponseHeaders().set(CONTENT_LENGTH, Long.toString(file.length()));
68       e.sendResponseHeaders(SC_OK, file.length());
69       if(HttpHelper.HTTP_GET.equalsIgnoreCase(e.getRequestMethod())) {
70         InputStream in = new FileInputStream(file);
71         OutputStream os = e.getResponseBody();        
72         write(in, os);
73         finish(in, os);
74       }
75     } else {
76       sendNotFound(e, file.getName());
77     }
78   }
79
80   public void write(InputStream in, OutputStream out) throws IOException {
81     byte[] b = new byte[4096];
82     int bytesRead = in.read(b);
83     while (bytesRead > -1) {
84       out.write(b, 0, bytesRead);
85       bytesRead = in.read(b);
86     }
87   }
88   
89   public void finish(InputStream in, OutputStream out) throws IOException {
90     in.close();
91     finish(out);
92   }
93
94   public void finish(OutputStream out) throws IOException {
95     out.flush();
96     out.close();
97   }
98   
99   /**
100    * Die Header erzeugen, die unabh&auml;ngig davon, ob der ganze 
101    * Inhalt oder nur Teile davon ausgeliefert werden sollen, in der 
102    * Antwort stehen sollen 
103    * 
104    * @param e das Objekt mit Methoden zur Untersuchung der Anfrage sowie zum
105    * Anfertigen und Senden der Antwort
106    * @param file  die Datei, f&uuml;r die die Header gelten
107    * @throws IOException falls etwas schief geht entsteht dieser Fehler
108    */
109   public void setHeaders(HttpExchange e, File file) throws IOException {
110     Headers resHeaders = e.getResponseHeaders();
111     resHeaders.add(ACCEPT_RANGES_HEADER, STR_BYTES);
112     String mimeType = Files.probeContentType(file.toPath());
113     if (mimeType != null) {
114       resHeaders.add(CONTENT_TYPE, mimeType);
115     }
116     SimpleDateFormat sdf = new SimpleDateFormat(LM_PATTERN);
117     Date date = new Date(file.lastModified());
118     resHeaders.add(LAST_MODIFIED_DATE_HEADER, sdf.format(date));
119   }
120
121   /**
122    * Eine nicht gefunden Antwort senden
123    *
124    * @param e das Objekt mit Methoden zur Untersuchung der Anfrage sowie zum
125    * Anfertigen und Senden der Antwort
126    * @param fname Name der Datei, die nicht gefunden wurde
127    * @throws IOException falls etwas schief geht entsteht dieser Fehler
128    */
129   public void sendNotFound(HttpExchange e, String fname) throws IOException {
130     antwortSenden(e, SC_NOT_FOUND, fname + STR_NOT_FOUND);
131   }  
132
133   public void antwortSenden(HttpExchange exchange, int code, String antwort) throws IOException {
134     byte[] bytes = antwort.getBytes();
135     exchange.sendResponseHeaders(code, bytes.length);
136     OutputStream os = exchange.getResponseBody();
137     os.write(bytes);
138     finish(os);
139   }
140
141
142   
143 }