Add method to delete image.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
1 /*
2  * Sone - Core.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.core;
19
20 import java.net.MalformedURLException;
21 import java.util.ArrayList;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.HashSet;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.Set;
28 import java.util.logging.Level;
29 import java.util.logging.Logger;
30
31 import net.pterodactylus.sone.core.Options.DefaultOption;
32 import net.pterodactylus.sone.core.Options.Option;
33 import net.pterodactylus.sone.core.Options.OptionWatcher;
34 import net.pterodactylus.sone.data.Album;
35 import net.pterodactylus.sone.data.Client;
36 import net.pterodactylus.sone.data.Image;
37 import net.pterodactylus.sone.data.Post;
38 import net.pterodactylus.sone.data.Profile;
39 import net.pterodactylus.sone.data.Profile.Field;
40 import net.pterodactylus.sone.data.Reply;
41 import net.pterodactylus.sone.data.Sone;
42 import net.pterodactylus.sone.data.TemporaryImage;
43 import net.pterodactylus.sone.freenet.wot.Identity;
44 import net.pterodactylus.sone.freenet.wot.IdentityListener;
45 import net.pterodactylus.sone.freenet.wot.IdentityManager;
46 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
47 import net.pterodactylus.sone.freenet.wot.Trust;
48 import net.pterodactylus.sone.freenet.wot.WebOfTrustException;
49 import net.pterodactylus.sone.main.SonePlugin;
50 import net.pterodactylus.util.config.Configuration;
51 import net.pterodactylus.util.config.ConfigurationException;
52 import net.pterodactylus.util.logging.Logging;
53 import net.pterodactylus.util.number.Numbers;
54 import net.pterodactylus.util.validation.Validation;
55 import net.pterodactylus.util.version.Version;
56 import freenet.keys.FreenetURI;
57
58 /**
59  * The Sone core.
60  *
61  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
62  */
63 public class Core implements IdentityListener, UpdateListener, ImageInsertListener {
64
65         /**
66          * Enumeration for the possible states of a {@link Sone}.
67          *
68          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
69          */
70         public enum SoneStatus {
71
72                 /** The Sone is unknown, i.e. not yet downloaded. */
73                 unknown,
74
75                 /** The Sone is idle, i.e. not being downloaded or inserted. */
76                 idle,
77
78                 /** The Sone is currently being inserted. */
79                 inserting,
80
81                 /** The Sone is currently being downloaded. */
82                 downloading,
83         }
84
85         /** The logger. */
86         private static final Logger logger = Logging.getLogger(Core.class);
87
88         /** The options. */
89         private final Options options = new Options();
90
91         /** The preferences. */
92         private final Preferences preferences = new Preferences(options);
93
94         /** The core listener manager. */
95         private final CoreListenerManager coreListenerManager = new CoreListenerManager(this);
96
97         /** The configuration. */
98         private Configuration configuration;
99
100         /** Whether we’re currently saving the configuration. */
101         private boolean storingConfiguration = false;
102
103         /** The identity manager. */
104         private final IdentityManager identityManager;
105
106         /** Interface to freenet. */
107         private final FreenetInterface freenetInterface;
108
109         /** The Sone downloader. */
110         private final SoneDownloader soneDownloader;
111
112         /** The image inserter. */
113         private final ImageInserter imageInserter;
114
115         /** The update checker. */
116         private final UpdateChecker updateChecker;
117
118         /** Whether the core has been stopped. */
119         private volatile boolean stopped;
120
121         /** The Sones’ statuses. */
122         /* synchronize access on itself. */
123         private final Map<Sone, SoneStatus> soneStatuses = new HashMap<Sone, SoneStatus>();
124
125         /** Locked local Sones. */
126         /* synchronize on itself. */
127         private final Set<Sone> lockedSones = new HashSet<Sone>();
128
129         /** Sone inserters. */
130         /* synchronize access on this on localSones. */
131         private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
132
133         /** All local Sones. */
134         /* synchronize access on this on itself. */
135         private Map<String, Sone> localSones = new HashMap<String, Sone>();
136
137         /** All remote Sones. */
138         /* synchronize access on this on itself. */
139         private Map<String, Sone> remoteSones = new HashMap<String, Sone>();
140
141         /** All new Sones. */
142         private Set<String> newSones = new HashSet<String>();
143
144         /** All known Sones. */
145         /* synchronize access on {@link #newSones}. */
146         private Set<String> knownSones = new HashSet<String>();
147
148         /** All posts. */
149         private Map<String, Post> posts = new HashMap<String, Post>();
150
151         /** All new posts. */
152         private Set<String> newPosts = new HashSet<String>();
153
154         /** All known posts. */
155         /* synchronize access on {@link #newPosts}. */
156         private Set<String> knownPosts = new HashSet<String>();
157
158         /** All replies. */
159         private Map<String, Reply> replies = new HashMap<String, Reply>();
160
161         /** All new replies. */
162         private Set<String> newReplies = new HashSet<String>();
163
164         /** All known replies. */
165         private Set<String> knownReplies = new HashSet<String>();
166
167         /** All bookmarked posts. */
168         /* synchronize access on itself. */
169         private Set<String> bookmarkedPosts = new HashSet<String>();
170
171         /** Trusted identities, sorted by own identities. */
172         private Map<OwnIdentity, Set<Identity>> trustedIdentities = Collections.synchronizedMap(new HashMap<OwnIdentity, Set<Identity>>());
173
174         /** All known albums. */
175         private Map<String, Album> albums = new HashMap<String, Album>();
176
177         /** All known images. */
178         private Map<String, Image> images = new HashMap<String, Image>();
179
180         /** All temporary images. */
181         private Map<String, TemporaryImage> temporaryImages = new HashMap<String, TemporaryImage>();
182
183         /**
184          * Creates a new core.
185          *
186          * @param configuration
187          *            The configuration of the core
188          * @param freenetInterface
189          *            The freenet interface
190          * @param identityManager
191          *            The identity manager
192          */
193         public Core(Configuration configuration, FreenetInterface freenetInterface, IdentityManager identityManager) {
194                 this.configuration = configuration;
195                 this.freenetInterface = freenetInterface;
196                 this.identityManager = identityManager;
197                 this.soneDownloader = new SoneDownloader(this, freenetInterface);
198                 this.imageInserter = new ImageInserter(this, freenetInterface);
199                 this.updateChecker = new UpdateChecker(freenetInterface);
200         }
201
202         //
203         // LISTENER MANAGEMENT
204         //
205
206         /**
207          * Adds a new core listener.
208          *
209          * @param coreListener
210          *            The listener to add
211          */
212         public void addCoreListener(CoreListener coreListener) {
213                 coreListenerManager.addListener(coreListener);
214         }
215
216         /**
217          * Removes a core listener.
218          *
219          * @param coreListener
220          *            The listener to remove
221          */
222         public void removeCoreListener(CoreListener coreListener) {
223                 coreListenerManager.removeListener(coreListener);
224         }
225
226         //
227         // ACCESSORS
228         //
229
230         /**
231          * Sets the configuration to use. This will automatically save the current
232          * configuration to the given configuration.
233          *
234          * @param configuration
235          *            The new configuration to use
236          */
237         public void setConfiguration(Configuration configuration) {
238                 this.configuration = configuration;
239                 saveConfiguration();
240         }
241
242         /**
243          * Returns the options used by the core.
244          *
245          * @return The options of the core
246          */
247         public Preferences getPreferences() {
248                 return preferences;
249         }
250
251         /**
252          * Returns the identity manager used by the core.
253          *
254          * @return The identity manager
255          */
256         public IdentityManager getIdentityManager() {
257                 return identityManager;
258         }
259
260         /**
261          * Returns the update checker.
262          *
263          * @return The update checker
264          */
265         public UpdateChecker getUpdateChecker() {
266                 return updateChecker;
267         }
268
269         /**
270          * Returns the status of the given Sone.
271          *
272          * @param sone
273          *            The Sone to get the status for
274          * @return The status of the Sone
275          */
276         public SoneStatus getSoneStatus(Sone sone) {
277                 synchronized (soneStatuses) {
278                         return soneStatuses.get(sone);
279                 }
280         }
281
282         /**
283          * Sets the status of the given Sone.
284          *
285          * @param sone
286          *            The Sone to set the status of
287          * @param soneStatus
288          *            The status to set
289          */
290         public void setSoneStatus(Sone sone, SoneStatus soneStatus) {
291                 synchronized (soneStatuses) {
292                         soneStatuses.put(sone, soneStatus);
293                 }
294         }
295
296         /**
297          * Returns whether the given Sone is currently locked.
298          *
299          * @param sone
300          *            The sone to check
301          * @return {@code true} if the Sone is locked, {@code false} if it is not
302          */
303         public boolean isLocked(Sone sone) {
304                 synchronized (lockedSones) {
305                         return lockedSones.contains(sone);
306                 }
307         }
308
309         /**
310          * Returns all Sones, remote and local.
311          *
312          * @return All Sones
313          */
314         public Set<Sone> getSones() {
315                 Set<Sone> allSones = new HashSet<Sone>();
316                 allSones.addAll(getLocalSones());
317                 allSones.addAll(getRemoteSones());
318                 return allSones;
319         }
320
321         /**
322          * Returns the Sone with the given ID, regardless whether it’s local or
323          * remote.
324          *
325          * @param id
326          *            The ID of the Sone to get
327          * @return The Sone with the given ID, or {@code null} if there is no such
328          *         Sone
329          */
330         public Sone getSone(String id) {
331                 return getSone(id, true);
332         }
333
334         /**
335          * Returns the Sone with the given ID, regardless whether it’s local or
336          * remote.
337          *
338          * @param id
339          *            The ID of the Sone to get
340          * @param create
341          *            {@code true} to create a new Sone if none exists,
342          *            {@code false} to return {@code null} if a Sone with the given
343          *            ID does not exist
344          * @return The Sone with the given ID, or {@code null} if there is no such
345          *         Sone
346          */
347         public Sone getSone(String id, boolean create) {
348                 if (isLocalSone(id)) {
349                         return getLocalSone(id);
350                 }
351                 return getRemoteSone(id, create);
352         }
353
354         /**
355          * Checks whether the core knows a Sone with the given ID.
356          *
357          * @param id
358          *            The ID of the Sone
359          * @return {@code true} if there is a Sone with the given ID, {@code false}
360          *         otherwise
361          */
362         public boolean hasSone(String id) {
363                 return isLocalSone(id) || isRemoteSone(id);
364         }
365
366         /**
367          * Returns whether the given Sone is a local Sone.
368          *
369          * @param sone
370          *            The Sone to check for its locality
371          * @return {@code true} if the given Sone is local, {@code false} otherwise
372          */
373         public boolean isLocalSone(Sone sone) {
374                 synchronized (localSones) {
375                         return localSones.containsKey(sone.getId());
376                 }
377         }
378
379         /**
380          * Returns whether the given ID is the ID of a local Sone.
381          *
382          * @param id
383          *            The Sone ID to check for its locality
384          * @return {@code true} if the given ID is a local Sone, {@code false}
385          *         otherwise
386          */
387         public boolean isLocalSone(String id) {
388                 synchronized (localSones) {
389                         return localSones.containsKey(id);
390                 }
391         }
392
393         /**
394          * Returns all local Sones.
395          *
396          * @return All local Sones
397          */
398         public Set<Sone> getLocalSones() {
399                 synchronized (localSones) {
400                         return new HashSet<Sone>(localSones.values());
401                 }
402         }
403
404         /**
405          * Returns the local Sone with the given ID.
406          *
407          * @param id
408          *            The ID of the Sone to get
409          * @return The Sone with the given ID
410          */
411         public Sone getLocalSone(String id) {
412                 return getLocalSone(id, true);
413         }
414
415         /**
416          * Returns the local Sone with the given ID, optionally creating a new Sone.
417          *
418          * @param id
419          *            The ID of the Sone
420          * @param create
421          *            {@code true} to create a new Sone if none exists,
422          *            {@code false} to return null if none exists
423          * @return The Sone with the given ID, or {@code null}
424          */
425         public Sone getLocalSone(String id, boolean create) {
426                 synchronized (localSones) {
427                         Sone sone = localSones.get(id);
428                         if ((sone == null) && create) {
429                                 sone = new Sone(id);
430                                 localSones.put(id, sone);
431                                 setSoneStatus(sone, SoneStatus.unknown);
432                         }
433                         return sone;
434                 }
435         }
436
437         /**
438          * Returns all remote Sones.
439          *
440          * @return All remote Sones
441          */
442         public Set<Sone> getRemoteSones() {
443                 synchronized (remoteSones) {
444                         return new HashSet<Sone>(remoteSones.values());
445                 }
446         }
447
448         /**
449          * Returns the remote Sone with the given ID.
450          *
451          * @param id
452          *            The ID of the remote Sone to get
453          * @return The Sone with the given ID
454          */
455         public Sone getRemoteSone(String id) {
456                 return getRemoteSone(id, true);
457         }
458
459         /**
460          * Returns the remote Sone with the given ID.
461          *
462          * @param id
463          *            The ID of the remote Sone to get
464          * @param create
465          *            {@code true} to always create a Sone, {@code false} to return
466          *            {@code null} if no Sone with the given ID exists
467          * @return The Sone with the given ID
468          */
469         public Sone getRemoteSone(String id, boolean create) {
470                 synchronized (remoteSones) {
471                         Sone sone = remoteSones.get(id);
472                         if ((sone == null) && create) {
473                                 sone = new Sone(id);
474                                 remoteSones.put(id, sone);
475                                 setSoneStatus(sone, SoneStatus.unknown);
476                         }
477                         return sone;
478                 }
479         }
480
481         /**
482          * Returns whether the given Sone is a remote Sone.
483          *
484          * @param sone
485          *            The Sone to check
486          * @return {@code true} if the given Sone is a remote Sone, {@code false}
487          *         otherwise
488          */
489         public boolean isRemoteSone(Sone sone) {
490                 synchronized (remoteSones) {
491                         return remoteSones.containsKey(sone.getId());
492                 }
493         }
494
495         /**
496          * Returns whether the Sone with the given ID is a remote Sone.
497          *
498          * @param id
499          *            The ID of the Sone to check
500          * @return {@code true} if the Sone with the given ID is a remote Sone,
501          *         {@code false} otherwise
502          */
503         public boolean isRemoteSone(String id) {
504                 synchronized (remoteSones) {
505                         return remoteSones.containsKey(id);
506                 }
507         }
508
509         /**
510          * Returns whether the Sone with the given ID is a new Sone.
511          *
512          * @param soneId
513          *            The ID of the sone to check for
514          * @return {@code true} if the given Sone is new, false otherwise
515          */
516         public boolean isNewSone(String soneId) {
517                 synchronized (newSones) {
518                         return !knownSones.contains(soneId) && newSones.contains(soneId);
519                 }
520         }
521
522         /**
523          * Returns whether the given Sone has been modified.
524          *
525          * @param sone
526          *            The Sone to check for modifications
527          * @return {@code true} if a modification has been detected in the Sone,
528          *         {@code false} otherwise
529          */
530         public boolean isModifiedSone(Sone sone) {
531                 return (soneInserters.containsKey(sone)) ? soneInserters.get(sone).isModified() : false;
532         }
533
534         /**
535          * Returns whether the target Sone is trusted by the origin Sone.
536          *
537          * @param origin
538          *            The origin Sone
539          * @param target
540          *            The target Sone
541          * @return {@code true} if the target Sone is trusted by the origin Sone
542          */
543         public boolean isSoneTrusted(Sone origin, Sone target) {
544                 return trustedIdentities.containsKey(origin) && trustedIdentities.get(origin.getIdentity()).contains(target);
545         }
546
547         /**
548          * Returns the post with the given ID.
549          *
550          * @param postId
551          *            The ID of the post to get
552          * @return The post, or {@code null} if there is no such post
553          */
554         public Post getPost(String postId) {
555                 return getPost(postId, true);
556         }
557
558         /**
559          * Returns the post with the given ID, optionally creating a new post.
560          *
561          * @param postId
562          *            The ID of the post to get
563          * @param create
564          *            {@code true} it create a new post if no post with the given ID
565          *            exists, {@code false} to return {@code null}
566          * @return The post, or {@code null} if there is no such post
567          */
568         public Post getPost(String postId, boolean create) {
569                 synchronized (posts) {
570                         Post post = posts.get(postId);
571                         if ((post == null) && create) {
572                                 post = new Post(postId);
573                                 posts.put(postId, post);
574                         }
575                         return post;
576                 }
577         }
578
579         /**
580          * Returns whether the given post ID is new.
581          *
582          * @param postId
583          *            The post ID
584          * @return {@code true} if the post is considered to be new, {@code false}
585          *         otherwise
586          */
587         public boolean isNewPost(String postId) {
588                 synchronized (newPosts) {
589                         return !knownPosts.contains(postId) && newPosts.contains(postId);
590                 }
591         }
592
593         /**
594          * Returns the reply with the given ID. If there is no reply with the given
595          * ID yet, a new one is created.
596          *
597          * @param replyId
598          *            The ID of the reply to get
599          * @return The reply
600          */
601         public Reply getReply(String replyId) {
602                 return getReply(replyId, true);
603         }
604
605         /**
606          * Returns the reply with the given ID. If there is no reply with the given
607          * ID yet, a new one is created, unless {@code create} is false in which
608          * case {@code null} is returned.
609          *
610          * @param replyId
611          *            The ID of the reply to get
612          * @param create
613          *            {@code true} to always return a {@link Reply}, {@code false}
614          *            to return {@code null} if no reply can be found
615          * @return The reply, or {@code null} if there is no such reply
616          */
617         public Reply getReply(String replyId, boolean create) {
618                 synchronized (replies) {
619                         Reply reply = replies.get(replyId);
620                         if (create && (reply == null)) {
621                                 reply = new Reply(replyId);
622                                 replies.put(replyId, reply);
623                         }
624                         return reply;
625                 }
626         }
627
628         /**
629          * Returns all replies for the given post, order ascending by time.
630          *
631          * @param post
632          *            The post to get all replies for
633          * @return All replies for the given post
634          */
635         public List<Reply> getReplies(Post post) {
636                 Set<Sone> sones = getSones();
637                 List<Reply> replies = new ArrayList<Reply>();
638                 for (Sone sone : sones) {
639                         for (Reply reply : sone.getReplies()) {
640                                 if (reply.getPost().equals(post)) {
641                                         replies.add(reply);
642                                 }
643                         }
644                 }
645                 Collections.sort(replies, Reply.TIME_COMPARATOR);
646                 return replies;
647         }
648
649         /**
650          * Returns whether the reply with the given ID is new.
651          *
652          * @param replyId
653          *            The ID of the reply to check
654          * @return {@code true} if the reply is considered to be new, {@code false}
655          *         otherwise
656          */
657         public boolean isNewReply(String replyId) {
658                 synchronized (newReplies) {
659                         return !knownReplies.contains(replyId) && newReplies.contains(replyId);
660                 }
661         }
662
663         /**
664          * Returns all Sones that have liked the given post.
665          *
666          * @param post
667          *            The post to get the liking Sones for
668          * @return The Sones that like the given post
669          */
670         public Set<Sone> getLikes(Post post) {
671                 Set<Sone> sones = new HashSet<Sone>();
672                 for (Sone sone : getSones()) {
673                         if (sone.getLikedPostIds().contains(post.getId())) {
674                                 sones.add(sone);
675                         }
676                 }
677                 return sones;
678         }
679
680         /**
681          * Returns all Sones that have liked the given reply.
682          *
683          * @param reply
684          *            The reply to get the liking Sones for
685          * @return The Sones that like the given reply
686          */
687         public Set<Sone> getLikes(Reply reply) {
688                 Set<Sone> sones = new HashSet<Sone>();
689                 for (Sone sone : getSones()) {
690                         if (sone.getLikedReplyIds().contains(reply.getId())) {
691                                 sones.add(sone);
692                         }
693                 }
694                 return sones;
695         }
696
697         /**
698          * Returns whether the given post is bookmarked.
699          *
700          * @param post
701          *            The post to check
702          * @return {@code true} if the given post is bookmarked, {@code false}
703          *         otherwise
704          */
705         public boolean isBookmarked(Post post) {
706                 return isPostBookmarked(post.getId());
707         }
708
709         /**
710          * Returns whether the post with the given ID is bookmarked.
711          *
712          * @param id
713          *            The ID of the post to check
714          * @return {@code true} if the post with the given ID is bookmarked,
715          *         {@code false} otherwise
716          */
717         public boolean isPostBookmarked(String id) {
718                 synchronized (bookmarkedPosts) {
719                         return bookmarkedPosts.contains(id);
720                 }
721         }
722
723         /**
724          * Returns all currently known bookmarked posts.
725          *
726          * @return All bookmarked posts
727          */
728         public Set<Post> getBookmarkedPosts() {
729                 Set<Post> posts = new HashSet<Post>();
730                 synchronized (bookmarkedPosts) {
731                         for (String bookmarkedPostId : bookmarkedPosts) {
732                                 Post post = getPost(bookmarkedPostId, false);
733                                 if (post != null) {
734                                         posts.add(post);
735                                 }
736                         }
737                 }
738                 return posts;
739         }
740
741         /**
742          * Returns the album with the given ID, creating a new album if no album
743          * with the given ID can be found.
744          *
745          * @param albumId
746          *            The ID of the album
747          * @return The album with the given ID
748          */
749         public Album getAlbum(String albumId) {
750                 return getAlbum(albumId, true);
751         }
752
753         /**
754          * Returns the album with the given ID, optionally creating a new album if
755          * an album with the given ID can not be found.
756          *
757          * @param albumId
758          *            The ID of the album
759          * @param create
760          *            {@code true} to create a new album if none exists for the
761          *            given ID
762          * @return The album with the given ID, or {@code null} if no album with the
763          *         given ID exists and {@code create} is {@code false}
764          */
765         public Album getAlbum(String albumId, boolean create) {
766                 synchronized (albums) {
767                         Album album = albums.get(albumId);
768                         if (create && (album == null)) {
769                                 album = new Album(albumId);
770                                 albums.put(albumId, album);
771                         }
772                         return album;
773                 }
774         }
775
776         /**
777          * Returns the image with the given ID, creating it if necessary.
778          *
779          * @param imageId
780          *            The ID of the image
781          * @return The image with the given ID
782          */
783         public Image getImage(String imageId) {
784                 return getImage(imageId, true);
785         }
786
787         /**
788          * Returns the image with the given ID, optionally creating it if it does
789          * not exist.
790          *
791          * @param imageId
792          *            The ID of the image
793          * @param create
794          *            {@code true} to create an image if none exists with the given
795          *            ID
796          * @return The image with the given ID, or {@code null} if none exists and
797          *         none was created
798          */
799         public Image getImage(String imageId, boolean create) {
800                 synchronized (images) {
801                         Image image = images.get(imageId);
802                         if (create && (image == null)) {
803                                 image = new Image(imageId);
804                                 images.put(imageId, image);
805                         }
806                         return image;
807                 }
808         }
809
810         /**
811          * Returns the temporary image with the given ID.
812          *
813          * @param imageId
814          *            The ID of the temporary image
815          * @return The temporary image, or {@code null} if there is no temporary
816          *         image with the given ID
817          */
818         public TemporaryImage getTemporaryImage(String imageId) {
819                 synchronized (temporaryImages) {
820                         return temporaryImages.get(imageId);
821                 }
822         }
823
824         //
825         // ACTIONS
826         //
827
828         /**
829          * Locks the given Sone. A locked Sone will not be inserted by
830          * {@link SoneInserter} until it is {@link #unlockSone(Sone) unlocked}
831          * again.
832          *
833          * @param sone
834          *            The sone to lock
835          */
836         public void lockSone(Sone sone) {
837                 synchronized (lockedSones) {
838                         if (lockedSones.add(sone)) {
839                                 coreListenerManager.fireSoneLocked(sone);
840                         }
841                 }
842         }
843
844         /**
845          * Unlocks the given Sone.
846          *
847          * @see #lockSone(Sone)
848          * @param sone
849          *            The sone to unlock
850          */
851         public void unlockSone(Sone sone) {
852                 synchronized (lockedSones) {
853                         if (lockedSones.remove(sone)) {
854                                 coreListenerManager.fireSoneUnlocked(sone);
855                         }
856                 }
857         }
858
859         /**
860          * Adds a local Sone from the given ID which has to be the ID of an own
861          * identity.
862          *
863          * @param id
864          *            The ID of an own identity to add a Sone for
865          * @return The added (or already existing) Sone
866          */
867         public Sone addLocalSone(String id) {
868                 synchronized (localSones) {
869                         if (localSones.containsKey(id)) {
870                                 logger.log(Level.FINE, "Tried to add known local Sone: %s", id);
871                                 return localSones.get(id);
872                         }
873                         OwnIdentity ownIdentity = identityManager.getOwnIdentity(id);
874                         if (ownIdentity == null) {
875                                 logger.log(Level.INFO, "Invalid Sone ID: %s", id);
876                                 return null;
877                         }
878                         return addLocalSone(ownIdentity);
879                 }
880         }
881
882         /**
883          * Adds a local Sone from the given own identity.
884          *
885          * @param ownIdentity
886          *            The own identity to create a Sone from
887          * @return The added (or already existing) Sone
888          */
889         public Sone addLocalSone(OwnIdentity ownIdentity) {
890                 if (ownIdentity == null) {
891                         logger.log(Level.WARNING, "Given OwnIdentity is null!");
892                         return null;
893                 }
894                 synchronized (localSones) {
895                         final Sone sone;
896                         try {
897                                 sone = getLocalSone(ownIdentity.getId()).setIdentity(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
898                         } catch (MalformedURLException mue1) {
899                                 logger.log(Level.SEVERE, "Could not convert the Identity’s URIs to Freenet URIs: " + ownIdentity.getInsertUri() + ", " + ownIdentity.getRequestUri(), mue1);
900                                 return null;
901                         }
902                         sone.setLatestEdition(Numbers.safeParseLong(ownIdentity.getProperty("Sone.LatestEdition"), (long) 0));
903                         sone.setClient(new Client("Sone", SonePlugin.VERSION.toString()));
904                         /* TODO - load posts ’n stuff */
905                         localSones.put(ownIdentity.getId(), sone);
906                         final SoneInserter soneInserter = new SoneInserter(this, freenetInterface, sone);
907                         soneInserters.put(sone, soneInserter);
908                         setSoneStatus(sone, SoneStatus.idle);
909                         loadSone(sone);
910                         if (!preferences.isSoneRescueMode()) {
911                                 soneInserter.start();
912                         }
913                         new Thread(new Runnable() {
914
915                                 @Override
916                                 @SuppressWarnings("synthetic-access")
917                                 public void run() {
918                                         if (!preferences.isSoneRescueMode()) {
919                                                 soneDownloader.fetchSone(sone);
920                                                 return;
921                                         }
922                                         logger.log(Level.INFO, "Trying to restore Sone from Freenet…");
923                                         coreListenerManager.fireRescuingSone(sone);
924                                         lockSone(sone);
925                                         long edition = sone.getLatestEdition();
926                                         while (!stopped && (edition >= 0) && preferences.isSoneRescueMode()) {
927                                                 logger.log(Level.FINE, "Downloading edition " + edition + "…");
928                                                 soneDownloader.fetchSone(sone, sone.getRequestUri().setKeyType("SSK").setDocName("Sone-" + edition));
929                                                 --edition;
930                                         }
931                                         logger.log(Level.INFO, "Finished restoring Sone from Freenet, starting Inserter…");
932                                         saveSone(sone);
933                                         coreListenerManager.fireRescuedSone(sone);
934                                         soneInserter.start();
935                                 }
936
937                         }, "Sone Downloader").start();
938                         return sone;
939                 }
940         }
941
942         /**
943          * Creates a new Sone for the given own identity.
944          *
945          * @param ownIdentity
946          *            The own identity to create a Sone for
947          * @return The created Sone
948          */
949         public Sone createSone(OwnIdentity ownIdentity) {
950                 try {
951                         ownIdentity.addContext("Sone");
952                 } catch (WebOfTrustException wote1) {
953                         logger.log(Level.SEVERE, "Could not add “Sone” context to own identity: " + ownIdentity, wote1);
954                         return null;
955                 }
956                 Sone sone = addLocalSone(ownIdentity);
957                 return sone;
958         }
959
960         /**
961          * Adds the Sone of the given identity.
962          *
963          * @param identity
964          *            The identity whose Sone to add
965          * @return The added or already existing Sone
966          */
967         public Sone addRemoteSone(Identity identity) {
968                 if (identity == null) {
969                         logger.log(Level.WARNING, "Given Identity is null!");
970                         return null;
971                 }
972                 synchronized (remoteSones) {
973                         final Sone sone = getRemoteSone(identity.getId()).setIdentity(identity);
974                         boolean newSone = sone.getRequestUri() == null;
975                         sone.setRequestUri(getSoneUri(identity.getRequestUri()));
976                         sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), (long) 0));
977                         if (newSone) {
978                                 synchronized (newSones) {
979                                         newSone = !knownSones.contains(sone.getId());
980                                         if (newSone) {
981                                                 newSones.add(sone.getId());
982                                         }
983                                 }
984                                 if (newSone) {
985                                         coreListenerManager.fireNewSoneFound(sone);
986                                 }
987                         }
988                         remoteSones.put(identity.getId(), sone);
989                         soneDownloader.addSone(sone);
990                         setSoneStatus(sone, SoneStatus.unknown);
991                         new Thread(new Runnable() {
992
993                                 @Override
994                                 @SuppressWarnings("synthetic-access")
995                                 public void run() {
996                                         soneDownloader.fetchSone(sone);
997                                 }
998
999                         }, "Sone Downloader").start();
1000                         return sone;
1001                 }
1002         }
1003
1004         /**
1005          * Retrieves the trust relationship from the origin to the target. If the
1006          * trust relationship can not be retrieved, {@code null} is returned.
1007          *
1008          * @see Identity#getTrust(OwnIdentity)
1009          * @param origin
1010          *            The origin of the trust tree
1011          * @param target
1012          *            The target of the trust
1013          * @return The trust relationship
1014          */
1015         public Trust getTrust(Sone origin, Sone target) {
1016                 if (!isLocalSone(origin)) {
1017                         logger.log(Level.WARNING, "Tried to get trust from remote Sone: %s", origin);
1018                         return null;
1019                 }
1020                 return target.getIdentity().getTrust((OwnIdentity) origin.getIdentity());
1021         }
1022
1023         /**
1024          * Sets the trust value of the given origin Sone for the target Sone.
1025          *
1026          * @param origin
1027          *            The origin Sone
1028          * @param target
1029          *            The target Sone
1030          * @param trustValue
1031          *            The trust value (from {@code -100} to {@code 100})
1032          */
1033         public void setTrust(Sone origin, Sone target, int trustValue) {
1034                 Validation.begin().isNotNull("Trust Origin", origin).check().isInstanceOf("Trust Origin", origin.getIdentity(), OwnIdentity.class).isNotNull("Trust Target", target).isLessOrEqual("Trust Value", trustValue, 100).isGreaterOrEqual("Trust Value", trustValue, -100).check();
1035                 try {
1036                         ((OwnIdentity) origin.getIdentity()).setTrust(target.getIdentity(), trustValue, preferences.getTrustComment());
1037                 } catch (WebOfTrustException wote1) {
1038                         logger.log(Level.WARNING, "Could not set trust for Sone: " + target, wote1);
1039                 }
1040         }
1041
1042         /**
1043          * Removes any trust assignment for the given target Sone.
1044          *
1045          * @param origin
1046          *            The trust origin
1047          * @param target
1048          *            The trust target
1049          */
1050         public void removeTrust(Sone origin, Sone target) {
1051                 Validation.begin().isNotNull("Trust Origin", origin).isNotNull("Trust Target", target).check().isInstanceOf("Trust Origin Identity", origin.getIdentity(), OwnIdentity.class).check();
1052                 try {
1053                         ((OwnIdentity) origin.getIdentity()).removeTrust(target.getIdentity());
1054                 } catch (WebOfTrustException wote1) {
1055                         logger.log(Level.WARNING, "Could not remove trust for Sone: " + target, wote1);
1056                 }
1057         }
1058
1059         /**
1060          * Assigns the configured positive trust value for the given target.
1061          *
1062          * @param origin
1063          *            The trust origin
1064          * @param target
1065          *            The trust target
1066          */
1067         public void trustSone(Sone origin, Sone target) {
1068                 setTrust(origin, target, preferences.getPositiveTrust());
1069         }
1070
1071         /**
1072          * Assigns the configured negative trust value for the given target.
1073          *
1074          * @param origin
1075          *            The trust origin
1076          * @param target
1077          *            The trust target
1078          */
1079         public void distrustSone(Sone origin, Sone target) {
1080                 setTrust(origin, target, preferences.getNegativeTrust());
1081         }
1082
1083         /**
1084          * Removes the trust assignment for the given target.
1085          *
1086          * @param origin
1087          *            The trust origin
1088          * @param target
1089          *            The trust target
1090          */
1091         public void untrustSone(Sone origin, Sone target) {
1092                 removeTrust(origin, target);
1093         }
1094
1095         /**
1096          * Updates the stores Sone with the given Sone.
1097          *
1098          * @param sone
1099          *            The updated Sone
1100          */
1101         public void updateSone(Sone sone) {
1102                 if (hasSone(sone.getId())) {
1103                         boolean soneRescueMode = isLocalSone(sone) && preferences.isSoneRescueMode();
1104                         Sone storedSone = getSone(sone.getId());
1105                         if (!soneRescueMode && !(sone.getTime() > storedSone.getTime())) {
1106                                 logger.log(Level.FINE, "Downloaded Sone %s is not newer than stored Sone %s.", new Object[] { sone, storedSone });
1107                                 return;
1108                         }
1109                         synchronized (posts) {
1110                                 if (!soneRescueMode) {
1111                                         for (Post post : storedSone.getPosts()) {
1112                                                 posts.remove(post.getId());
1113                                                 if (!sone.getPosts().contains(post)) {
1114                                                         coreListenerManager.firePostRemoved(post);
1115                                                 }
1116                                         }
1117                                 }
1118                                 List<Post> storedPosts = storedSone.getPosts();
1119                                 synchronized (newPosts) {
1120                                         for (Post post : sone.getPosts()) {
1121                                                 post.setSone(storedSone);
1122                                                 if (!storedPosts.contains(post) && !knownPosts.contains(post.getId())) {
1123                                                         newPosts.add(post.getId());
1124                                                         coreListenerManager.fireNewPostFound(post);
1125                                                 }
1126                                                 posts.put(post.getId(), post);
1127                                         }
1128                                 }
1129                         }
1130                         synchronized (replies) {
1131                                 if (!soneRescueMode) {
1132                                         for (Reply reply : storedSone.getReplies()) {
1133                                                 replies.remove(reply.getId());
1134                                                 if (!sone.getReplies().contains(reply)) {
1135                                                         coreListenerManager.fireReplyRemoved(reply);
1136                                                 }
1137                                         }
1138                                 }
1139                                 Set<Reply> storedReplies = storedSone.getReplies();
1140                                 synchronized (newReplies) {
1141                                         for (Reply reply : sone.getReplies()) {
1142                                                 reply.setSone(storedSone);
1143                                                 if (!storedReplies.contains(reply) && !knownReplies.contains(reply.getId())) {
1144                                                         newReplies.add(reply.getId());
1145                                                         coreListenerManager.fireNewReplyFound(reply);
1146                                                 }
1147                                                 replies.put(reply.getId(), reply);
1148                                         }
1149                                 }
1150                         }
1151                         synchronized (storedSone) {
1152                                 if (!soneRescueMode || (sone.getTime() > storedSone.getTime())) {
1153                                         storedSone.setTime(sone.getTime());
1154                                 }
1155                                 storedSone.setClient(sone.getClient());
1156                                 storedSone.setProfile(sone.getProfile());
1157                                 if (soneRescueMode) {
1158                                         for (Post post : sone.getPosts()) {
1159                                                 storedSone.addPost(post);
1160                                         }
1161                                         for (Reply reply : sone.getReplies()) {
1162                                                 storedSone.addReply(reply);
1163                                         }
1164                                         for (String likedPostId : sone.getLikedPostIds()) {
1165                                                 storedSone.addLikedPostId(likedPostId);
1166                                         }
1167                                         for (String likedReplyId : sone.getLikedReplyIds()) {
1168                                                 storedSone.addLikedReplyId(likedReplyId);
1169                                         }
1170                                 } else {
1171                                         storedSone.setPosts(sone.getPosts());
1172                                         storedSone.setReplies(sone.getReplies());
1173                                         storedSone.setLikePostIds(sone.getLikedPostIds());
1174                                         storedSone.setLikeReplyIds(sone.getLikedReplyIds());
1175                                 }
1176                                 storedSone.setLatestEdition(sone.getLatestEdition());
1177                         }
1178                 }
1179         }
1180
1181         /**
1182          * Deletes the given Sone. This will remove the Sone from the
1183          * {@link #getLocalSone(String) local Sones}, stops its {@link SoneInserter}
1184          * and remove the context from its identity.
1185          *
1186          * @param sone
1187          *            The Sone to delete
1188          */
1189         public void deleteSone(Sone sone) {
1190                 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1191                         logger.log(Level.WARNING, "Tried to delete Sone of non-own identity: %s", sone);
1192                         return;
1193                 }
1194                 synchronized (localSones) {
1195                         if (!localSones.containsKey(sone.getId())) {
1196                                 logger.log(Level.WARNING, "Tried to delete non-local Sone: %s", sone);
1197                                 return;
1198                         }
1199                         localSones.remove(sone.getId());
1200                         soneInserters.remove(sone).stop();
1201                 }
1202                 try {
1203                         ((OwnIdentity) sone.getIdentity()).removeContext("Sone");
1204                         ((OwnIdentity) sone.getIdentity()).removeProperty("Sone.LatestEdition");
1205                 } catch (WebOfTrustException wote1) {
1206                         logger.log(Level.WARNING, "Could not remove context and properties from Sone: " + sone, wote1);
1207                 }
1208                 try {
1209                         configuration.getLongValue("Sone/" + sone.getId() + "/Time").setValue(null);
1210                 } catch (ConfigurationException ce1) {
1211                         logger.log(Level.WARNING, "Could not remove Sone from configuration!", ce1);
1212                 }
1213         }
1214
1215         /**
1216          * Marks the given Sone as known. If the Sone was {@link #isNewPost(String)
1217          * new} before, a {@link CoreListener#markSoneKnown(Sone)} event is fired.
1218          *
1219          * @param sone
1220          *            The Sone to mark as known
1221          */
1222         public void markSoneKnown(Sone sone) {
1223                 synchronized (newSones) {
1224                         if (newSones.remove(sone.getId())) {
1225                                 knownSones.add(sone.getId());
1226                                 coreListenerManager.fireMarkSoneKnown(sone);
1227                                 saveConfiguration();
1228                         }
1229                 }
1230         }
1231
1232         /**
1233          * Loads and updates the given Sone from the configuration. If any error is
1234          * encountered, loading is aborted and the given Sone is not changed.
1235          *
1236          * @param sone
1237          *            The Sone to load and update
1238          */
1239         public void loadSone(Sone sone) {
1240                 if (!isLocalSone(sone)) {
1241                         logger.log(Level.FINE, "Tried to load non-local Sone: %s", sone);
1242                         return;
1243                 }
1244
1245                 /* load Sone. */
1246                 String sonePrefix = "Sone/" + sone.getId();
1247                 Long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue(null);
1248                 if (soneTime == null) {
1249                         logger.log(Level.INFO, "Could not load Sone because no Sone has been saved.");
1250                         return;
1251                 }
1252                 String lastInsertFingerprint = configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").getValue("");
1253
1254                 /* load profile. */
1255                 Profile profile = new Profile();
1256                 profile.setFirstName(configuration.getStringValue(sonePrefix + "/Profile/FirstName").getValue(null));
1257                 profile.setMiddleName(configuration.getStringValue(sonePrefix + "/Profile/MiddleName").getValue(null));
1258                 profile.setLastName(configuration.getStringValue(sonePrefix + "/Profile/LastName").getValue(null));
1259                 profile.setBirthDay(configuration.getIntValue(sonePrefix + "/Profile/BirthDay").getValue(null));
1260                 profile.setBirthMonth(configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").getValue(null));
1261                 profile.setBirthYear(configuration.getIntValue(sonePrefix + "/Profile/BirthYear").getValue(null));
1262
1263                 /* load profile fields. */
1264                 while (true) {
1265                         String fieldPrefix = sonePrefix + "/Profile/Fields/" + profile.getFields().size();
1266                         String fieldName = configuration.getStringValue(fieldPrefix + "/Name").getValue(null);
1267                         if (fieldName == null) {
1268                                 break;
1269                         }
1270                         String fieldValue = configuration.getStringValue(fieldPrefix + "/Value").getValue("");
1271                         profile.addField(fieldName).setValue(fieldValue);
1272                 }
1273
1274                 /* load posts. */
1275                 Set<Post> posts = new HashSet<Post>();
1276                 while (true) {
1277                         String postPrefix = sonePrefix + "/Posts/" + posts.size();
1278                         String postId = configuration.getStringValue(postPrefix + "/ID").getValue(null);
1279                         if (postId == null) {
1280                                 break;
1281                         }
1282                         String postRecipientId = configuration.getStringValue(postPrefix + "/Recipient").getValue(null);
1283                         long postTime = configuration.getLongValue(postPrefix + "/Time").getValue((long) 0);
1284                         String postText = configuration.getStringValue(postPrefix + "/Text").getValue(null);
1285                         if ((postTime == 0) || (postText == null)) {
1286                                 logger.log(Level.WARNING, "Invalid post found, aborting load!");
1287                                 return;
1288                         }
1289                         Post post = getPost(postId).setSone(sone).setTime(postTime).setText(postText);
1290                         if ((postRecipientId != null) && (postRecipientId.length() == 43)) {
1291                                 post.setRecipient(getSone(postRecipientId));
1292                         }
1293                         posts.add(post);
1294                 }
1295
1296                 /* load replies. */
1297                 Set<Reply> replies = new HashSet<Reply>();
1298                 while (true) {
1299                         String replyPrefix = sonePrefix + "/Replies/" + replies.size();
1300                         String replyId = configuration.getStringValue(replyPrefix + "/ID").getValue(null);
1301                         if (replyId == null) {
1302                                 break;
1303                         }
1304                         String postId = configuration.getStringValue(replyPrefix + "/Post/ID").getValue(null);
1305                         long replyTime = configuration.getLongValue(replyPrefix + "/Time").getValue((long) 0);
1306                         String replyText = configuration.getStringValue(replyPrefix + "/Text").getValue(null);
1307                         if ((postId == null) || (replyTime == 0) || (replyText == null)) {
1308                                 logger.log(Level.WARNING, "Invalid reply found, aborting load!");
1309                                 return;
1310                         }
1311                         replies.add(getReply(replyId).setSone(sone).setPost(getPost(postId)).setTime(replyTime).setText(replyText));
1312                 }
1313
1314                 /* load post likes. */
1315                 Set<String> likedPostIds = new HashSet<String>();
1316                 while (true) {
1317                         String likedPostId = configuration.getStringValue(sonePrefix + "/Likes/Post/" + likedPostIds.size() + "/ID").getValue(null);
1318                         if (likedPostId == null) {
1319                                 break;
1320                         }
1321                         likedPostIds.add(likedPostId);
1322                 }
1323
1324                 /* load reply likes. */
1325                 Set<String> likedReplyIds = new HashSet<String>();
1326                 while (true) {
1327                         String likedReplyId = configuration.getStringValue(sonePrefix + "/Likes/Reply/" + likedReplyIds.size() + "/ID").getValue(null);
1328                         if (likedReplyId == null) {
1329                                 break;
1330                         }
1331                         likedReplyIds.add(likedReplyId);
1332                 }
1333
1334                 /* load friends. */
1335                 Set<String> friends = new HashSet<String>();
1336                 while (true) {
1337                         String friendId = configuration.getStringValue(sonePrefix + "/Friends/" + friends.size() + "/ID").getValue(null);
1338                         if (friendId == null) {
1339                                 break;
1340                         }
1341                         friends.add(friendId);
1342                 }
1343
1344                 /* load albums. */
1345                 List<Album> topLevelAlbums = new ArrayList<Album>();
1346                 int albumCounter = 0;
1347                 while (true) {
1348                         String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1349                         String albumId = configuration.getStringValue(albumPrefix + "/ID").getValue(null);
1350                         if (albumId == null) {
1351                                 break;
1352                         }
1353                         String albumTitle = configuration.getStringValue(albumPrefix + "/Title").getValue(null);
1354                         String albumDescription = configuration.getStringValue(albumPrefix + "/Description").getValue(null);
1355                         String albumParentId = configuration.getStringValue(albumPrefix + "/Parent").getValue(null);
1356                         if ((albumTitle == null) || (albumDescription == null)) {
1357                                 logger.log(Level.WARNING, "Invalid album found, aborting load!");
1358                                 return;
1359                         }
1360                         Album album = getAlbum(albumId).setSone(sone).setTitle(albumTitle).setDescription(albumDescription);
1361                         if (albumParentId != null) {
1362                                 Album parentAlbum = getAlbum(albumParentId, false);
1363                                 if (parentAlbum == null) {
1364                                         logger.log(Level.WARNING, "Invalid parent album ID: " + albumParentId);
1365                                         return;
1366                                 }
1367                                 parentAlbum.addAlbum(album);
1368                         } else {
1369                                 topLevelAlbums.add(album);
1370                         }
1371                 }
1372
1373                 /* load images. */
1374                 int imageCounter = 0;
1375                 while (true) {
1376                         String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1377                         String imageId = configuration.getStringValue(imagePrefix + "/ID").getValue(null);
1378                         if (imageId == null) {
1379                                 break;
1380                         }
1381                         String albumId = configuration.getStringValue(imagePrefix + "/Album").getValue(null);
1382                         String key = configuration.getStringValue(imagePrefix + "/Key").getValue(null);
1383                         String title = configuration.getStringValue(imagePrefix + "/Title").getValue(null);
1384                         String description = configuration.getStringValue(imagePrefix + "/Description").getValue(null);
1385                         Long creationTime = configuration.getLongValue(imagePrefix + "/CreationTime").getValue(null);
1386                         Integer width = configuration.getIntValue(imagePrefix + "/Width").getValue(null);
1387                         Integer height = configuration.getIntValue(imagePrefix + "/Height").getValue(null);
1388                         if ((albumId == null) || (key == null) || (title == null) || (description == null) || (creationTime == null) || (width == null) || (height == null)) {
1389                                 logger.log(Level.WARNING, "Invalid image found, aborting load!");
1390                                 return;
1391                         }
1392                         Album album = getAlbum(albumId, false);
1393                         if (album == null) {
1394                                 logger.log(Level.WARNING, "Invalid album image encountered, aborting load!");
1395                                 return;
1396                         }
1397                         Image image = getImage(imageId).setSone(sone).setCreationTime(creationTime).setKey(key);
1398                         image.setTitle(title).setDescription(description).setWidth(width).setHeight(height);
1399                         album.addImage(image);
1400                 }
1401
1402                 /* load options. */
1403                 sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
1404                 sone.getOptions().getBooleanOption("AutoFollow").set(configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").getValue(null));
1405
1406                 /* if we’re still here, Sone was loaded successfully. */
1407                 synchronized (sone) {
1408                         sone.setTime(soneTime);
1409                         sone.setProfile(profile);
1410                         sone.setPosts(posts);
1411                         sone.setReplies(replies);
1412                         sone.setLikePostIds(likedPostIds);
1413                         sone.setLikeReplyIds(likedReplyIds);
1414                         sone.setFriends(friends);
1415                         sone.setAlbums(topLevelAlbums);
1416                         soneInserters.get(sone).setLastInsertFingerprint(lastInsertFingerprint);
1417                 }
1418                 synchronized (newSones) {
1419                         for (String friend : friends) {
1420                                 knownSones.add(friend);
1421                         }
1422                 }
1423                 synchronized (newPosts) {
1424                         for (Post post : posts) {
1425                                 knownPosts.add(post.getId());
1426                         }
1427                 }
1428                 synchronized (newReplies) {
1429                         for (Reply reply : replies) {
1430                                 knownReplies.add(reply.getId());
1431                         }
1432                 }
1433         }
1434
1435         /**
1436          * Saves the given Sone. This will persist all local settings for the given
1437          * Sone, such as the friends list and similar, private options.
1438          *
1439          * @param sone
1440          *            The Sone to save
1441          */
1442         public synchronized void saveSone(Sone sone) {
1443                 if (!isLocalSone(sone)) {
1444                         logger.log(Level.FINE, "Tried to save non-local Sone: %s", sone);
1445                         return;
1446                 }
1447                 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1448                         logger.log(Level.WARNING, "Local Sone without OwnIdentity found, refusing to save: %s", sone);
1449                         return;
1450                 }
1451
1452                 logger.log(Level.INFO, "Saving Sone: %s", sone);
1453                 try {
1454                         ((OwnIdentity) sone.getIdentity()).setProperty("Sone.LatestEdition", String.valueOf(sone.getLatestEdition()));
1455
1456                         /* save Sone into configuration. */
1457                         String sonePrefix = "Sone/" + sone.getId();
1458                         configuration.getLongValue(sonePrefix + "/Time").setValue(sone.getTime());
1459                         configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").setValue(soneInserters.get(sone).getLastInsertFingerprint());
1460
1461                         /* save profile. */
1462                         Profile profile = sone.getProfile();
1463                         configuration.getStringValue(sonePrefix + "/Profile/FirstName").setValue(profile.getFirstName());
1464                         configuration.getStringValue(sonePrefix + "/Profile/MiddleName").setValue(profile.getMiddleName());
1465                         configuration.getStringValue(sonePrefix + "/Profile/LastName").setValue(profile.getLastName());
1466                         configuration.getIntValue(sonePrefix + "/Profile/BirthDay").setValue(profile.getBirthDay());
1467                         configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").setValue(profile.getBirthMonth());
1468                         configuration.getIntValue(sonePrefix + "/Profile/BirthYear").setValue(profile.getBirthYear());
1469
1470                         /* save profile fields. */
1471                         int fieldCounter = 0;
1472                         for (Field profileField : profile.getFields()) {
1473                                 String fieldPrefix = sonePrefix + "/Profile/Fields/" + fieldCounter++;
1474                                 configuration.getStringValue(fieldPrefix + "/Name").setValue(profileField.getName());
1475                                 configuration.getStringValue(fieldPrefix + "/Value").setValue(profileField.getValue());
1476                         }
1477                         configuration.getStringValue(sonePrefix + "/Profile/Fields/" + fieldCounter + "/Name").setValue(null);
1478
1479                         /* save posts. */
1480                         int postCounter = 0;
1481                         for (Post post : sone.getPosts()) {
1482                                 String postPrefix = sonePrefix + "/Posts/" + postCounter++;
1483                                 configuration.getStringValue(postPrefix + "/ID").setValue(post.getId());
1484                                 configuration.getStringValue(postPrefix + "/Recipient").setValue((post.getRecipient() != null) ? post.getRecipient().getId() : null);
1485                                 configuration.getLongValue(postPrefix + "/Time").setValue(post.getTime());
1486                                 configuration.getStringValue(postPrefix + "/Text").setValue(post.getText());
1487                         }
1488                         configuration.getStringValue(sonePrefix + "/Posts/" + postCounter + "/ID").setValue(null);
1489
1490                         /* save replies. */
1491                         int replyCounter = 0;
1492                         for (Reply reply : sone.getReplies()) {
1493                                 String replyPrefix = sonePrefix + "/Replies/" + replyCounter++;
1494                                 configuration.getStringValue(replyPrefix + "/ID").setValue(reply.getId());
1495                                 configuration.getStringValue(replyPrefix + "/Post/ID").setValue(reply.getPost().getId());
1496                                 configuration.getLongValue(replyPrefix + "/Time").setValue(reply.getTime());
1497                                 configuration.getStringValue(replyPrefix + "/Text").setValue(reply.getText());
1498                         }
1499                         configuration.getStringValue(sonePrefix + "/Replies/" + replyCounter + "/ID").setValue(null);
1500
1501                         /* save post likes. */
1502                         int postLikeCounter = 0;
1503                         for (String postId : sone.getLikedPostIds()) {
1504                                 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter++ + "/ID").setValue(postId);
1505                         }
1506                         configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter + "/ID").setValue(null);
1507
1508                         /* save reply likes. */
1509                         int replyLikeCounter = 0;
1510                         for (String replyId : sone.getLikedReplyIds()) {
1511                                 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter++ + "/ID").setValue(replyId);
1512                         }
1513                         configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter + "/ID").setValue(null);
1514
1515                         /* save friends. */
1516                         int friendCounter = 0;
1517                         for (String friendId : sone.getFriends()) {
1518                                 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter++ + "/ID").setValue(friendId);
1519                         }
1520                         configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter + "/ID").setValue(null);
1521
1522                         /* save albums. first, collect in a flat structure, top-level first. */
1523                         List<Album> albums = new ArrayList<Album>();
1524                         albums.addAll(sone.getAlbums());
1525                         int lastAlbumIndex = 0;
1526                         while (lastAlbumIndex < albums.size()) {
1527                                 int previousAlbumCount = albums.size();
1528                                 for (Album album : new ArrayList<Album>(albums.subList(lastAlbumIndex, albums.size()))) {
1529                                         albums.addAll(album.getAlbums());
1530                                 }
1531                                 lastAlbumIndex = previousAlbumCount;
1532                         }
1533
1534                         int albumCounter = 0;
1535                         for (Album album : albums) {
1536                                 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1537                                 configuration.getStringValue(albumPrefix + "/ID").setValue(album.getId());
1538                                 configuration.getStringValue(albumPrefix + "/Title").setValue(album.getTitle());
1539                                 configuration.getStringValue(albumPrefix + "/Description").setValue(album.getDescription());
1540                                 configuration.getStringValue(albumPrefix + "/Parent").setValue(album.getParent() == null ? null : album.getParent().getId());
1541                         }
1542                         configuration.getStringValue(sonePrefix + "/Albums/" + albumCounter + "/ID").setValue(null);
1543
1544                         /* save images. */
1545                         int imageCounter = 0;
1546                         for (Album album : albums) {
1547                                 for (Image image : album.getImages()) {
1548                                         if (!image.isInserted()) {
1549                                                 continue;
1550                                         }
1551                                         String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1552                                         configuration.getStringValue(imagePrefix + "/ID").setValue(image.getId());
1553                                         configuration.getStringValue(imagePrefix + "/Album").setValue(album.getId());
1554                                         configuration.getStringValue(imagePrefix + "/Key").setValue(image.getKey());
1555                                         configuration.getStringValue(imagePrefix + "/Title").setValue(image.getTitle());
1556                                         configuration.getStringValue(imagePrefix + "/Description").setValue(image.getDescription());
1557                                         configuration.getLongValue(imagePrefix + "/CreationTime").setValue(image.getCreationTime());
1558                                         configuration.getIntValue(imagePrefix + "/Width").setValue(image.getWidth());
1559                                         configuration.getIntValue(imagePrefix + "/Height").setValue(image.getHeight());
1560                                 }
1561                         }
1562                         configuration.getStringValue(sonePrefix + "/Images/" + imageCounter + "/ID").setValue(null);
1563
1564                         /* save options. */
1565                         configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").setValue(sone.getOptions().getBooleanOption("AutoFollow").getReal());
1566
1567                         configuration.save();
1568                         logger.log(Level.INFO, "Sone %s saved.", sone);
1569                 } catch (ConfigurationException ce1) {
1570                         logger.log(Level.WARNING, "Could not save Sone: " + sone, ce1);
1571                 } catch (WebOfTrustException wote1) {
1572                         logger.log(Level.WARNING, "Could not set WoT property for Sone: " + sone, wote1);
1573                 }
1574         }
1575
1576         /**
1577          * Creates a new post.
1578          *
1579          * @param sone
1580          *            The Sone that creates the post
1581          * @param text
1582          *            The text of the post
1583          * @return The created post
1584          */
1585         public Post createPost(Sone sone, String text) {
1586                 return createPost(sone, System.currentTimeMillis(), text);
1587         }
1588
1589         /**
1590          * Creates a new post.
1591          *
1592          * @param sone
1593          *            The Sone that creates the post
1594          * @param time
1595          *            The time of the post
1596          * @param text
1597          *            The text of the post
1598          * @return The created post
1599          */
1600         public Post createPost(Sone sone, long time, String text) {
1601                 return createPost(sone, null, time, text);
1602         }
1603
1604         /**
1605          * Creates a new post.
1606          *
1607          * @param sone
1608          *            The Sone that creates the post
1609          * @param recipient
1610          *            The recipient Sone, or {@code null} if this post does not have
1611          *            a recipient
1612          * @param text
1613          *            The text of the post
1614          * @return The created post
1615          */
1616         public Post createPost(Sone sone, Sone recipient, String text) {
1617                 return createPost(sone, recipient, System.currentTimeMillis(), text);
1618         }
1619
1620         /**
1621          * Creates a new post.
1622          *
1623          * @param sone
1624          *            The Sone that creates the post
1625          * @param recipient
1626          *            The recipient Sone, or {@code null} if this post does not have
1627          *            a recipient
1628          * @param time
1629          *            The time of the post
1630          * @param text
1631          *            The text of the post
1632          * @return The created post
1633          */
1634         public Post createPost(Sone sone, Sone recipient, long time, String text) {
1635                 if (!isLocalSone(sone)) {
1636                         logger.log(Level.FINE, "Tried to create post for non-local Sone: %s", sone);
1637                         return null;
1638                 }
1639                 Post post = new Post(sone, time, text);
1640                 if (recipient != null) {
1641                         post.setRecipient(recipient);
1642                 }
1643                 synchronized (posts) {
1644                         posts.put(post.getId(), post);
1645                 }
1646                 synchronized (newPosts) {
1647                         knownPosts.add(post.getId());
1648                 }
1649                 sone.addPost(post);
1650                 saveSone(sone);
1651                 return post;
1652         }
1653
1654         /**
1655          * Deletes the given post.
1656          *
1657          * @param post
1658          *            The post to delete
1659          */
1660         public void deletePost(Post post) {
1661                 if (!isLocalSone(post.getSone())) {
1662                         logger.log(Level.WARNING, "Tried to delete post of non-local Sone: %s", post.getSone());
1663                         return;
1664                 }
1665                 post.getSone().removePost(post);
1666                 synchronized (posts) {
1667                         posts.remove(post.getId());
1668                 }
1669                 saveSone(post.getSone());
1670         }
1671
1672         /**
1673          * Marks the given post as known, if it is currently a new post (according
1674          * to {@link #isNewPost(String)}).
1675          *
1676          * @param post
1677          *            The post to mark as known
1678          */
1679         public void markPostKnown(Post post) {
1680                 synchronized (newPosts) {
1681                         if (newPosts.remove(post.getId())) {
1682                                 knownPosts.add(post.getId());
1683                                 coreListenerManager.fireMarkPostKnown(post);
1684                                 saveConfiguration();
1685                         }
1686                 }
1687         }
1688
1689         /**
1690          * Bookmarks the given post.
1691          *
1692          * @param post
1693          *            The post to bookmark
1694          */
1695         public void bookmark(Post post) {
1696                 bookmarkPost(post.getId());
1697         }
1698
1699         /**
1700          * Bookmarks the post with the given ID.
1701          *
1702          * @param id
1703          *            The ID of the post to bookmark
1704          */
1705         public void bookmarkPost(String id) {
1706                 synchronized (bookmarkedPosts) {
1707                         bookmarkedPosts.add(id);
1708                 }
1709         }
1710
1711         /**
1712          * Removes the given post from the bookmarks.
1713          *
1714          * @param post
1715          *            The post to unbookmark
1716          */
1717         public void unbookmark(Post post) {
1718                 unbookmarkPost(post.getId());
1719         }
1720
1721         /**
1722          * Removes the post with the given ID from the bookmarks.
1723          *
1724          * @param id
1725          *            The ID of the post to unbookmark
1726          */
1727         public void unbookmarkPost(String id) {
1728                 synchronized (bookmarkedPosts) {
1729                         bookmarkedPosts.remove(id);
1730                 }
1731         }
1732
1733         /**
1734          * Creates a new reply.
1735          *
1736          * @param sone
1737          *            The Sone that creates the reply
1738          * @param post
1739          *            The post that this reply refers to
1740          * @param text
1741          *            The text of the reply
1742          * @return The created reply
1743          */
1744         public Reply createReply(Sone sone, Post post, String text) {
1745                 return createReply(sone, post, System.currentTimeMillis(), text);
1746         }
1747
1748         /**
1749          * Creates a new reply.
1750          *
1751          * @param sone
1752          *            The Sone that creates the reply
1753          * @param post
1754          *            The post that this reply refers to
1755          * @param time
1756          *            The time of the reply
1757          * @param text
1758          *            The text of the reply
1759          * @return The created reply
1760          */
1761         public Reply createReply(Sone sone, Post post, long time, String text) {
1762                 if (!isLocalSone(sone)) {
1763                         logger.log(Level.FINE, "Tried to create reply for non-local Sone: %s", sone);
1764                         return null;
1765                 }
1766                 Reply reply = new Reply(sone, post, System.currentTimeMillis(), text);
1767                 synchronized (replies) {
1768                         replies.put(reply.getId(), reply);
1769                 }
1770                 synchronized (newReplies) {
1771                         knownReplies.add(reply.getId());
1772                 }
1773                 sone.addReply(reply);
1774                 saveSone(sone);
1775                 return reply;
1776         }
1777
1778         /**
1779          * Deletes the given reply.
1780          *
1781          * @param reply
1782          *            The reply to delete
1783          */
1784         public void deleteReply(Reply reply) {
1785                 Sone sone = reply.getSone();
1786                 if (!isLocalSone(sone)) {
1787                         logger.log(Level.FINE, "Tried to delete non-local reply: %s", reply);
1788                         return;
1789                 }
1790                 synchronized (replies) {
1791                         replies.remove(reply.getId());
1792                 }
1793                 sone.removeReply(reply);
1794                 saveSone(sone);
1795         }
1796
1797         /**
1798          * Marks the given reply as known, if it is currently a new reply (according
1799          * to {@link #isNewReply(String)}).
1800          *
1801          * @param reply
1802          *            The reply to mark as known
1803          */
1804         public void markReplyKnown(Reply reply) {
1805                 synchronized (newReplies) {
1806                         if (newReplies.remove(reply.getId())) {
1807                                 knownReplies.add(reply.getId());
1808                                 coreListenerManager.fireMarkReplyKnown(reply);
1809                                 saveConfiguration();
1810                         }
1811                 }
1812         }
1813
1814         /**
1815          * Creates a new top-level album for the given Sone.
1816          *
1817          * @param sone
1818          *            The Sone to create the album for
1819          * @return The new album
1820          */
1821         public Album createAlbum(Sone sone) {
1822                 return createAlbum(sone, null);
1823         }
1824
1825         /**
1826          * Creates a new album for the given Sone.
1827          *
1828          * @param sone
1829          *            The Sone to create the album for
1830          * @param parent
1831          *            The parent of the album (may be {@code null} to create a
1832          *            top-level album)
1833          * @return The new album
1834          */
1835         public Album createAlbum(Sone sone, Album parent) {
1836                 Album album = new Album();
1837                 synchronized (albums) {
1838                         albums.put(album.getId(), album);
1839                 }
1840                 album.setSone(sone);
1841                 if (parent != null) {
1842                         parent.addAlbum(album);
1843                 } else {
1844                         sone.addAlbum(album);
1845                 }
1846                 return album;
1847         }
1848
1849         /**
1850          * Deletes the given album. The owner of the album has to be a local Sone,
1851          * and the album has to be {@link Album#isEmpty() empty} to be deleted.
1852          *
1853          * @param album
1854          *            The album to remove
1855          */
1856         public void deleteAlbum(Album album) {
1857                 Validation.begin().isNotNull("Album", album).check().is("Local Sone", isLocalSone(album.getSone())).check();
1858                 if (!album.isEmpty()) {
1859                         return;
1860                 }
1861                 if (album.getParent() == null) {
1862                         album.getSone().removeAlbum(album);
1863                 } else {
1864                         album.getParent().removeAlbum(album);
1865                 }
1866                 synchronized (albums) {
1867                         albums.remove(album.getId());
1868                 }
1869                 saveSone(album.getSone());
1870         }
1871
1872         /**
1873          * Creates a new image.
1874          *
1875          * @param sone
1876          *            The Sone creating the image
1877          * @param album
1878          *            The album the image will be inserted into
1879          * @param temporaryImage
1880          *            The temporary image to create the image from
1881          * @return The newly created image
1882          */
1883         public Image createImage(Sone sone, Album album, TemporaryImage temporaryImage) {
1884                 Validation.begin().isNotNull("Sone", sone).isNotNull("Album", album).isNotNull("Temporary Image", temporaryImage).check().is("Local Sone", isLocalSone(sone)).check().isEqual("Owner and Album Owner", sone, album.getSone()).check();
1885                 Image image = new Image(temporaryImage.getId()).setSone(sone).setCreationTime(System.currentTimeMillis());
1886                 album.addImage(image);
1887                 synchronized (images) {
1888                         images.put(image.getId(), image);
1889                 }
1890                 imageInserter.insertImage(temporaryImage, image);
1891                 return image;
1892         }
1893
1894         /**
1895          * Deletes the given image. This method will also delete a matching
1896          * temporary image.
1897          *
1898          * @see #deleteTemporaryImage(TemporaryImage)
1899          * @param image
1900          *            The image to delete
1901          */
1902         public void deleteImage(Image image) {
1903                 Validation.begin().isNotNull("Image", image).check().is("Local Sone", isLocalSone(image.getSone())).check();
1904                 image.getAlbum().removeImage(image);
1905                 synchronized (images) {
1906                         images.remove(image.getId());
1907                 }
1908                 deleteTemporaryImage(image.getId());
1909                 saveSone(image.getSone());
1910         }
1911
1912         /**
1913          * Creates a new temporary image.
1914          *
1915          * @param mimeType
1916          *            The MIME type of the temporary image
1917          * @param imageData
1918          *            The encoded data of the image
1919          * @return The temporary image
1920          */
1921         public TemporaryImage createTemporaryImage(String mimeType, byte[] imageData) {
1922                 TemporaryImage temporaryImage = new TemporaryImage();
1923                 temporaryImage.setMimeType(mimeType).setImageData(imageData);
1924                 synchronized (temporaryImages) {
1925                         temporaryImages.put(temporaryImage.getId(), temporaryImage);
1926                 }
1927                 return temporaryImage;
1928         }
1929
1930         /**
1931          * Deletes the given temporary image.
1932          *
1933          * @param temporaryImage
1934          *            The temporary image to delete
1935          */
1936         public void deleteTemporaryImage(TemporaryImage temporaryImage) {
1937                 Validation.begin().isNotNull("Temporary Image", temporaryImage).check();
1938                 deleteTemporaryImage(temporaryImage.getId());
1939         }
1940
1941         /**
1942          * Deletes the temporary image with the given ID.
1943          *
1944          * @param imageId
1945          *            The ID of the temporary image to delete
1946          */
1947         public void deleteTemporaryImage(String imageId) {
1948                 Validation.begin().isNotNull("Temporary Image ID", imageId).check();
1949                 synchronized (temporaryImages) {
1950                         temporaryImages.remove(imageId);
1951                 }
1952                 Image image = getImage(imageId, false);
1953                 if (image != null) {
1954                         imageInserter.cancelImageInsert(image);
1955                 }
1956         }
1957
1958         /**
1959          * Starts the core.
1960          */
1961         public void start() {
1962                 loadConfiguration();
1963                 updateChecker.addUpdateListener(this);
1964                 updateChecker.start();
1965         }
1966
1967         /**
1968          * Stops the core.
1969          */
1970         public void stop() {
1971                 synchronized (localSones) {
1972                         for (SoneInserter soneInserter : soneInserters.values()) {
1973                                 soneInserter.stop();
1974                         }
1975                 }
1976                 updateChecker.stop();
1977                 updateChecker.removeUpdateListener(this);
1978                 soneDownloader.stop();
1979                 saveConfiguration();
1980                 stopped = true;
1981         }
1982
1983         /**
1984          * Saves the current options.
1985          */
1986         public void saveConfiguration() {
1987                 synchronized (configuration) {
1988                         if (storingConfiguration) {
1989                                 logger.log(Level.FINE, "Already storing configuration…");
1990                                 return;
1991                         }
1992                         storingConfiguration = true;
1993                 }
1994
1995                 /* store the options first. */
1996                 try {
1997                         configuration.getIntValue("Option/ConfigurationVersion").setValue(0);
1998                         configuration.getIntValue("Option/InsertionDelay").setValue(options.getIntegerOption("InsertionDelay").getReal());
1999                         configuration.getIntValue("Option/PositiveTrust").setValue(options.getIntegerOption("PositiveTrust").getReal());
2000                         configuration.getIntValue("Option/NegativeTrust").setValue(options.getIntegerOption("NegativeTrust").getReal());
2001                         configuration.getStringValue("Option/TrustComment").setValue(options.getStringOption("TrustComment").getReal());
2002                         configuration.getBooleanValue("Option/SoneRescueMode").setValue(options.getBooleanOption("SoneRescueMode").getReal());
2003                         configuration.getBooleanValue("Option/ClearOnNextRestart").setValue(options.getBooleanOption("ClearOnNextRestart").getReal());
2004                         configuration.getBooleanValue("Option/ReallyClearOnNextRestart").setValue(options.getBooleanOption("ReallyClearOnNextRestart").getReal());
2005
2006                         /* save known Sones. */
2007                         int soneCounter = 0;
2008                         synchronized (newSones) {
2009                                 for (String knownSoneId : knownSones) {
2010                                         configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").setValue(knownSoneId);
2011                                 }
2012                                 configuration.getStringValue("KnownSone/" + soneCounter + "/ID").setValue(null);
2013                         }
2014
2015                         /* save known posts. */
2016                         int postCounter = 0;
2017                         synchronized (newPosts) {
2018                                 for (String knownPostId : knownPosts) {
2019                                         configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").setValue(knownPostId);
2020                                 }
2021                                 configuration.getStringValue("KnownPosts/" + postCounter + "/ID").setValue(null);
2022                         }
2023
2024                         /* save known replies. */
2025                         int replyCounter = 0;
2026                         synchronized (newReplies) {
2027                                 for (String knownReplyId : knownReplies) {
2028                                         configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").setValue(knownReplyId);
2029                                 }
2030                                 configuration.getStringValue("KnownReplies/" + replyCounter + "/ID").setValue(null);
2031                         }
2032
2033                         /* save bookmarked posts. */
2034                         int bookmarkedPostCounter = 0;
2035                         synchronized (bookmarkedPosts) {
2036                                 for (String bookmarkedPostId : bookmarkedPosts) {
2037                                         configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(bookmarkedPostId);
2038                                 }
2039                         }
2040                         configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(null);
2041
2042                         /* now save it. */
2043                         configuration.save();
2044
2045                 } catch (ConfigurationException ce1) {
2046                         logger.log(Level.SEVERE, "Could not store configuration!", ce1);
2047                 } finally {
2048                         synchronized (configuration) {
2049                                 storingConfiguration = false;
2050                         }
2051                 }
2052         }
2053
2054         //
2055         // PRIVATE METHODS
2056         //
2057
2058         /**
2059          * Loads the configuration.
2060          */
2061         @SuppressWarnings("unchecked")
2062         private void loadConfiguration() {
2063                 /* create options. */
2064                 options.addIntegerOption("InsertionDelay", new DefaultOption<Integer>(60, new OptionWatcher<Integer>() {
2065
2066                         @Override
2067                         public void optionChanged(Option<Integer> option, Integer oldValue, Integer newValue) {
2068                                 SoneInserter.setInsertionDelay(newValue);
2069                         }
2070
2071                 }));
2072                 options.addIntegerOption("PositiveTrust", new DefaultOption<Integer>(75));
2073                 options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-100));
2074                 options.addStringOption("TrustComment", new DefaultOption<String>("Set from Sone Web Interface"));
2075                 options.addBooleanOption("SoneRescueMode", new DefaultOption<Boolean>(false));
2076                 options.addBooleanOption("ClearOnNextRestart", new DefaultOption<Boolean>(false));
2077                 options.addBooleanOption("ReallyClearOnNextRestart", new DefaultOption<Boolean>(false));
2078
2079                 /* read options from configuration. */
2080                 options.getBooleanOption("ClearOnNextRestart").set(configuration.getBooleanValue("Option/ClearOnNextRestart").getValue(null));
2081                 options.getBooleanOption("ReallyClearOnNextRestart").set(configuration.getBooleanValue("Option/ReallyClearOnNextRestart").getValue(null));
2082                 boolean clearConfiguration = options.getBooleanOption("ClearOnNextRestart").get() && options.getBooleanOption("ReallyClearOnNextRestart").get();
2083                 options.getBooleanOption("ClearOnNextRestart").set(null);
2084                 options.getBooleanOption("ReallyClearOnNextRestart").set(null);
2085                 if (clearConfiguration) {
2086                         /* stop loading the configuration. */
2087                         return;
2088                 }
2089
2090                 options.getIntegerOption("InsertionDelay").set(configuration.getIntValue("Option/InsertionDelay").getValue(null));
2091                 options.getIntegerOption("PositiveTrust").set(configuration.getIntValue("Option/PositiveTrust").getValue(null));
2092                 options.getIntegerOption("NegativeTrust").set(configuration.getIntValue("Option/NegativeTrust").getValue(null));
2093                 options.getStringOption("TrustComment").set(configuration.getStringValue("Option/TrustComment").getValue(null));
2094                 options.getBooleanOption("SoneRescueMode").set(configuration.getBooleanValue("Option/SoneRescueMode").getValue(null));
2095
2096                 /* load known Sones. */
2097                 int soneCounter = 0;
2098                 while (true) {
2099                         String knownSoneId = configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").getValue(null);
2100                         if (knownSoneId == null) {
2101                                 break;
2102                         }
2103                         synchronized (newSones) {
2104                                 knownSones.add(knownSoneId);
2105                         }
2106                 }
2107
2108                 /* load known posts. */
2109                 int postCounter = 0;
2110                 while (true) {
2111                         String knownPostId = configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").getValue(null);
2112                         if (knownPostId == null) {
2113                                 break;
2114                         }
2115                         synchronized (newPosts) {
2116                                 knownPosts.add(knownPostId);
2117                         }
2118                 }
2119
2120                 /* load known replies. */
2121                 int replyCounter = 0;
2122                 while (true) {
2123                         String knownReplyId = configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").getValue(null);
2124                         if (knownReplyId == null) {
2125                                 break;
2126                         }
2127                         synchronized (newReplies) {
2128                                 knownReplies.add(knownReplyId);
2129                         }
2130                 }
2131
2132                 /* load bookmarked posts. */
2133                 int bookmarkedPostCounter = 0;
2134                 while (true) {
2135                         String bookmarkedPostId = configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").getValue(null);
2136                         if (bookmarkedPostId == null) {
2137                                 break;
2138                         }
2139                         synchronized (bookmarkedPosts) {
2140                                 bookmarkedPosts.add(bookmarkedPostId);
2141                         }
2142                 }
2143
2144         }
2145
2146         /**
2147          * Generate a Sone URI from the given URI and latest edition.
2148          *
2149          * @param uriString
2150          *            The URI to derive the Sone URI from
2151          * @return The derived URI
2152          */
2153         private FreenetURI getSoneUri(String uriString) {
2154                 try {
2155                         FreenetURI uri = new FreenetURI(uriString).setDocName("Sone").setMetaString(new String[0]);
2156                         return uri;
2157                 } catch (MalformedURLException mue1) {
2158                         logger.log(Level.WARNING, "Could not create Sone URI from URI: " + uriString, mue1);
2159                         return null;
2160                 }
2161         }
2162
2163         //
2164         // INTERFACE IdentityListener
2165         //
2166
2167         /**
2168          * {@inheritDoc}
2169          */
2170         @Override
2171         public void ownIdentityAdded(OwnIdentity ownIdentity) {
2172                 logger.log(Level.FINEST, "Adding OwnIdentity: " + ownIdentity);
2173                 if (ownIdentity.hasContext("Sone")) {
2174                         trustedIdentities.put(ownIdentity, Collections.synchronizedSet(new HashSet<Identity>()));
2175                         addLocalSone(ownIdentity);
2176                 }
2177         }
2178
2179         /**
2180          * {@inheritDoc}
2181          */
2182         @Override
2183         public void ownIdentityRemoved(OwnIdentity ownIdentity) {
2184                 logger.log(Level.FINEST, "Removing OwnIdentity: " + ownIdentity);
2185                 trustedIdentities.remove(ownIdentity);
2186         }
2187
2188         /**
2189          * {@inheritDoc}
2190          */
2191         @Override
2192         public void identityAdded(OwnIdentity ownIdentity, Identity identity) {
2193                 logger.log(Level.FINEST, "Adding Identity: " + identity);
2194                 trustedIdentities.get(ownIdentity).add(identity);
2195                 addRemoteSone(identity);
2196         }
2197
2198         /**
2199          * {@inheritDoc}
2200          */
2201         @Override
2202         public void identityUpdated(OwnIdentity ownIdentity, final Identity identity) {
2203                 new Thread(new Runnable() {
2204
2205                         @Override
2206                         @SuppressWarnings("synthetic-access")
2207                         public void run() {
2208                                 Sone sone = getRemoteSone(identity.getId());
2209                                 sone.setIdentity(identity);
2210                                 soneDownloader.addSone(sone);
2211                                 soneDownloader.fetchSone(sone);
2212                         }
2213                 }).start();
2214         }
2215
2216         /**
2217          * {@inheritDoc}
2218          */
2219         @Override
2220         public void identityRemoved(OwnIdentity ownIdentity, Identity identity) {
2221                 trustedIdentities.get(ownIdentity).remove(identity);
2222         }
2223
2224         //
2225         // INTERFACE UpdateListener
2226         //
2227
2228         /**
2229          * {@inheritDoc}
2230          */
2231         @Override
2232         public void updateFound(Version version, long releaseTime, long latestEdition) {
2233                 coreListenerManager.fireUpdateFound(version, releaseTime, latestEdition);
2234         }
2235
2236         //
2237         // INTERFACE ImageInsertListener
2238         //
2239
2240         /**
2241          * {@inheritDoc}
2242          */
2243         @Override
2244         public void imageInsertStarted(Image image) {
2245                 logger.log(Level.WARNING, "Image insert started for " + image);
2246                 coreListenerManager.fireImageInsertStarted(image);
2247         }
2248
2249         /**
2250          * {@inheritDoc}
2251          */
2252         @Override
2253         public void imageInsertAborted(Image image) {
2254                 logger.log(Level.WARNING, "Image insert aborted for " + image);
2255                 coreListenerManager.fireImageInsertAborted(image);
2256         }
2257
2258         /**
2259          * {@inheritDoc}
2260          */
2261         @Override
2262         public void imageInsertFinished(Image image, FreenetURI key) {
2263                 logger.log(Level.WARNING, "Image insert finished for " + image + ": " + key);
2264                 image.setKey(key.toString());
2265                 deleteTemporaryImage(image.getId());
2266                 saveSone(image.getSone());
2267                 coreListenerManager.fireImageInsertFinished(image);
2268         }
2269
2270         /**
2271          * {@inheritDoc}
2272          */
2273         @Override
2274         public void imageInsertFailed(Image image, Throwable cause) {
2275                 logger.log(Level.WARNING, "Image insert failed for " + image, cause);
2276                 coreListenerManager.fireImageInsertFailed(image, cause);
2277         }
2278
2279         /**
2280          * Convenience interface for external classes that want to access the core’s
2281          * configuration.
2282          *
2283          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
2284          */
2285         public static class Preferences {
2286
2287                 /** The wrapped options. */
2288                 private final Options options;
2289
2290                 /**
2291                  * Creates a new preferences object wrapped around the given options.
2292                  *
2293                  * @param options
2294                  *            The options to wrap
2295                  */
2296                 public Preferences(Options options) {
2297                         this.options = options;
2298                 }
2299
2300                 /**
2301                  * Returns the insertion delay.
2302                  *
2303                  * @return The insertion delay
2304                  */
2305                 public int getInsertionDelay() {
2306                         return options.getIntegerOption("InsertionDelay").get();
2307                 }
2308
2309                 /**
2310                  * Sets the insertion delay
2311                  *
2312                  * @param insertionDelay
2313                  *            The new insertion delay, or {@code null} to restore it to
2314                  *            the default value
2315                  * @return This preferences
2316                  */
2317                 public Preferences setInsertionDelay(Integer insertionDelay) {
2318                         options.getIntegerOption("InsertionDelay").set(insertionDelay);
2319                         return this;
2320                 }
2321
2322                 /**
2323                  * Returns the positive trust.
2324                  *
2325                  * @return The positive trust
2326                  */
2327                 public int getPositiveTrust() {
2328                         return options.getIntegerOption("PositiveTrust").get();
2329                 }
2330
2331                 /**
2332                  * Sets the positive trust.
2333                  *
2334                  * @param positiveTrust
2335                  *            The new positive trust, or {@code null} to restore it to
2336                  *            the default vlaue
2337                  * @return This preferences
2338                  */
2339                 public Preferences setPositiveTrust(Integer positiveTrust) {
2340                         options.getIntegerOption("PositiveTrust").set(positiveTrust);
2341                         return this;
2342                 }
2343
2344                 /**
2345                  * Returns the negative trust.
2346                  *
2347                  * @return The negative trust
2348                  */
2349                 public int getNegativeTrust() {
2350                         return options.getIntegerOption("NegativeTrust").get();
2351                 }
2352
2353                 /**
2354                  * Sets the negative trust.
2355                  *
2356                  * @param negativeTrust
2357                  *            The negative trust, or {@code null} to restore it to the
2358                  *            default value
2359                  * @return The preferences
2360                  */
2361                 public Preferences setNegativeTrust(Integer negativeTrust) {
2362                         options.getIntegerOption("NegativeTrust").set(negativeTrust);
2363                         return this;
2364                 }
2365
2366                 /**
2367                  * Returns the trust comment. This is the comment that is set in the web
2368                  * of trust when a trust value is assigned to an identity.
2369                  *
2370                  * @return The trust comment
2371                  */
2372                 public String getTrustComment() {
2373                         return options.getStringOption("TrustComment").get();
2374                 }
2375
2376                 /**
2377                  * Sets the trust comment.
2378                  *
2379                  * @param trustComment
2380                  *            The trust comment, or {@code null} to restore it to the
2381                  *            default value
2382                  * @return This preferences
2383                  */
2384                 public Preferences setTrustComment(String trustComment) {
2385                         options.getStringOption("TrustComment").set(trustComment);
2386                         return this;
2387                 }
2388
2389                 /**
2390                  * Returns whether the rescue mode is active.
2391                  *
2392                  * @return {@code true} if the rescue mode is active, {@code false}
2393                  *         otherwise
2394                  */
2395                 public boolean isSoneRescueMode() {
2396                         return options.getBooleanOption("SoneRescueMode").get();
2397                 }
2398
2399                 /**
2400                  * Sets whether the rescue mode is active.
2401                  *
2402                  * @param soneRescueMode
2403                  *            {@code true} if the rescue mode is active, {@code false}
2404                  *            otherwise
2405                  * @return This preferences
2406                  */
2407                 public Preferences setSoneRescueMode(Boolean soneRescueMode) {
2408                         options.getBooleanOption("SoneRescueMode").set(soneRescueMode);
2409                         return this;
2410                 }
2411
2412                 /**
2413                  * Returns whether Sone should clear its settings on the next restart.
2414                  * In order to be effective, {@link #isReallyClearOnNextRestart()} needs
2415                  * to return {@code true} as well!
2416                  *
2417                  * @return {@code true} if Sone should clear its settings on the next
2418                  *         restart, {@code false} otherwise
2419                  */
2420                 public boolean isClearOnNextRestart() {
2421                         return options.getBooleanOption("ClearOnNextRestart").get();
2422                 }
2423
2424                 /**
2425                  * Sets whether Sone will clear its settings on the next restart.
2426                  *
2427                  * @param clearOnNextRestart
2428                  *            {@code true} if Sone should clear its settings on the next
2429                  *            restart, {@code false} otherwise
2430                  * @return This preferences
2431                  */
2432                 public Preferences setClearOnNextRestart(Boolean clearOnNextRestart) {
2433                         options.getBooleanOption("ClearOnNextRestart").set(clearOnNextRestart);
2434                         return this;
2435                 }
2436
2437                 /**
2438                  * Returns whether Sone should really clear its settings on next
2439                  * restart. This is a confirmation option that needs to be set in
2440                  * addition to {@link #isClearOnNextRestart()} in order to clear Sone’s
2441                  * settings on the next restart.
2442                  *
2443                  * @return {@code true} if Sone should really clear its settings on the
2444                  *         next restart, {@code false} otherwise
2445                  */
2446                 public boolean isReallyClearOnNextRestart() {
2447                         return options.getBooleanOption("ReallyClearOnNextRestart").get();
2448                 }
2449
2450                 /**
2451                  * Sets whether Sone should really clear its settings on the next
2452                  * restart.
2453                  *
2454                  * @param reallyClearOnNextRestart
2455                  *            {@code true} if Sone should really clear its settings on
2456                  *            the next restart, {@code false} otherwise
2457                  * @return This preferences
2458                  */
2459                 public Preferences setReallyClearOnNextRestart(Boolean reallyClearOnNextRestart) {
2460                         options.getBooleanOption("ReallyClearOnNextRestart").set(reallyClearOnNextRestart);
2461                         return this;
2462                 }
2463
2464         }
2465
2466 }