Move all Kotlin files to the correct directory
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / L10nFilter.java
1 /*
2  * Sone - L10nFilter.java - Copyright © 2010–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.freenet;
19
20 import java.text.MessageFormat;
21 import java.util.ArrayList;
22 import java.util.List;
23 import java.util.Locale;
24 import java.util.Map;
25
26 import javax.annotation.Nonnull;
27
28 import net.pterodactylus.sone.web.WebInterface;
29 import net.pterodactylus.util.template.Filter;
30 import net.pterodactylus.util.template.TemplateContext;
31
32 /**
33  * {@link Filter} implementation replaces {@link String} values with their
34  * translated equivalents.
35  *
36  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
37  */
38 public class L10nFilter implements Filter {
39
40         /** The web interface. */
41         private final WebInterface webInterface;
42
43         /**
44          * Creates a new L10n filter.
45          *
46          * @param webInterface
47          *            The Sone web interface
48          */
49         public L10nFilter(WebInterface webInterface) {
50                 this.webInterface = webInterface;
51         }
52
53         /**
54          * {@inheritDoc}
55          */
56         @Override
57         public String format(TemplateContext templateContext, Object data, Map<String, Object> parameters) {
58                 List<Object> parameterValues = getParameters(data, parameters);
59                 String text = getText(data);
60                 if (parameterValues.isEmpty()) {
61                         return webInterface.getL10n().getString(text);
62                 }
63                 return new MessageFormat(webInterface.getL10n().getString(text), new Locale(webInterface.getL10n().getSelectedLanguage().shortCode)).format(parameterValues.toArray());
64         }
65
66         @Nonnull
67         private String getText(Object data) {
68                 return (data instanceof L10nText) ? ((L10nText) data).getText() : String.valueOf(data);
69         }
70
71         @Nonnull
72         private List<Object> getParameters(Object data, Map<String, Object> parameters) {
73                 if (data instanceof L10nText) {
74                         return ((L10nText) data).getParameters();
75                 }
76                 List<Object> parameterValues = new ArrayList<Object>();
77                 int parameterIndex = 0;
78                 while (parameters.containsKey(String.valueOf(parameterIndex))) {
79                         Object value = parameters.get(String.valueOf(parameterIndex));
80                         parameterValues.add(value);
81                         ++parameterIndex;
82                 }
83                 return parameterValues;
84         }
85
86 }