Allow using a message formatter after getting the L10n string from Freenet.
[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.Map;
24
25 import net.pterodactylus.util.template.Filter;
26 import net.pterodactylus.util.template.TemplateContext;
27 import freenet.l10n.BaseL10n;
28
29 /**
30  * {@link Filter} implementation replaces {@link String} values with their
31  * translated equivalents.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  */
35 public class L10nFilter implements Filter {
36
37         /** The l10n handler. */
38         private final BaseL10n l10n;
39
40         /**
41          * Creates a new L10n filter.
42          *
43          * @param l10n
44          *            The l10n handler
45          */
46         public L10nFilter(BaseL10n l10n) {
47                 this.l10n = l10n;
48         }
49
50         /**
51          * {@inheritDoc}
52          */
53         @Override
54         public String format(TemplateContext templateContext, Object data, Map<String, String> parameters) {
55                 List<Object> parameterValues = new ArrayList<Object>();
56                 int parameterIndex = 0;
57                 while (parameters.containsKey(String.valueOf(parameterIndex))) {
58                         Object value = parameters.get(String.valueOf(parameterIndex));
59                         if (((String) value).startsWith("=")) {
60                                 value = ((String) value).substring(1);
61                         } else {
62                                 value = templateContext.get((String) value);
63                         }
64                         parameterValues.add(value);
65                         ++parameterIndex;
66                 }
67                 return new MessageFormat(l10n.getString(String.valueOf(data))).format(parameterValues.toArray());
68         }
69 }