📄 Update year in file headers
[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 loadIdentities() =
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         @Throws(PluginException::class)
40         private fun loadTrustedIdentitiesForOwnIdentities(ownIdentities: Collection<OwnIdentity>) =
41                         ownIdentities
42                                         .also { logger.fine { "Getting trusted identities for ${it.size} own identities..." } }
43                                         .associateWith { ownIdentity ->
44                                                 logger.fine { "Getting trusted identities for $ownIdentity..." }
45                                                 if (ownIdentity.doesNotHaveCorrectContext()) {
46                                                         logger.fine { "Skipping $ownIdentity because of incorrect context." }
47                                                         emptySet()
48                                                 } else {
49                                                         logger.fine { "Loading trusted identities for $ownIdentity from WoT..." }
50                                                         time({ stopwatch, identities -> "Loaded ${identities.size} identities for ${ownIdentity.nickname} in ${stopwatch.elapsed(MILLISECONDS) / 1000.0}s." }) {
51                                                                 webOfTrustConnector.loadTrustedIdentities(ownIdentity, context?.context)
52                                                         }
53                                                 }
54                                         }
55
56         private fun OwnIdentity.doesNotHaveCorrectContext() =
57                         context?.let { it.context !in contexts } ?: false
58
59         private fun <R> time(logMessage: (Stopwatch, R) -> String, loader: () -> R) =
60                         Stopwatch.createStarted().let { stopwatch ->
61                                 loader().also { logger.fine(logMessage(stopwatch, it)) }
62                         }
63
64 }