+++ /dev/null
-/*
- * 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 <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.web.pages;
-
-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 <REQ>
- * The type of the request
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
- */
-public class ReloadingPage<REQ extends Request> implements Page<REQ> {
-
- 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);
- }
-}
--- /dev/null
+package net.pterodactylus.sone.web.pages
+
+import net.pterodactylus.util.web.Page
+import net.pterodactylus.util.web.Request
+import net.pterodactylus.util.web.Response
+import java.io.File
+
+/**
+ * [Page] implementation that delivers static files from the filesystem.
+ */
+class ReloadingPage<R: Request>(private val prefix: String, private val path: String, private val mimeType: String): Page<R> {
+
+ override fun isPrefixPage() = true
+
+ override fun getPath() = prefix
+
+ override fun handleRequest(request: R, response: Response): Response {
+ val filename = request.uri.path.split("/").last()
+ File(path, filename).also { file ->
+ if (file.exists()) {
+ response.content.use { output ->
+ file.forEachBlock { buffer, bytesRead ->
+ output.write(buffer, 0, bytesRead)
+ }
+ }
+ response.statusCode = 200
+ response.contentType = mimeType
+ } else {
+ response.statusCode = 404
+ response.statusText = "Not found"
+ }
+ }
+ return response
+ }
+
+}
class ReloadingPageTest : WebPageTest() {
@Rule @JvmField val tempFolder = TemporaryFolder()
- private val folder by lazy { tempFolder.newFolder() }
+ private val folder by lazy { tempFolder.newFolder()!! }
private val page by lazy { ReloadingPage<FreenetRequest>("/prefix/", folder.path, "text/plain") }
@Test
request("/prefix/path/file.txt")
page.handleRequest(freenetRequest, response)
assertThat(response.statusCode, equalTo(404))
+ assertThat(response.statusText, equalTo("Not found"))
}
@Test
request("/prefix/path/file.txt")
page.handleRequest(freenetRequest, response)
assertThat(response.statusCode, equalTo(200))
+ assertThat(response.statusText, equalTo("OK"))
assertThat(response.contentType, equalTo("text/plain"))
assertThat(responseBytes, equalTo("Hello\nWorld\n".toByteArray()))
}