Move web pages to their own package
[Sone.git] / src / main / java / net / pterodactylus / sone / web / pages / GetImagePage.java
1 /*
2  * Sone - GetImagePage.java - Copyright © 2011–2016 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web.pages;
19
20 import java.io.IOException;
21 import java.net.URI;
22
23 import net.pterodactylus.sone.data.TemporaryImage;
24 import net.pterodactylus.sone.web.WebInterface;
25 import net.pterodactylus.sone.web.page.FreenetPage;
26 import net.pterodactylus.sone.web.page.FreenetRequest;
27 import net.pterodactylus.util.web.Response;
28
29 /**
30  * Page that delivers a {@link TemporaryImage} to the browser.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class GetImagePage implements FreenetPage {
35
36         /** The Sone web interface. */
37         private final WebInterface webInterface;
38
39         /**
40          * Creates a new “get image” page.
41          *
42          * @param webInterface
43          *            The Sone web interface
44          */
45         public GetImagePage(WebInterface webInterface) {
46                 this.webInterface = webInterface;
47         }
48
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         public String getPath() {
54                 return "getImage.html";
55         }
56
57         /**
58          * {@inheritDoc}
59          */
60         @Override
61         public boolean isPrefixPage() {
62                 return false;
63         }
64
65         /**
66          * {@inheritDoc}
67          */
68         @Override
69         public Response handleRequest(FreenetRequest request, Response response) throws IOException {
70                 String imageId = request.getHttpRequest().getParam("image");
71                 TemporaryImage temporaryImage = webInterface.getCore().getTemporaryImage(imageId);
72                 if (temporaryImage == null) {
73                         return response.setStatusCode(404).setStatusText("Not found.").setContentType("text/html; charset=utf-8");
74                 }
75                 String contentType= temporaryImage.getMimeType();
76                 return response.setStatusCode(200).setStatusText("OK").setContentType(contentType).addHeader("Content-Disposition", "attachment; filename=" + temporaryImage.getId() + "." + contentType.substring(contentType.lastIndexOf('/') + 1)).write(temporaryImage.getImageData());
77         }
78
79         /**
80          * {@inheritDoc}
81          */
82         @Override
83         public boolean isLinkExcepted(URI link) {
84                 return false;
85         }
86
87 }