♻️ Use new plugin connector in wot connector
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / freenet / L10nFilter.kt
1 /*
2  * Sone - L10nFilter.java - Copyright © 2010–2019 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 freenet.l10n.*
21 import net.pterodactylus.util.template.*
22 import java.text.*
23 import java.util.*
24
25 /**
26  * [Filter] implementation replaces [String] values with their
27  * translated equivalents.
28  */
29 class L10nFilter(private val l10n: BaseL10n) : Filter {
30
31         override fun format(templateContext: TemplateContext?, data: Any?, parameters: Map<String, Any>?): String {
32                 val parameterValues = getParameters(data, parameters)
33                 val text = getText(data)
34                 return if (parameterValues.isEmpty()) {
35                         l10n.getString(text)
36                 } else
37                         MessageFormat(l10n.getString(text), Locale(l10n.selectedLanguage.shortCode)).format(parameterValues.toTypedArray())
38         }
39
40         private fun getText(data: Any?) = (data as? L10nText)?.text ?: data.toString()
41
42         private fun getParameters(data: Any?, parameters: Map<String, Any>?) =
43                         if (data is L10nText)
44                                 data.parameters
45                         else
46                                 (parameters ?: emptyMap()).let { params ->
47                                         generateSequence(0) { it + 1 }
48                                                         .takeWhile { it.toString() in params }
49                                                         .map { params[it.toString()] }
50                                                         .toList()
51                                 }
52
53 }