*/
public class Identity {
+ /** The Web of Trust connector. */
+ protected final WebOfTrustConnector webOfTrustConnector;
+
/** The ID of the identity. */
private final String id;
/**
* Creates a new identity.
*
+ * @param webOfTrustConnector
+ * The Web of Trust connector
* @param id
* The ID of the identity
* @param nickname
* @param requestUri
* The request URI of the identity
*/
- public Identity(String id, String nickname, String requestUri) {
+ public Identity(WebOfTrustConnector webOfTrustConnector, String id, String nickname, String requestUri) {
+ this.webOfTrustConnector = webOfTrustConnector;
this.id = id;
this.nickname = nickname;
this.requestUri = requestUri;
* Returns the contexts of the identity.
*
* @return The contexts of the identity
+ * @throws PluginException
+ * if an error occured communicating with the Web of Trust
+ * plugin
*/
- public Set<String> getContexts() {
+ public Set<String> getContexts() throws PluginException {
+ return getContexts(false);
+ }
+
+ /**
+ * Returns the contexts of the identity.
+ *
+ * @param forceReload
+ * {@code true} to force a reload of the contexts
+ * @return The contexts of the identity
+ * @throws PluginException
+ * if an error occured communicating with the Web of Trust
+ * plugin
+ */
+ public Set<String> getContexts(boolean forceReload) throws PluginException {
+ if (contexts.isEmpty() || forceReload) {
+ Set<String> contexts = webOfTrustConnector.loadIdentityContexts(this);
+ this.contexts.clear();
+ this.contexts.addAll(contexts);
+ }
return Collections.unmodifiableSet(contexts);
}
/**
* Creates a new own identity.
*
+ * @param webOfTrustConnector
+ * The Web of Trust connector
* @param id
* The ID of the identity
* @param nickname
* @param insertUri
* The insert URI of the identity
*/
- public OwnIdentity(String id, String nickname, String requestUri, String insertUri) {
- super(id, nickname, requestUri);
+ public OwnIdentity(WebOfTrustConnector webOfTrustConnector, String id, String nickname, String requestUri, String insertUri) {
+ super(webOfTrustConnector, id, nickname, requestUri);
this.insertUri = insertUri;
}
String requestUri = fields.get("RequestURI" + ownIdentityCounter);
String insertUri = fields.get("InsertURI" + ownIdentityCounter);
String nickname = fields.get("Nickname" + ownIdentityCounter);
- OwnIdentity ownIdentity = new OwnIdentity(id, nickname, requestUri, insertUri);
+ OwnIdentity ownIdentity = new OwnIdentity(this, id, nickname, requestUri, insertUri);
ownIdentities.add(ownIdentity);
}
return ownIdentities;
}
+ /**
+ * Loads the contexts of the given identity.
+ *
+ * @param identity
+ * The identity to load the contexts for
+ * @return The contexts of the identity
+ * @throws PluginException
+ * if an error occured talking to the Web of Trust plugin
+ */
+ public Set<String> loadIdentityContexts(Identity identity) throws PluginException {
+ Reply reply = performRequest("Identity", SimpleFieldSetConstructor.create().put("Message", "GetIdentity").put("TreeOwner", identity.getId()).put("Identity", identity.getId()).get());
+ SimpleFieldSet fields = reply.getFields();
+ int contextCounter = -1;
+ Set<String> contexts = new HashSet<String>();
+ while (true) {
+ String context = fields.get("Context" + ++contextCounter);
+ if (context == null) {
+ break;
+ }
+ contexts.add(context);
+ }
+ return contexts;
+ }
+
//
// PRIVATE ACTIONS
//