Add methods to add and remove contexts.
[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          * Adds the given context to the given identity.
165          *
166          * @param ownIdentity
167          *            The identity to add the context to
168          * @param context
169          *            The context to add
170          * @throws PluginException
171          *             if an error occured talking to the Web of Trust plugin
172          */
173         public void addContext(OwnIdentity ownIdentity, String context) throws PluginException {
174                 performRequest("ContextAdded", SimpleFieldSetConstructor.create().put("Message", "AddContext").put("Identity", ownIdentity.getId()).put("Context", context).get());
175         }
176
177         /**
178          * Removes the given context from the given identity.
179          *
180          * @param ownIdentity
181          *            The identity to remove the context from
182          * @param context
183          *            The context to remove
184          * @throws PluginException
185          *             if an error occured talking to the Web of Trust plugin
186          */
187         public void removeContext(OwnIdentity ownIdentity, String context) throws PluginException {
188                 performRequest("ContextRemoved", SimpleFieldSetConstructor.create().put("Message", "RemoveContext").put("Identity", ownIdentity.getId()).put("Context", context).get());
189         }
190
191         //
192         // PRIVATE ACTIONS
193         //
194
195         /**
196          * Sends a request containing the given fields and waits for the target
197          * message.
198          *
199          * @param targetMessage
200          *            The message of the reply to wait for
201          * @param fields
202          *            The fields of the message
203          * @return The reply message
204          * @throws PluginException
205          *             if the request could not be sent
206          */
207         private Reply performRequest(String targetMessage, SimpleFieldSet fields) throws PluginException {
208                 return performRequest(targetMessage, fields, null);
209         }
210
211         /**
212          * Sends a request containing the given fields and waits for the target
213          * message.
214          *
215          * @param targetMessage
216          *            The message of the reply to wait for
217          * @param fields
218          *            The fields of the message
219          * @param data
220          *            The payload of the message
221          * @return The reply message
222          * @throws PluginException
223          *             if the request could not be sent
224          */
225         private Reply performRequest(String targetMessage, SimpleFieldSet fields, Bucket data) throws PluginException {
226                 @SuppressWarnings("synthetic-access")
227                 Reply reply = new Reply();
228                 replies.put(targetMessage, reply);
229                 synchronized (reply) {
230                         pluginConnector.sendRequest(WOT_PLUGIN_NAME, PLUGIN_CONNECTION_IDENTIFIER, fields, data);
231                         try {
232                                 reply.wait();
233                         } catch (InterruptedException ie1) {
234                                 logger.log(Level.WARNING, "Got interrupted while waiting for reply on GetOwnIdentities.", ie1);
235                         }
236                 }
237                 return reply;
238         }
239
240         //
241         // INTERFACE ConnectorListener
242         //
243
244         /**
245          * {@inheritDoc}
246          */
247         @Override
248         public void receivedReply(PluginConnector pluginConnector, SimpleFieldSet fields, Bucket data) {
249                 String messageName = fields.get("Message");
250                 Reply reply = replies.remove(messageName);
251                 if (reply == null) {
252                         logger.log(Level.FINE, "Not waiting for a “%s” message.", messageName);
253                         return;
254                 }
255                 synchronized (reply) {
256                         reply.setFields(fields);
257                         reply.setData(data);
258                         reply.notify();
259                 }
260         }
261
262         /**
263          * Container for the data of the reply from a plugin.
264          *
265          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
266          */
267         private static class Reply {
268
269                 /** The fields of the reply. */
270                 private SimpleFieldSet fields;
271
272                 /** The payload of the reply. */
273                 private Bucket data;
274
275                 /**
276                  * Returns the fields of the reply.
277                  *
278                  * @return The fields of the reply
279                  */
280                 public SimpleFieldSet getFields() {
281                         return fields;
282                 }
283
284                 /**
285                  * Sets the fields of the reply.
286                  *
287                  * @param fields
288                  *            The fields of the reply
289                  */
290                 public void setFields(SimpleFieldSet fields) {
291                         this.fields = fields;
292                 }
293
294                 /**
295                  * Returns the payload of the reply.
296                  *
297                  * @return The payload of the reply (may be {@code null})
298                  */
299                 @SuppressWarnings("unused")
300                 public Bucket getData() {
301                         return data;
302                 }
303
304                 /**
305                  * Sets the payload of the reply.
306                  *
307                  * @param data
308                  *            The payload of the reply (may be {@code null})
309                  */
310                 public void setData(Bucket data) {
311                         this.data = data;
312                 }
313
314         }
315
316         /**
317          * Helper method to create {@link SimpleFieldSet}s with terser code.
318          *
319          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
320          */
321         private static class SimpleFieldSetConstructor {
322
323                 /** The field set being created. */
324                 private SimpleFieldSet simpleFieldSet;
325
326                 /**
327                  * Creates a new simple field set constructor.
328                  *
329                  * @param shortLived
330                  *            {@code true} if the resulting simple field set should be
331                  *            short-lived, {@code false} otherwise
332                  */
333                 private SimpleFieldSetConstructor(boolean shortLived) {
334                         simpleFieldSet = new SimpleFieldSet(shortLived);
335                 }
336
337                 //
338                 // ACCESSORS
339                 //
340
341                 /**
342                  * Returns the created simple field set.
343                  *
344                  * @return The created simple field set
345                  */
346                 public SimpleFieldSet get() {
347                         return simpleFieldSet;
348                 }
349
350                 /**
351                  * Sets the field with the given name to the given value.
352                  *
353                  * @param name
354                  *            The name of the fleld
355                  * @param value
356                  *            The value of the field
357                  * @return This constructor (for method chaining)
358                  */
359                 public SimpleFieldSetConstructor put(String name, String value) {
360                         simpleFieldSet.putOverwrite(name, value);
361                         return this;
362                 }
363
364                 //
365                 // ACTIONS
366                 //
367
368                 /**
369                  * Creates a new simple field set constructor.
370                  *
371                  * @return The created simple field set constructor
372                  */
373                 public static SimpleFieldSetConstructor create() {
374                         return create(true);
375                 }
376
377                 /**
378                  * Creates a new simple field set constructor.
379                  *
380                  * @param shortLived
381                  *            {@code true} if the resulting simple field set should be
382                  *            short-lived, {@code false} otherwise
383                  * @return The created simple field set constructor
384                  */
385                 public static SimpleFieldSetConstructor create(boolean shortLived) {
386                         SimpleFieldSetConstructor simpleFieldSetConstructor = new SimpleFieldSetConstructor(shortLived);
387                         return simpleFieldSetConstructor;
388                 }
389
390         }
391
392 }