Add l10n text and parameter container
[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 net.pterodactylus.sone.web.WebInterface;
27 import net.pterodactylus.util.template.Filter;
28 import net.pterodactylus.util.template.TemplateContext;
29
30 /**
31  * {@link Filter} implementation replaces {@link String} values with their
32  * translated equivalents.
33  *
34  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
35  */
36 public class L10nFilter implements Filter {
37
38         /** The web interface. */
39         private final WebInterface webInterface;
40
41         /**
42          * Creates a new L10n filter.
43          *
44          * @param webInterface
45          *            The Sone web interface
46          */
47         public L10nFilter(WebInterface webInterface) {
48                 this.webInterface = webInterface;
49         }
50
51         /**
52          * {@inheritDoc}
53          */
54         @Override
55         public String format(TemplateContext templateContext, Object data, Map<String, Object> parameters) {
56                 if (data instanceof L10nText) {
57                         L10nText l10nText = (L10nText) data;
58                         if (l10nText.getParameters().isEmpty()) {
59                                 return webInterface.getL10n().getString(l10nText.getText());
60                         }
61                         return new MessageFormat(webInterface.getL10n().getString(l10nText.getText()), new Locale(webInterface.getL10n().getSelectedLanguage().shortCode)).format(l10nText.getParameters().toArray());
62                 }
63                 if (parameters.isEmpty()) {
64                         return webInterface.getL10n().getString(String.valueOf(data));
65                 }
66                 List<Object> parameterValues = new ArrayList<Object>();
67                 int parameterIndex = 0;
68                 while (parameters.containsKey(String.valueOf(parameterIndex))) {
69                         Object value = parameters.get(String.valueOf(parameterIndex));
70                         parameterValues.add(value);
71                         ++parameterIndex;
72                 }
73                 return new MessageFormat(webInterface.getL10n().getString(String.valueOf(data)), new Locale(webInterface.getL10n().getSelectedLanguage().shortCode)).format(parameterValues.toArray());
74         }
75
76 }