Remove image from previous album, if set.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / GetImagePage.java
1 /*
2  * Sone - GetImagePage.java - Copyright © 2011 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;
19
20 import net.pterodactylus.sone.data.TemporaryImage;
21 import net.pterodactylus.sone.web.page.Page;
22
23 /**
24  * Page that delivers a {@link TemporaryImage} to the browser.
25  *
26  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
27  */
28 public class GetImagePage implements Page {
29
30         /** The Sone web interface. */
31         private final WebInterface webInterface;
32
33         /**
34          * Creates a new “get image” page.
35          *
36          * @param webInterface
37          *            The Sone web interface
38          */
39         public GetImagePage(WebInterface webInterface) {
40                 this.webInterface = webInterface;
41         }
42
43         /**
44          * {@inheritDoc}
45          */
46         @Override
47         public String getPath() {
48                 return "getImage.html";
49         }
50
51         /**
52          * {@inheritDoc}
53          */
54         @Override
55         public Response handleRequest(Request request) {
56                 String imageId = request.getHttpRequest().getParam("image");
57                 TemporaryImage temporaryImage = webInterface.getCore().getTemporaryImage(imageId);
58                 if (temporaryImage == null) {
59                         return new Response(404, "Not found.", "text/plain; charset=utf-8", "");
60                 }
61                 return new Response(200, "OK", temporaryImage.getMimeType(), temporaryImage.getImageData()).setHeader("Content-Disposition", "attachment; filename=" + temporaryImage.getId() + "." + temporaryImage.getMimeType().substring(temporaryImage.getMimeType().lastIndexOf("/") + 1));
62         }
63
64 }