Don’t add a class “null” to an image if there is to be none
[Sone.git] / src / main / java / net / pterodactylus / sone / template / ImageLinkFilter.java
1 /*
2  * Sone - ImageLinkFilter.java - Copyright © 2011–2013 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.template;
19
20 import static java.lang.Integer.MAX_VALUE;
21 import static java.lang.String.valueOf;
22 import static net.pterodactylus.sone.utils.NumberParsers.parseInt;
23
24 import java.io.StringReader;
25 import java.io.StringWriter;
26 import java.util.Map;
27
28 import net.pterodactylus.sone.core.Core;
29 import net.pterodactylus.sone.data.Image;
30 import net.pterodactylus.util.template.Filter;
31 import net.pterodactylus.util.template.Template;
32 import net.pterodactylus.util.template.TemplateContext;
33 import net.pterodactylus.util.template.TemplateContextFactory;
34 import net.pterodactylus.util.template.TemplateParser;
35
36 import com.google.common.base.Function;
37 import com.google.common.base.Optional;
38
39 /**
40  * Template filter that turns an {@link Image} into an HTML &lt;img&gt; tag,
41  * using some parameters to influence parameters of the image.
42  *
43  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
44  */
45 public class ImageLinkFilter implements Filter {
46
47         /** The template to render for the &lt;img&gt; tag. */
48         private static final Template linkTemplate = TemplateParser.parse(new StringReader("<img<%ifnull !class> class=\"<%class|css>\"<%/if> src=\"<%src|html><%if forceDownload>?forcedownload=true<%/if>\" alt=\"<%alt|html>\" title=\"<%title|html>\" width=\"<%width|html>\" height=\"<%height|html>\" style=\"position: relative;<%ifnull ! top>top: <% top|html>;<%/if><%ifnull ! left>left: <% left|html>;<%/if>\"/>"));
49
50         /** The core. */
51         private final Core core;
52
53         /** The template context factory. */
54         private final TemplateContextFactory templateContextFactory;
55
56         /**
57          * Creates a new image link filter.
58          *
59          * @param core
60          *            The core
61          * @param templateContextFactory
62          *            The template context factory
63          */
64         public ImageLinkFilter(Core core, TemplateContextFactory templateContextFactory) {
65                 this.core = core;
66                 this.templateContextFactory = templateContextFactory;
67         }
68
69         /**
70          * {@inheritDoc}
71          */
72         @Override
73         public Object format(TemplateContext templateContext, Object data, Map<String, Object> parameters) {
74                 Image image = null;
75                 if (data instanceof String) {
76                         image = core.getImage((String) data, false);
77                 } else if (data instanceof Image) {
78                         image = (Image) data;
79                 }
80                 if (image == null) {
81                         return null;
82                 }
83                 String imageClass = Optional.fromNullable(parameters.get("class")).transform(new Function<Object, String>() {
84                         @Override
85                         public String apply(Object input) {
86                                 return (input != null) ? input.toString() : null;
87                         }
88                 }).orNull();
89                 int maxWidth = parseInt(valueOf(parameters.get("max-width")), MAX_VALUE);
90                 int maxHeight = parseInt(valueOf(parameters.get("max-height")), MAX_VALUE);
91                 String mode = valueOf(parameters.get("mode"));
92                 String title = valueOf(parameters.get("title"));
93
94                 TemplateContext linkTemplateContext = templateContextFactory.createTemplateContext();
95                 linkTemplateContext.set("class", imageClass);
96                 if (image.isInserted()) {
97                         linkTemplateContext.set("src", "/" + image.getKey());
98                         linkTemplateContext.set("forceDownload", true);
99                 } else {
100                         linkTemplateContext.set("src", "getImage.html?image=" + image.getId());
101                 }
102                 int imageWidth = image.getWidth();
103                 int imageHeight = image.getHeight();
104                 if ("enlarge".equals(mode)) {
105                         double scale = Math.max(maxWidth / (double) imageWidth, maxHeight / (double) imageHeight);
106                         linkTemplateContext.set("width", (int) (imageWidth * scale + 0.5));
107                         linkTemplateContext.set("height", (int) (imageHeight * scale + 0.5));
108                         linkTemplateContext.set("left", String.format("%dpx", (int) (maxWidth - (imageWidth * scale)) / 2));
109                         linkTemplateContext.set("top", String.format("%dpx", (int) (maxHeight - (imageHeight * scale)) / 2));
110                 } else {
111                         double scale = 1;
112                         if ((imageWidth > maxWidth) || (imageHeight > maxHeight)) {
113                                 scale = Math.min(maxWidth / (double) imageWidth, maxHeight / (double) imageHeight);
114                         }
115                         linkTemplateContext.set("width", (int) (imageWidth * scale + 0.5));
116                         linkTemplateContext.set("height", (int) (imageHeight * scale + 0.5));
117                 }
118                 linkTemplateContext.set("alt", Optional.fromNullable(title).or(image.getDescription()));
119                 linkTemplateContext.set("title", Optional.fromNullable(title).or(image.getTitle()));
120
121                 StringWriter stringWriter = new StringWriter();
122                 linkTemplate.render(linkTemplateContext, stringWriter);
123                 return stringWriter.toString();
124         }
125
126 }