Add interface between templates and toadlets.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / page / CSSPage.java
1 /*
2  * shortener - CSSPage.java - Copyright © 2010 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.page;
19
20 import java.io.InputStream;
21
22 /**
23  * {@link Page} implementation that delivers CSS files from the class path.
24  * 
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public class CSSPage implements Page {
28
29         /** The prefix for {@link #getPath()}. */
30         private final String pathPrefix;
31
32         /** The path used as prefix when loading resources. */
33         private final String resourcePathPrefix;
34
35         /**
36          * Creates a new CSS page.
37          * 
38          * @param pathPrefix
39          *            The prefix for {@link #getPath()}
40          * @param resourcePathPrefix
41          *            The path prefix when loading resources
42          */
43         public CSSPage(String pathPrefix, String resourcePathPrefix) {
44                 this.pathPrefix = pathPrefix;
45                 this.resourcePathPrefix = resourcePathPrefix;
46         }
47
48         /**
49          * {@inheritDoc}
50          */
51         @Override
52         public String getPath() {
53                 return pathPrefix;
54         }
55
56         /**
57          * {@inheritDoc}
58          */
59         @Override
60         public Response handleRequest(Request request) {
61                 String path = request.getURI().getPath();
62                 int lastSlash = path.lastIndexOf('/');
63                 String cssFilename = path.substring(lastSlash + 1);
64                 InputStream cssInputStream = getClass().getResourceAsStream(resourcePathPrefix + cssFilename);
65                 if (cssInputStream == null) {
66                         return new Response(404, "Not found.", null, (String) null);
67                 }
68                 return new Response(200, "OK", "text/css", null, cssInputStream);
69         }
70
71 }