1a8cc494b6510bfcd472a0c4fbb8cdb4d756d8f7
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / IdentityLoader.java
1 /*
2  * Sone - IdentityLoader.java - Copyright © 2013–2016 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 static java.util.Collections.emptySet;
21 import static net.pterodactylus.sone.freenet.wot.Context.extractContext;
22
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Set;
28
29 import net.pterodactylus.sone.freenet.plugin.PluginException;
30
31 import com.google.common.base.Optional;
32 import com.google.inject.Inject;
33
34 /**
35  * Loads {@link OwnIdentity}s and the {@link Identity}s they trust.
36  *
37  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
38  */
39 public class IdentityLoader {
40
41         private final WebOfTrustConnector webOfTrustConnector;
42         private final Optional<Context> context;
43
44         public IdentityLoader(WebOfTrustConnector webOfTrustConnector) {
45                 this(webOfTrustConnector, Optional.<Context>absent());
46         }
47
48         @Inject
49         public IdentityLoader(WebOfTrustConnector webOfTrustConnector, Optional<Context> context) {
50                 this.webOfTrustConnector = webOfTrustConnector;
51                 this.context = context;
52         }
53
54         public Map<OwnIdentity, Collection<Identity>> loadIdentities() throws WebOfTrustException {
55                 Collection<OwnIdentity> currentOwnIdentities = webOfTrustConnector.loadAllOwnIdentities();
56                 return loadTrustedIdentitiesForOwnIdentities(currentOwnIdentities);
57         }
58
59         private Map<OwnIdentity, Collection<Identity>> loadTrustedIdentitiesForOwnIdentities(Collection<OwnIdentity> ownIdentities) throws PluginException {
60                 Map<OwnIdentity, Collection<Identity>> currentIdentities = new HashMap<OwnIdentity, Collection<Identity>>();
61
62                 for (OwnIdentity ownIdentity : ownIdentities) {
63                         if (identityDoesNotHaveTheCorrectContext(ownIdentity)) {
64                                 currentIdentities.put(ownIdentity, Collections.<Identity>emptySet());
65                                 continue;
66                         }
67
68                         Set<Identity> trustedIdentities = webOfTrustConnector.loadTrustedIdentities(ownIdentity, context.transform(extractContext));
69                         currentIdentities.put(ownIdentity, trustedIdentities);
70                 }
71
72                 return currentIdentities;
73         }
74
75         private boolean identityDoesNotHaveTheCorrectContext(OwnIdentity ownIdentity) {
76                 return context.isPresent() && !ownIdentity.hasContext(context.transform(extractContext).get());
77         }
78
79 }