X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FReloadingPage.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FReloadingPage.java;h=0000000000000000000000000000000000000000;hb=de7568a82eb4150bf6d2b0553841b7b69f84c968;hp=bc1881643e36a5d4534983f8bbdf0bf5b1e1a9a2;hpb=9acbc5bdec4ccb752e0856a501568b0bb6161579;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/ReloadingPage.java b/src/main/java/net/pterodactylus/sone/web/ReloadingPage.java deleted file mode 100644 index bc18816..0000000 --- a/src/main/java/net/pterodactylus/sone/web/ReloadingPage.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Sone - ReloadingPage.java - Copyright © 2010–2016 David Roden - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package net.pterodactylus.sone.web; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStream; - -import net.pterodactylus.util.io.StreamCopier; -import net.pterodactylus.util.web.Page; -import net.pterodactylus.util.web.Request; -import net.pterodactylus.util.web.Response; - -/** - * {@link Page} implementation that delivers static files from the filesystem. - * - * @param - * The type of the request - * @author David ‘Bombe’ Roden - */ -public class ReloadingPage implements Page { - - private final String pathPrefix; - private final String filesystemPath; - private final String mimeType; - - public ReloadingPage(String pathPrefix, String filesystemPathPrefix, String mimeType) { - this.pathPrefix = pathPrefix; - this.filesystemPath = filesystemPathPrefix; - this.mimeType = mimeType; - } - - /** - * {@inheritDoc} - */ - @Override - public String getPath() { - return pathPrefix; - } - - /** - * {@inheritDoc} - */ - @Override - public boolean isPrefixPage() { - return true; - } - - /** - * {@inheritDoc} - */ - @Override - public Response handleRequest(REQ request, Response response) throws IOException { - String path = request.getUri().getPath(); - int lastSlash = path.lastIndexOf('/'); - String filename = path.substring(lastSlash + 1); - try (InputStream fileInputStream = new FileInputStream(new File(filesystemPath, filename)); - OutputStream contentOutputStream = response.getContent()) { - StreamCopier.copy(fileInputStream, contentOutputStream); - } catch (FileNotFoundException fnfe1) { - return response.setStatusCode(404).setStatusText("Not found."); - } - return response.setStatusCode(200).setStatusText("OK").setContentType(mimeType); - } -}