2 * Sone - WebOfTrustConnector.java - Copyright © 2010–2019 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.freenet.wot
20 import com.google.inject.*
21 import freenet.support.*
22 import kotlinx.coroutines.*
23 import net.pterodactylus.sone.freenet.*
24 import net.pterodactylus.sone.freenet.plugin.*
25 import java.lang.String.*
26 import java.util.logging.*
27 import java.util.logging.Logger
28 import java.util.logging.Logger.*
31 * Connector for the Web of Trust plugin.
33 class PluginWebOfTrustConnector @Inject constructor(private val pluginConnector: PluginConnector) : WebOfTrustConnector {
35 private val logger: Logger = getLogger(PluginWebOfTrustConnector::class.java.name)
37 @Throws(PluginException::class)
38 override fun loadAllOwnIdentities(): Set<OwnIdentity> =
39 performRequest(SimpleFieldSetBuilder().put("Message", "GetOwnIdentities").get())
41 .parseIdentities { parseOwnIdentity(it) }
43 @Throws(PluginException::class)
44 override fun loadTrustedIdentities(ownIdentity: OwnIdentity, context: String?): Set<Identity> =
45 performRequest(SimpleFieldSetBuilder().put("Message", "GetIdentitiesByScore").put("Truster", ownIdentity.id).put("Selection", "+").put("Context", context ?: "").put("WantTrustValues", "true").get())
47 .parseIdentities { parseTrustedIdentity(it, ownIdentity) }
49 @Throws(PluginException::class)
50 override fun addContext(ownIdentity: OwnIdentity, context: String) {
51 performRequest(SimpleFieldSetBuilder().put("Message", "AddContext").put("Identity", ownIdentity.id).put("Context", context).get())
54 @Throws(PluginException::class)
55 override fun removeContext(ownIdentity: OwnIdentity, context: String) {
56 performRequest(SimpleFieldSetBuilder().put("Message", "RemoveContext").put("Identity", ownIdentity.id).put("Context", context).get())
59 override fun setProperty(ownIdentity: OwnIdentity, name: String, value: String) {
60 performRequest(SimpleFieldSetBuilder().put("Message", "SetProperty").put("Identity", ownIdentity.id).put("Property", name).put("Value", value).get())
63 override fun removeProperty(ownIdentity: OwnIdentity, name: String) {
64 performRequest(SimpleFieldSetBuilder().put("Message", "RemoveProperty").put("Identity", ownIdentity.id).put("Property", name).get())
68 performRequest(SimpleFieldSetBuilder().put("Message", "Ping").get())
71 private fun performRequest(fields: SimpleFieldSet): PluginReply {
72 logger.log(Level.FINE, format("Sending FCP Request: %s", fields.get("Message")))
74 pluginConnector.sendRequest(WOT_PLUGIN_NAME, fields).also {
75 logger.log(Level.FINEST, format("Received FCP Response for %s: %s", fields.get("Message"), it.fields.get("Message")))
76 if ("Error" == it.fields.get("Message")) {
77 throw PluginException("Could not perform request for " + fields.get("Message"))
85 private const val WOT_PLUGIN_NAME = "plugins.WebOfTrust.WebOfTrust"
87 private fun <I> SimpleFieldSet.parseIdentities(parser: SimpleFieldSet.(Int) -> I) =
88 scanPrefix { "Identity$it" }
89 .map { parser(this, it) }
92 private fun SimpleFieldSet.parseOwnIdentity(index: Int) =
93 DefaultOwnIdentity(get("Identity$index"), get("Nickname$index"), get("RequestURI$index"), get("InsertURI$index"))
94 .setContextsAndProperties(this@parseOwnIdentity, index)
96 private fun SimpleFieldSet.parseTrustedIdentity(index: Int, ownIdentity: OwnIdentity) =
97 DefaultIdentity(get("Identity$index"), get("Nickname$index"), get("RequestURI$index"))
98 .setContextsAndProperties(this@parseTrustedIdentity, index)
99 .apply { setTrust(ownIdentity, this@parseTrustedIdentity.parseTrust(index.toString())) }
101 private fun <I : Identity> I.setContextsAndProperties(simpleFieldSet: SimpleFieldSet, index: Int) = apply {
102 contexts = simpleFieldSet.contexts("Contexts$index.")
103 properties = simpleFieldSet.properties("Properties$index.")
106 private fun SimpleFieldSet.parseTrust(index: String = "") =
107 Trust(get("Trust$index")?.toIntOrNull(), get("Score$index")?.toIntOrNull(), get("Rank$index")?.toIntOrNull())
109 private fun SimpleFieldSet.contexts(prefix: String) =
110 scanPrefix { "${prefix}Context$it" }
111 .map { get("${prefix}Context$it") }
114 private fun SimpleFieldSet.properties(prefix: String) =
115 scanPrefix { "${prefix}Property${it}.Name" }
116 .map { get("${prefix}Property${it}.Name") to get("${prefix}Property${it}.Value") }
119 private fun SimpleFieldSet.scanPrefix(prefix: (Int) -> String) =
120 generateSequence(0, Int::inc)
121 .takeWhile { get(prefix(it)) != null }