🚧 Load ALL identities instead of only trusted ones
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / freenet / wot / IdentityLoader.kt
1 /*
2  * Sone - IdentityLoader.kt - Copyright Â© 2013–2020 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.wot
19
20 import com.google.common.base.*
21 import com.google.inject.*
22 import net.pterodactylus.sone.freenet.plugin.*
23 import java.util.concurrent.TimeUnit.*
24 import java.util.logging.*
25
26 /**
27  * Loads [OwnIdentity]s and the [Identity]s they trust.
28  */
29 class IdentityLoader @Inject constructor(private val webOfTrustConnector: WebOfTrustConnector, private val context: Context? = null) {
30
31         private val logger: Logger = Logger.getLogger(IdentityLoader::class.java.name)
32
33         @Throws(WebOfTrustException::class)
34         fun loadTrustedIdentities() =
35                         time({ stopwatch, identities -> "Loaded ${identities.size} own identities in ${stopwatch.elapsed(MILLISECONDS) / 1000.0}s." }) {
36                                 webOfTrustConnector.loadAllOwnIdentities()
37                         }.let(this::loadTrustedIdentitiesForOwnIdentities)
38
39         fun loadAllIdentities() =
40                         time({ stopwatch, identities -> "Loaded ${identities.size} own identities in ${stopwatch.elapsed(MILLISECONDS) / 1000.0}s." }) {
41                                 webOfTrustConnector.loadAllOwnIdentities()
42                         }.let(this::loadAllIdentitiesForOwnIdentities)
43
44         @Throws(PluginException::class)
45         private fun loadTrustedIdentitiesForOwnIdentities(ownIdentities: Collection<OwnIdentity>) =
46                         ownIdentities
47                                         .also { logger.fine { "Getting trusted identities for ${it.size} own identities..." } }
48                                         .associateWith { ownIdentity ->
49                                                 logger.fine { "Getting trusted identities for $ownIdentity..." }
50                                                 if (ownIdentity.doesNotHaveCorrectContext()) {
51                                                         logger.fine { "Skipping $ownIdentity because of incorrect context." }
52                                                         emptySet()
53                                                 } else {
54                                                         logger.fine { "Loading trusted identities for $ownIdentity from WoT..." }
55                                                         time({ stopwatch, identities -> "Loaded ${identities.size} identities for ${ownIdentity.nickname} in ${stopwatch.elapsed(MILLISECONDS) / 1000.0}s." }) {
56                                                                 webOfTrustConnector.loadTrustedIdentities(ownIdentity, context?.context)
57                                                         }
58                                                 }
59                                         }
60
61         private fun loadAllIdentitiesForOwnIdentities(ownIdentities: Collection<OwnIdentity>) =
62                         ownIdentities
63                                         .also { logger.fine { "Getting trusted identities for ${it.size} own identities..." } }
64                                         .associateWith { ownIdentity ->
65                                                 logger.fine { "Getting trusted identities for $ownIdentity..." }
66                                                 if (ownIdentity.doesNotHaveCorrectContext()) {
67                                                         logger.fine { "Skipping $ownIdentity because of incorrect context." }
68                                                         emptySet()
69                                                 } else {
70                                                         logger.fine { "Loading trusted identities for $ownIdentity from WoT..." }
71                                                         time({ stopwatch, identities -> "Loaded ${identities.size} identities for ${ownIdentity.nickname} in ${stopwatch.elapsed(MILLISECONDS) / 1000.0}s." }) {
72                                                                 webOfTrustConnector.loadAllIdentities(ownIdentity, context?.context)
73                                                         }
74                                                 }
75                                         }
76
77         private fun OwnIdentity.doesNotHaveCorrectContext() =
78                         context?.let { it.context !in contexts } ?: false
79
80         private fun <R> time(logMessage: (Stopwatch, R) -> String, loader: () -> R) =
81                         Stopwatch.createStarted().let { stopwatch ->
82                                 loader().also { logger.fine(logMessage(stopwatch, it)) }
83                         }
84
85 }