2 * Sone - DefaultOwnIdentity.java - Copyright © 2010 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.freenet.wot;
21 import java.util.Map.Entry;
24 import net.pterodactylus.util.validation.Validation;
27 * An own identity is an identity that the owner of the node has full control
30 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
32 public class DefaultOwnIdentity extends DefaultIdentity implements OwnIdentity {
34 /** The identity manager. */
35 private final WebOfTrustConnector webOfTrustConnector;
37 /** The insert URI of the identity. */
38 private final String insertUri;
41 * Creates a new own identity.
43 * @param webOfTrustConnector
44 * The identity manager
46 * The ID of the identity
48 * The nickname of the identity
50 * The request URI of the identity
52 * The insert URI of the identity
54 public DefaultOwnIdentity(WebOfTrustConnector webOfTrustConnector, String id, String nickname, String requestUri, String insertUri) {
55 super(webOfTrustConnector, id, nickname, requestUri);
56 this.webOfTrustConnector = webOfTrustConnector;
57 this.insertUri = insertUri;
68 public String getInsertUri() {
76 public void addContext(String context) throws WebOfTrustException {
77 webOfTrustConnector.addContext(this, context);
78 addContextPrivate(context);
85 public void removeContext(String context) throws WebOfTrustException {
86 webOfTrustConnector.removeContext(this, context);
87 removeContextPrivate(context);
94 public void setContexts(Set<String> contexts) throws WebOfTrustException {
95 for (String context : getContexts()) {
96 if (!contexts.contains(context)) {
97 webOfTrustConnector.removeContext(this, context);
100 for (String context : contexts) {
101 if (!getContexts().contains(context)) {
102 webOfTrustConnector.addContext(this, context);
105 setContextsPrivate(contexts);
112 public void setProperty(String name, String value) throws WebOfTrustException {
113 webOfTrustConnector.setProperty(this, name, value);
114 setPropertyPrivate(name, value);
121 public void removeProperty(String name) throws WebOfTrustException {
122 webOfTrustConnector.removeProperty(this, name);
123 removePropertyPrivate(name);
130 public void setProperties(Map<String, String> properties) throws WebOfTrustException {
131 for (Entry<String, String> oldProperty : getProperties().entrySet()) {
132 if (!properties.containsKey(oldProperty.getKey())) {
133 webOfTrustConnector.removeProperty(this, oldProperty.getKey());
135 webOfTrustConnector.setProperty(this, oldProperty.getKey(), properties.get(oldProperty.getKey()));
138 for (Entry<String, String> newProperty : properties.entrySet()) {
139 if (!getProperties().containsKey(newProperty.getKey())) {
140 webOfTrustConnector.setProperty(this, newProperty.getKey(), newProperty.getValue());
143 setPropertiesPrivate(properties);
150 public void setTrust(Identity target, int trustValue, String comment) throws WebOfTrustException {
151 Validation.begin().isNotNull("Trust Target", target).isNotNull("Trust Comment", comment).isLessOrEqual("Trust Value", trustValue, 100).isGreaterOrEqual("Trust Value", trustValue, -100).check();
152 webOfTrustConnector.setTrust(this, target, trustValue, comment);
153 if (target instanceof DefaultIdentity) {
154 ((DefaultIdentity) target).setTrustPrivate(this, new Trust(trustValue, trustValue, 0));
162 public void removeTrust(Identity target) throws WebOfTrustException {
163 Validation.begin().isNotNull("Trust Target", target).check();
164 webOfTrustConnector.removeTrust(this, target);
165 if (target instanceof DefaultIdentity) {
166 ((DefaultIdentity) target).setTrustPrivate(this, new Trust(null, null, null));