Always get the current l10n helper from the node, don’t reuse an old one.
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / L10nFilter.java
1 /*
2  * Sone - L10nFilter.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.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, String> parameters) {
56                 if (parameters.isEmpty()) {
57                         return webInterface.getL10n().getString(String.valueOf(data));
58                 }
59                 List<Object> parameterValues = new ArrayList<Object>();
60                 int parameterIndex = 0;
61                 while (parameters.containsKey(String.valueOf(parameterIndex))) {
62                         Object value = parameters.get(String.valueOf(parameterIndex));
63                         if (((String) value).startsWith("=")) {
64                                 value = ((String) value).substring(1);
65                         } else {
66                                 value = templateContext.get((String) value);
67                         }
68                         parameterValues.add(value);
69                         ++parameterIndex;
70                 }
71                 return new MessageFormat(webInterface.getL10n().getString(String.valueOf(data)), new Locale(webInterface.getL10n().getSelectedLanguage().shortCode)).format(parameterValues.toArray());
72         }
73 }