Add methods to load all trusted identities.
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / WebOfTrustConnector.java
1 /*
2  * Sone - WebOfTrustConnector.java - Copyright © 2010 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 java.util.Collections;
21 import java.util.HashMap;
22 import java.util.HashSet;
23 import java.util.Map;
24 import java.util.Set;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27
28 import net.pterodactylus.util.logging.Logging;
29 import freenet.support.SimpleFieldSet;
30 import freenet.support.api.Bucket;
31
32 /**
33  * Connector for the Web of Trust plugin.
34  *
35  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36  */
37 public class WebOfTrustConnector implements ConnectorListener {
38
39         /** The logger. */
40         private static final Logger logger = Logging.getLogger(WebOfTrustConnector.class);
41
42         /** The name of the WoT plugin. */
43         private static final String WOT_PLUGIN_NAME = "plugins.WoT.WoT";
44
45         /** A random connection identifier. */
46         private static final String PLUGIN_CONNECTION_IDENTIFIER = "Sone-WoT-Connector-" + Math.abs(Math.random());
47
48         /** The current replies that we wait for. */
49         private final Map<String, Reply> replies = Collections.synchronizedMap(new HashMap<String, Reply>());
50
51         /** The plugin connector. */
52         private final PluginConnector pluginConnector;
53
54         /**
55          * Creates a new Web of Trust connector that uses the given plugin
56          * connector.
57          *
58          * @param pluginConnector
59          *            The plugin connector
60          */
61         public WebOfTrustConnector(PluginConnector pluginConnector) {
62                 this.pluginConnector = pluginConnector;
63                 pluginConnector.addConnectorListener(WOT_PLUGIN_NAME, PLUGIN_CONNECTION_IDENTIFIER, this);
64         }
65
66         //
67         // ACTIONS
68         //
69
70         /**
71          * Loads all own identities from the Web of Trust plugin.
72          *
73          * @return All own identity
74          * @throws PluginException
75          *             if the own identities can not be loaded
76          */
77         public Set<OwnIdentity> loadAllOwnIdentities() throws PluginException {
78                 Reply reply = performRequest("OwnIdentities", SimpleFieldSetConstructor.create().put("Message", "GetOwnIdentities").get());
79                 SimpleFieldSet fields = reply.getFields();
80                 int ownIdentityCounter = -1;
81                 Set<OwnIdentity> ownIdentities = new HashSet<OwnIdentity>();
82                 while (true) {
83                         String id = fields.get("Identity" + ++ownIdentityCounter);
84                         if (id == null) {
85                                 break;
86                         }
87                         String requestUri = fields.get("RequestURI" + ownIdentityCounter);
88                         String insertUri = fields.get("InsertURI" + ownIdentityCounter);
89                         String nickname = fields.get("Nickname" + ownIdentityCounter);
90                         OwnIdentity ownIdentity = new OwnIdentity(this, id, nickname, requestUri, insertUri);
91                         ownIdentities.add(ownIdentity);
92                 }
93                 return ownIdentities;
94         }
95
96         /**
97          * Loads the contexts of the given identity.
98          *
99          * @param identity
100          *            The identity to load the contexts for
101          * @return The contexts of the identity
102          * @throws PluginException
103          *             if an error occured talking to the Web of Trust plugin
104          */
105         public Set<String> loadIdentityContexts(Identity identity) throws PluginException {
106                 Reply reply = performRequest("Identity", SimpleFieldSetConstructor.create().put("Message", "GetIdentity").put("TreeOwner", identity.getId()).put("Identity", identity.getId()).get());
107                 SimpleFieldSet fields = reply.getFields();
108                 int contextCounter = -1;
109                 Set<String> contexts = new HashSet<String>();
110                 while (true) {
111                         String context = fields.get("Context" + ++contextCounter);
112                         if (context == null) {
113                                 break;
114                         }
115                         contexts.add(context);
116                 }
117                 return contexts;
118         }
119
120         /**
121          * Loads all identities that the given identities trusts with a score of
122          * more than 0.
123          *
124          * @param ownIdentity
125          *            The own identity
126          * @return All trusted identities
127          * @throws PluginException
128          *             if an error occured talking to the Web of Trust plugin
129          */
130         public Set<Identity> loadTrustedIdentities(OwnIdentity ownIdentity) throws PluginException {
131                 return loadTrustedIdentities(ownIdentity, null);
132         }
133
134         /**
135          * Loads all identities that the given identities trusts with a score of
136          * more than 0 and the (optional) given context.
137          *
138          * @param ownIdentity
139          *            The own identity
140          * @param context
141          *            The context to filter, or {@code null}
142          * @return All trusted identities
143          * @throws PluginException
144          *             if an error occured talking to the Web of Trust plugin
145          */
146         public Set<Identity> loadTrustedIdentities(OwnIdentity ownIdentity, String context) throws PluginException {
147                 Reply reply = performRequest("Identities", SimpleFieldSetConstructor.create().put("Message", "GetIdentitiesByScore").put("TreeOwner", ownIdentity.getId()).put("Selection", "+").put("Context", (context == null) ? "" : context).get());
148                 SimpleFieldSet fields = reply.getFields();
149                 Set<Identity> identities = new HashSet<Identity>();
150                 int identityCounter = -1;
151                 while (true) {
152                         String id = fields.get("Identity" + ++identityCounter);
153                         if (id == null) {
154                                 break;
155                         }
156                         String nickname = fields.get("Nickname" + identityCounter);
157                         String requestUri = fields.get("RequestURI" + identityCounter);
158                         identities.add(new Identity(this, id, nickname, requestUri));
159                 }
160                 return identities;
161         }
162
163         //
164         // PRIVATE ACTIONS
165         //
166
167         /**
168          * Sends a request containing the given fields and waits for the target
169          * message.
170          *
171          * @param targetMessage
172          *            The message of the reply to wait for
173          * @param fields
174          *            The fields of the message
175          * @return The reply message
176          * @throws PluginException
177          *             if the request could not be sent
178          */
179         private Reply performRequest(String targetMessage, SimpleFieldSet fields) throws PluginException {
180                 return performRequest(targetMessage, fields, null);
181         }
182
183         /**
184          * Sends a request containing the given fields and waits for the target
185          * message.
186          *
187          * @param targetMessage
188          *            The message of the reply to wait for
189          * @param fields
190          *            The fields of the message
191          * @param data
192          *            The payload of the message
193          * @return The reply message
194          * @throws PluginException
195          *             if the request could not be sent
196          */
197         private Reply performRequest(String targetMessage, SimpleFieldSet fields, Bucket data) throws PluginException {
198                 @SuppressWarnings("synthetic-access")
199                 Reply reply = new Reply();
200                 replies.put(targetMessage, reply);
201                 synchronized (reply) {
202                         pluginConnector.sendRequest(WOT_PLUGIN_NAME, PLUGIN_CONNECTION_IDENTIFIER, fields, data);
203                         try {
204                                 reply.wait();
205                         } catch (InterruptedException ie1) {
206                                 logger.log(Level.WARNING, "Got interrupted while waiting for reply on GetOwnIdentities.", ie1);
207                         }
208                 }
209                 return reply;
210         }
211
212         //
213         // INTERFACE ConnectorListener
214         //
215
216         /**
217          * {@inheritDoc}
218          */
219         @Override
220         public void receivedReply(PluginConnector pluginConnector, SimpleFieldSet fields, Bucket data) {
221                 String messageName = fields.get("Message");
222                 Reply reply = replies.remove(messageName);
223                 if (reply == null) {
224                         logger.log(Level.FINE, "Not waiting for a “%s” message.", messageName);
225                         return;
226                 }
227                 synchronized (reply) {
228                         reply.setFields(fields);
229                         reply.setData(data);
230                         reply.notify();
231                 }
232         }
233
234         /**
235          * Container for the data of the reply from a plugin.
236          *
237          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
238          */
239         private static class Reply {
240
241                 /** The fields of the reply. */
242                 private SimpleFieldSet fields;
243
244                 /** The payload of the reply. */
245                 private Bucket data;
246
247                 /**
248                  * Returns the fields of the reply.
249                  *
250                  * @return The fields of the reply
251                  */
252                 public SimpleFieldSet getFields() {
253                         return fields;
254                 }
255
256                 /**
257                  * Sets the fields of the reply.
258                  *
259                  * @param fields
260                  *            The fields of the reply
261                  */
262                 public void setFields(SimpleFieldSet fields) {
263                         this.fields = fields;
264                 }
265
266                 /**
267                  * Returns the payload of the reply.
268                  *
269                  * @return The payload of the reply (may be {@code null})
270                  */
271                 @SuppressWarnings("unused")
272                 public Bucket getData() {
273                         return data;
274                 }
275
276                 /**
277                  * Sets the payload of the reply.
278                  *
279                  * @param data
280                  *            The payload of the reply (may be {@code null})
281                  */
282                 public void setData(Bucket data) {
283                         this.data = data;
284                 }
285
286         }
287
288         /**
289          * Helper method to create {@link SimpleFieldSet}s with terser code.
290          *
291          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
292          */
293         private static class SimpleFieldSetConstructor {
294
295                 /** The field set being created. */
296                 private SimpleFieldSet simpleFieldSet;
297
298                 /**
299                  * Creates a new simple field set constructor.
300                  *
301                  * @param shortLived
302                  *            {@code true} if the resulting simple field set should be
303                  *            short-lived, {@code false} otherwise
304                  */
305                 private SimpleFieldSetConstructor(boolean shortLived) {
306                         simpleFieldSet = new SimpleFieldSet(shortLived);
307                 }
308
309                 //
310                 // ACCESSORS
311                 //
312
313                 /**
314                  * Returns the created simple field set.
315                  *
316                  * @return The created simple field set
317                  */
318                 public SimpleFieldSet get() {
319                         return simpleFieldSet;
320                 }
321
322                 /**
323                  * Sets the field with the given name to the given value.
324                  *
325                  * @param name
326                  *            The name of the fleld
327                  * @param value
328                  *            The value of the field
329                  * @return This constructor (for method chaining)
330                  */
331                 public SimpleFieldSetConstructor put(String name, String value) {
332                         simpleFieldSet.putOverwrite(name, value);
333                         return this;
334                 }
335
336                 //
337                 // ACTIONS
338                 //
339
340                 /**
341                  * Creates a new simple field set constructor.
342                  *
343                  * @return The created simple field set constructor
344                  */
345                 public static SimpleFieldSetConstructor create() {
346                         return create(true);
347                 }
348
349                 /**
350                  * Creates a new simple field set constructor.
351                  *
352                  * @param shortLived
353                  *            {@code true} if the resulting simple field set should be
354                  *            short-lived, {@code false} otherwise
355                  * @return The created simple field set constructor
356                  */
357                 public static SimpleFieldSetConstructor create(boolean shortLived) {
358                         SimpleFieldSetConstructor simpleFieldSetConstructor = new SimpleFieldSetConstructor(shortLived);
359                         return simpleFieldSetConstructor;
360                 }
361
362         }
363
364 }