Move friend parsing to new configuration parser.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
1 /*
2  * Sone - Core.java - Copyright © 2010–2013 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 static com.google.common.base.Preconditions.checkArgument;
21 import static com.google.common.base.Preconditions.checkNotNull;
22 import static com.google.common.base.Predicates.not;
23 import static net.pterodactylus.sone.data.Sone.LOCAL_SONE_FILTER;
24
25 import java.net.MalformedURLException;
26 import java.util.ArrayList;
27 import java.util.Collection;
28 import java.util.HashMap;
29 import java.util.HashSet;
30 import java.util.List;
31 import java.util.Map;
32 import java.util.Map.Entry;
33 import java.util.Set;
34 import java.util.concurrent.ExecutorService;
35 import java.util.concurrent.Executors;
36 import java.util.concurrent.ScheduledExecutorService;
37 import java.util.concurrent.TimeUnit;
38 import java.util.logging.Level;
39 import java.util.logging.Logger;
40
41 import net.pterodactylus.sone.core.ConfigurationSoneParser.InvalidPostFound;
42 import net.pterodactylus.sone.core.ConfigurationSoneParser.InvalidPostReplyFound;
43 import net.pterodactylus.sone.core.Options.DefaultOption;
44 import net.pterodactylus.sone.core.SoneInserter.SetInsertionDelay;
45 import net.pterodactylus.sone.core.event.ImageInsertFinishedEvent;
46 import net.pterodactylus.sone.core.event.MarkPostKnownEvent;
47 import net.pterodactylus.sone.core.event.MarkPostReplyKnownEvent;
48 import net.pterodactylus.sone.core.event.MarkSoneKnownEvent;
49 import net.pterodactylus.sone.core.event.NewPostFoundEvent;
50 import net.pterodactylus.sone.core.event.NewPostReplyFoundEvent;
51 import net.pterodactylus.sone.core.event.NewSoneFoundEvent;
52 import net.pterodactylus.sone.core.event.PostRemovedEvent;
53 import net.pterodactylus.sone.core.event.PostReplyRemovedEvent;
54 import net.pterodactylus.sone.core.event.SoneLockedEvent;
55 import net.pterodactylus.sone.core.event.SoneRemovedEvent;
56 import net.pterodactylus.sone.core.event.SoneUnlockedEvent;
57 import net.pterodactylus.sone.data.Album;
58 import net.pterodactylus.sone.data.Client;
59 import net.pterodactylus.sone.data.Image;
60 import net.pterodactylus.sone.data.Post;
61 import net.pterodactylus.sone.data.PostReply;
62 import net.pterodactylus.sone.data.Profile;
63 import net.pterodactylus.sone.data.Profile.Field;
64 import net.pterodactylus.sone.data.Reply;
65 import net.pterodactylus.sone.data.Sone;
66 import net.pterodactylus.sone.data.Sone.ShowCustomAvatars;
67 import net.pterodactylus.sone.data.Sone.SoneStatus;
68 import net.pterodactylus.sone.data.SoneImpl;
69 import net.pterodactylus.sone.data.TemporaryImage;
70 import net.pterodactylus.sone.database.Database;
71 import net.pterodactylus.sone.database.DatabaseException;
72 import net.pterodactylus.sone.database.PostBuilder;
73 import net.pterodactylus.sone.database.PostProvider;
74 import net.pterodactylus.sone.database.PostReplyBuilder;
75 import net.pterodactylus.sone.database.PostReplyProvider;
76 import net.pterodactylus.sone.database.SoneProvider;
77 import net.pterodactylus.sone.fcp.FcpInterface;
78 import net.pterodactylus.sone.freenet.wot.Identity;
79 import net.pterodactylus.sone.freenet.wot.IdentityManager;
80 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
81 import net.pterodactylus.sone.freenet.wot.event.IdentityAddedEvent;
82 import net.pterodactylus.sone.freenet.wot.event.IdentityRemovedEvent;
83 import net.pterodactylus.sone.freenet.wot.event.IdentityUpdatedEvent;
84 import net.pterodactylus.sone.freenet.wot.event.OwnIdentityAddedEvent;
85 import net.pterodactylus.sone.freenet.wot.event.OwnIdentityRemovedEvent;
86 import net.pterodactylus.sone.main.SonePlugin;
87 import net.pterodactylus.sone.utils.IntegerRangePredicate;
88 import net.pterodactylus.util.config.Configuration;
89 import net.pterodactylus.util.config.ConfigurationException;
90 import net.pterodactylus.util.logging.Logging;
91 import net.pterodactylus.util.number.Numbers;
92 import net.pterodactylus.util.service.AbstractService;
93 import net.pterodactylus.util.thread.NamedThreadFactory;
94
95 import com.google.common.annotations.VisibleForTesting;
96 import com.google.common.base.Optional;
97 import com.google.common.base.Predicates;
98 import com.google.common.collect.FluentIterable;
99 import com.google.common.collect.HashMultimap;
100 import com.google.common.collect.ImmutableSet;
101 import com.google.common.collect.Multimap;
102 import com.google.common.collect.Multimaps;
103 import com.google.common.eventbus.EventBus;
104 import com.google.common.eventbus.Subscribe;
105 import com.google.inject.Inject;
106 import com.google.inject.Singleton;
107
108 import freenet.keys.FreenetURI;
109
110 /**
111  * The Sone core.
112  *
113  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
114  */
115 @Singleton
116 public class Core extends AbstractService implements SoneProvider, PostProvider, PostReplyProvider {
117
118         /** The logger. */
119         private static final Logger logger = Logging.getLogger(Core.class);
120
121         /** The start time. */
122         private final long startupTime = System.currentTimeMillis();
123
124         /** The options. */
125         private final Options options = new Options();
126
127         /** The preferences. */
128         private final Preferences preferences = new Preferences(options);
129
130         /** The event bus. */
131         private final EventBus eventBus;
132
133         /** The configuration. */
134         private final Configuration configuration;
135
136         /** Whether we’re currently saving the configuration. */
137         private boolean storingConfiguration = false;
138
139         /** The identity manager. */
140         private final IdentityManager identityManager;
141
142         /** Interface to freenet. */
143         private final FreenetInterface freenetInterface;
144
145         /** The Sone downloader. */
146         private final SoneDownloader soneDownloader;
147
148         /** The image inserter. */
149         private final ImageInserter imageInserter;
150
151         /** Sone downloader thread-pool. */
152         private final ExecutorService soneDownloaders = Executors.newFixedThreadPool(10, new NamedThreadFactory("Sone Downloader %2$d"));
153
154         /** The update checker. */
155         private final UpdateChecker updateChecker;
156
157         /** The trust updater. */
158         private final WebOfTrustUpdater webOfTrustUpdater;
159
160         /** The FCP interface. */
161         private volatile FcpInterface fcpInterface;
162
163         /** The times Sones were followed. */
164         private final Map<String, Long> soneFollowingTimes = new HashMap<String, Long>();
165
166         /** Locked local Sones. */
167         /* synchronize on itself. */
168         private final Set<Sone> lockedSones = new HashSet<Sone>();
169
170         /** Sone inserters. */
171         /* synchronize access on this on sones. */
172         private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
173
174         /** Sone rescuers. */
175         /* synchronize access on this on sones. */
176         private final Map<Sone, SoneRescuer> soneRescuers = new HashMap<Sone, SoneRescuer>();
177
178         /** All Sones. */
179         /* synchronize access on this on itself. */
180         private final Map<String, Sone> sones = new HashMap<String, Sone>();
181
182         /** All known Sones. */
183         private final Set<String> knownSones = new HashSet<String>();
184
185         /** The post database. */
186         private final Database database;
187
188         /** All bookmarked posts. */
189         /* synchronize access on itself. */
190         private final Set<String> bookmarkedPosts = new HashSet<String>();
191
192         /** Trusted identities, sorted by own identities. */
193         private final Multimap<OwnIdentity, Identity> trustedIdentities = Multimaps.synchronizedSetMultimap(HashMultimap.<OwnIdentity, Identity>create());
194
195         /** All temporary images. */
196         private final Map<String, TemporaryImage> temporaryImages = new HashMap<String, TemporaryImage>();
197
198         /** Ticker for threads that mark own elements as known. */
199         private final ScheduledExecutorService localElementTicker = Executors.newScheduledThreadPool(1);
200
201         /** The time the configuration was last touched. */
202         private volatile long lastConfigurationUpdate;
203
204         /**
205          * Creates a new core.
206          *
207          * @param configuration
208          *            The configuration of the core
209          * @param freenetInterface
210          *            The freenet interface
211          * @param identityManager
212          *            The identity manager
213          * @param webOfTrustUpdater
214          *            The WebOfTrust updater
215          * @param eventBus
216          *            The event bus
217          * @param database
218          *            The database
219          */
220         @Inject
221         public Core(Configuration configuration, FreenetInterface freenetInterface, IdentityManager identityManager, WebOfTrustUpdater webOfTrustUpdater, EventBus eventBus, Database database) {
222                 super("Sone Core");
223                 this.configuration = configuration;
224                 this.freenetInterface = freenetInterface;
225                 this.identityManager = identityManager;
226                 this.soneDownloader = new SoneDownloaderImpl(this, freenetInterface);
227                 this.imageInserter = new ImageInserter(freenetInterface, freenetInterface.new InsertTokenSupplier());
228                 this.updateChecker = new UpdateChecker(eventBus, freenetInterface);
229                 this.webOfTrustUpdater = webOfTrustUpdater;
230                 this.eventBus = eventBus;
231                 this.database = database;
232         }
233
234         @VisibleForTesting
235         protected Core(Configuration configuration, FreenetInterface freenetInterface, IdentityManager identityManager, SoneDownloader soneDownloader, ImageInserter imageInserter, UpdateChecker updateChecker, WebOfTrustUpdater webOfTrustUpdater, EventBus eventBus, Database database) {
236                 super("Sone Core");
237                 this.configuration = configuration;
238                 this.freenetInterface = freenetInterface;
239                 this.identityManager = identityManager;
240                 this.soneDownloader = soneDownloader;
241                 this.imageInserter = imageInserter;
242                 this.updateChecker = updateChecker;
243                 this.webOfTrustUpdater = webOfTrustUpdater;
244                 this.eventBus = eventBus;
245                 this.database = database;
246         }
247
248         //
249         // ACCESSORS
250         //
251
252         /**
253          * Returns the time Sone was started.
254          *
255          * @return The startup time (in milliseconds since Jan 1, 1970 UTC)
256          */
257         public long getStartupTime() {
258                 return startupTime;
259         }
260
261         /**
262          * Returns the options used by the core.
263          *
264          * @return The options of the core
265          */
266         public Preferences getPreferences() {
267                 return preferences;
268         }
269
270         /**
271          * Returns the identity manager used by the core.
272          *
273          * @return The identity manager
274          */
275         public IdentityManager getIdentityManager() {
276                 return identityManager;
277         }
278
279         /**
280          * Returns the update checker.
281          *
282          * @return The update checker
283          */
284         public UpdateChecker getUpdateChecker() {
285                 return updateChecker;
286         }
287
288         /**
289          * Sets the FCP interface to use.
290          *
291          * @param fcpInterface
292          *            The FCP interface to use
293          */
294         public void setFcpInterface(FcpInterface fcpInterface) {
295                 this.fcpInterface = fcpInterface;
296         }
297
298         /**
299          * Returns the Sone rescuer for the given local Sone.
300          *
301          * @param sone
302          *            The local Sone to get the rescuer for
303          * @return The Sone rescuer for the given Sone
304          */
305         public SoneRescuer getSoneRescuer(Sone sone) {
306                 checkNotNull(sone, "sone must not be null");
307                 checkArgument(sone.isLocal(), "sone must be local");
308                 synchronized (sones) {
309                         SoneRescuer soneRescuer = soneRescuers.get(sone);
310                         if (soneRescuer == null) {
311                                 soneRescuer = new SoneRescuer(this, soneDownloader, sone);
312                                 soneRescuers.put(sone, soneRescuer);
313                                 soneRescuer.start();
314                         }
315                         return soneRescuer;
316                 }
317         }
318
319         /**
320          * Returns whether the given Sone is currently locked.
321          *
322          * @param sone
323          *            The sone to check
324          * @return {@code true} if the Sone is locked, {@code false} if it is not
325          */
326         public boolean isLocked(Sone sone) {
327                 synchronized (lockedSones) {
328                         return lockedSones.contains(sone);
329                 }
330         }
331
332         /**
333          * {@inheritDocs}
334          */
335         @Override
336         public Collection<Sone> getSones() {
337                 synchronized (sones) {
338                         return ImmutableSet.copyOf(sones.values());
339                 }
340         }
341
342         /**
343          * Returns the Sone with the given ID, regardless whether it’s local or
344          * remote.
345          *
346          * @param id
347          *            The ID of the Sone to get
348          * @return The Sone with the given ID, or {@code null} if there is no such
349          *         Sone
350          */
351         @Override
352         public Optional<Sone> getSone(String id) {
353                 synchronized (sones) {
354                         return Optional.fromNullable(sones.get(id));
355                 }
356         }
357
358         /**
359          * {@inheritDocs}
360          */
361         @Override
362         public Collection<Sone> getLocalSones() {
363                 synchronized (sones) {
364                         return FluentIterable.from(sones.values()).filter(LOCAL_SONE_FILTER).toSet();
365                 }
366         }
367
368         /**
369          * Returns the local Sone with the given ID, optionally creating a new Sone.
370          *
371          * @param id
372          *            The ID of the Sone
373          * @param create
374          *            {@code true} to create a new Sone if none exists,
375          *            {@code false} to return null if none exists
376          * @return The Sone with the given ID, or {@code null}
377          */
378         public Sone getLocalSone(String id, boolean create) {
379                 synchronized (sones) {
380                         Sone sone = sones.get(id);
381                         if ((sone == null) && create) {
382                                 sone = new SoneImpl(id, true);
383                                 sones.put(id, sone);
384                         }
385                         if ((sone != null) && !sone.isLocal()) {
386                                 sone = new SoneImpl(id, true);
387                                 sones.put(id, sone);
388                         }
389                         return sone;
390                 }
391         }
392
393         /**
394          * {@inheritDocs}
395          */
396         @Override
397         public Collection<Sone> getRemoteSones() {
398                 synchronized (sones) {
399                         return FluentIterable.from(sones.values()).filter(not(LOCAL_SONE_FILTER)).toSet();
400                 }
401         }
402
403         /**
404          * Returns the remote Sone with the given ID.
405          *
406          * @param id
407          *            The ID of the remote Sone to get
408          * @param create
409          *            {@code true} to always create a Sone, {@code false} to return
410          *            {@code null} if no Sone with the given ID exists
411          * @return The Sone with the given ID
412          */
413         public Sone getRemoteSone(String id, boolean create) {
414                 synchronized (sones) {
415                         Sone sone = sones.get(id);
416                         if ((sone == null) && create && (id != null) && (id.length() == 43)) {
417                                 sone = new SoneImpl(id, false);
418                                 sones.put(id, sone);
419                         }
420                         return sone;
421                 }
422         }
423
424         /**
425          * Returns whether the given Sone has been modified.
426          *
427          * @param sone
428          *            The Sone to check for modifications
429          * @return {@code true} if a modification has been detected in the Sone,
430          *         {@code false} otherwise
431          */
432         public boolean isModifiedSone(Sone sone) {
433                 return soneInserters.containsKey(sone) && soneInserters.get(sone).isModified();
434         }
435
436         /**
437          * Returns the time when the given was first followed by any local Sone.
438          *
439          * @param sone
440          *            The Sone to get the time for
441          * @return The time (in milliseconds since Jan 1, 1970) the Sone has first
442          *         been followed, or {@link Long#MAX_VALUE}
443          */
444         public long getSoneFollowingTime(Sone sone) {
445                 synchronized (soneFollowingTimes) {
446                         return Optional.fromNullable(soneFollowingTimes.get(sone.getId())).or(Long.MAX_VALUE);
447                 }
448         }
449
450         /**
451          * Returns a post builder.
452          *
453          * @return A new post builder
454          */
455         public PostBuilder postBuilder() {
456                 return database.newPostBuilder();
457         }
458
459         /**
460          * {@inheritDoc}
461          */
462         @Override
463         public Optional<Post> getPost(String postId) {
464                 return database.getPost(postId);
465         }
466
467         /**
468          * {@inheritDocs}
469          */
470         @Override
471         public Collection<Post> getPosts(String soneId) {
472                 return database.getPosts(soneId);
473         }
474
475         /**
476          * {@inheritDoc}
477          */
478         @Override
479         public Collection<Post> getDirectedPosts(final String recipientId) {
480                 checkNotNull(recipientId, "recipient must not be null");
481                 return database.getDirectedPosts(recipientId);
482         }
483
484         /**
485          * Returns a post reply builder.
486          *
487          * @return A new post reply builder
488          */
489         public PostReplyBuilder postReplyBuilder() {
490                 return database.newPostReplyBuilder();
491         }
492
493         /**
494          * {@inheritDoc}
495          */
496         @Override
497         public Optional<PostReply> getPostReply(String replyId) {
498                 return database.getPostReply(replyId);
499         }
500
501         /**
502          * {@inheritDoc}
503          */
504         @Override
505         public List<PostReply> getReplies(final String postId) {
506                 return database.getReplies(postId);
507         }
508
509         /**
510          * Returns all Sones that have liked the given post.
511          *
512          * @param post
513          *            The post to get the liking Sones for
514          * @return The Sones that like the given post
515          */
516         public Set<Sone> getLikes(Post post) {
517                 Set<Sone> sones = new HashSet<Sone>();
518                 for (Sone sone : getSones()) {
519                         if (sone.getLikedPostIds().contains(post.getId())) {
520                                 sones.add(sone);
521                         }
522                 }
523                 return sones;
524         }
525
526         /**
527          * Returns all Sones that have liked the given reply.
528          *
529          * @param reply
530          *            The reply to get the liking Sones for
531          * @return The Sones that like the given reply
532          */
533         public Set<Sone> getLikes(PostReply reply) {
534                 Set<Sone> sones = new HashSet<Sone>();
535                 for (Sone sone : getSones()) {
536                         if (sone.getLikedReplyIds().contains(reply.getId())) {
537                                 sones.add(sone);
538                         }
539                 }
540                 return sones;
541         }
542
543         /**
544          * Returns whether the given post is bookmarked.
545          *
546          * @param post
547          *            The post to check
548          * @return {@code true} if the given post is bookmarked, {@code false}
549          *         otherwise
550          */
551         public boolean isBookmarked(Post post) {
552                 return isPostBookmarked(post.getId());
553         }
554
555         /**
556          * Returns whether the post with the given ID is bookmarked.
557          *
558          * @param id
559          *            The ID of the post to check
560          * @return {@code true} if the post with the given ID is bookmarked,
561          *         {@code false} otherwise
562          */
563         public boolean isPostBookmarked(String id) {
564                 synchronized (bookmarkedPosts) {
565                         return bookmarkedPosts.contains(id);
566                 }
567         }
568
569         /**
570          * Returns all currently known bookmarked posts.
571          *
572          * @return All bookmarked posts
573          */
574         public Set<Post> getBookmarkedPosts() {
575                 Set<Post> posts = new HashSet<Post>();
576                 synchronized (bookmarkedPosts) {
577                         for (String bookmarkedPostId : bookmarkedPosts) {
578                                 Optional<Post> post = getPost(bookmarkedPostId);
579                                 if (post.isPresent()) {
580                                         posts.add(post.get());
581                                 }
582                         }
583                 }
584                 return posts;
585         }
586
587         /**
588          * Returns the album with the given ID, creating a new album if no album
589          * with the given ID can be found.
590          *
591          * @param albumId
592          *            The ID of the album
593          * @return The album with the given ID
594          */
595         public Album getOrCreateAlbum(String albumId) {
596                 return getAlbum(albumId, true);
597         }
598
599         /**
600          * Returns the album with the given ID, optionally creating a new album if
601          * an album with the given ID can not be found.
602          *
603          * @param albumId
604          *            The ID of the album
605          * @param create
606          *            {@code true} to create a new album if none exists for the
607          *            given ID
608          * @return The album with the given ID, or {@code null} if no album with the
609          *         given ID exists and {@code create} is {@code false}
610          */
611         public Album getAlbum(String albumId, boolean create) {
612                 Optional<Album> album = database.getAlbum(albumId);
613                 if (album.isPresent()) {
614                         return album.get();
615                 }
616                 if (!create) {
617                         return null;
618                 }
619                 Album newAlbum = database.newAlbumBuilder().withId(albumId).build();
620                 database.storeAlbum(newAlbum);
621                 return newAlbum;
622         }
623
624         /**
625          * Returns the image with the given ID, creating it if necessary.
626          *
627          * @param imageId
628          *            The ID of the image
629          * @return The image with the given ID
630          */
631         public Image getImage(String imageId) {
632                 return getImage(imageId, true);
633         }
634
635         /**
636          * Returns the image with the given ID, optionally creating it if it does
637          * not exist.
638          *
639          * @param imageId
640          *            The ID of the image
641          * @param create
642          *            {@code true} to create an image if none exists with the given
643          *            ID
644          * @return The image with the given ID, or {@code null} if none exists and
645          *         none was created
646          */
647         public Image getImage(String imageId, boolean create) {
648                 Optional<Image> image = database.getImage(imageId);
649                 if (image.isPresent()) {
650                         return image.get();
651                 }
652                 if (!create) {
653                         return null;
654                 }
655                 Image newImage = database.newImageBuilder().withId(imageId).build();
656                 database.storeImage(newImage);
657                 return newImage;
658         }
659
660         /**
661          * Returns the temporary image with the given ID.
662          *
663          * @param imageId
664          *            The ID of the temporary image
665          * @return The temporary image, or {@code null} if there is no temporary
666          *         image with the given ID
667          */
668         public TemporaryImage getTemporaryImage(String imageId) {
669                 synchronized (temporaryImages) {
670                         return temporaryImages.get(imageId);
671                 }
672         }
673
674         //
675         // ACTIONS
676         //
677
678         /**
679          * Locks the given Sone. A locked Sone will not be inserted by
680          * {@link SoneInserter} until it is {@link #unlockSone(Sone) unlocked}
681          * again.
682          *
683          * @param sone
684          *            The sone to lock
685          */
686         public void lockSone(Sone sone) {
687                 synchronized (lockedSones) {
688                         if (lockedSones.add(sone)) {
689                                 eventBus.post(new SoneLockedEvent(sone));
690                         }
691                 }
692         }
693
694         /**
695          * Unlocks the given Sone.
696          *
697          * @see #lockSone(Sone)
698          * @param sone
699          *            The sone to unlock
700          */
701         public void unlockSone(Sone sone) {
702                 synchronized (lockedSones) {
703                         if (lockedSones.remove(sone)) {
704                                 eventBus.post(new SoneUnlockedEvent(sone));
705                         }
706                 }
707         }
708
709         /**
710          * Adds a local Sone from the given own identity.
711          *
712          * @param ownIdentity
713          *            The own identity to create a Sone from
714          * @return The added (or already existing) Sone
715          */
716         public Sone addLocalSone(OwnIdentity ownIdentity) {
717                 if (ownIdentity == null) {
718                         logger.log(Level.WARNING, "Given OwnIdentity is null!");
719                         return null;
720                 }
721                 logger.info(String.format("Adding Sone from OwnIdentity: %s", ownIdentity));
722                 synchronized (sones) {
723                         final Sone sone;
724                         try {
725                                 sone = getLocalSone(ownIdentity.getId(), true).setIdentity(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
726                         } catch (MalformedURLException mue1) {
727                                 logger.log(Level.SEVERE, String.format("Could not convert the Identity’s URIs to Freenet URIs: %s, %s", ownIdentity.getInsertUri(), ownIdentity.getRequestUri()), mue1);
728                                 return null;
729                         }
730                         sone.setLatestEdition(Numbers.safeParseLong(ownIdentity.getProperty("Sone.LatestEdition"), (long) 0));
731                         sone.setClient(new Client("Sone", SonePlugin.VERSION.toString()));
732                         sone.setKnown(true);
733                         /* TODO - load posts ’n stuff */
734                         sones.put(ownIdentity.getId(), sone);
735                         final SoneInserter soneInserter = new SoneInserter(this, eventBus, freenetInterface, sone);
736                         soneInserters.put(sone, soneInserter);
737                         sone.setStatus(SoneStatus.idle);
738                         loadSone(sone);
739                         soneInserter.start();
740                         return sone;
741                 }
742         }
743
744         /**
745          * Creates a new Sone for the given own identity.
746          *
747          * @param ownIdentity
748          *            The own identity to create a Sone for
749          * @return The created Sone
750          */
751         public Sone createSone(OwnIdentity ownIdentity) {
752                 if (!webOfTrustUpdater.addContextWait(ownIdentity, "Sone")) {
753                         logger.log(Level.SEVERE, String.format("Could not add “Sone” context to own identity: %s", ownIdentity));
754                         return null;
755                 }
756                 Sone sone = addLocalSone(ownIdentity);
757
758                 followSone(sone, "nwa8lHa271k2QvJ8aa0Ov7IHAV-DFOCFgmDt3X6BpCI");
759                 touchConfiguration();
760                 return sone;
761         }
762
763         /**
764          * Adds the Sone of the given identity.
765          *
766          * @param identity
767          *            The identity whose Sone to add
768          * @return The added or already existing Sone
769          */
770         public Sone addRemoteSone(Identity identity) {
771                 if (identity == null) {
772                         logger.log(Level.WARNING, "Given Identity is null!");
773                         return null;
774                 }
775                 synchronized (sones) {
776                         final Sone sone = getRemoteSone(identity.getId(), true);
777                         if (sone.isLocal()) {
778                                 return sone;
779                         }
780                         sone.setIdentity(identity);
781                         boolean newSone = sone.getRequestUri() == null;
782                         sone.setRequestUri(SoneUri.create(identity.getRequestUri()));
783                         sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), (long) 0));
784                         if (newSone) {
785                                 synchronized (knownSones) {
786                                         newSone = !knownSones.contains(sone.getId());
787                                 }
788                                 sone.setKnown(!newSone);
789                                 if (newSone) {
790                                         eventBus.post(new NewSoneFoundEvent(sone));
791                                         for (Sone localSone : getLocalSones()) {
792                                                 if (localSone.getOptions().isAutoFollow()) {
793                                                         followSone(localSone, sone.getId());
794                                                 }
795                                         }
796                                 }
797                         }
798                         soneDownloader.addSone(sone);
799                         soneDownloaders.execute(soneDownloader.fetchSoneWithUriAction(sone));
800                         return sone;
801                 }
802         }
803
804         /**
805          * Lets the given local Sone follow the Sone with the given ID.
806          *
807          * @param sone
808          *            The local Sone that should follow another Sone
809          * @param soneId
810          *            The ID of the Sone to follow
811          */
812         public void followSone(Sone sone, String soneId) {
813                 checkNotNull(sone, "sone must not be null");
814                 checkNotNull(soneId, "soneId must not be null");
815                 sone.addFriend(soneId);
816                 synchronized (soneFollowingTimes) {
817                         if (!soneFollowingTimes.containsKey(soneId)) {
818                                 long now = System.currentTimeMillis();
819                                 soneFollowingTimes.put(soneId, now);
820                                 Optional<Sone> followedSone = getSone(soneId);
821                                 if (!followedSone.isPresent()) {
822                                         return;
823                                 }
824                                 for (Post post : followedSone.get().getPosts()) {
825                                         if (post.getTime() < now) {
826                                                 markPostKnown(post);
827                                         }
828                                 }
829                                 for (PostReply reply : followedSone.get().getReplies()) {
830                                         if (reply.getTime() < now) {
831                                                 markReplyKnown(reply);
832                                         }
833                                 }
834                         }
835                 }
836                 touchConfiguration();
837         }
838
839         /**
840          * Lets the given local Sone unfollow the Sone with the given ID.
841          *
842          * @param sone
843          *            The local Sone that should unfollow another Sone
844          * @param soneId
845          *            The ID of the Sone being unfollowed
846          */
847         public void unfollowSone(Sone sone, String soneId) {
848                 checkNotNull(sone, "sone must not be null");
849                 checkNotNull(soneId, "soneId must not be null");
850                 sone.removeFriend(soneId);
851                 boolean unfollowedSoneStillFollowed = false;
852                 for (Sone localSone : getLocalSones()) {
853                         unfollowedSoneStillFollowed |= localSone.hasFriend(soneId);
854                 }
855                 if (!unfollowedSoneStillFollowed) {
856                         synchronized (soneFollowingTimes) {
857                                 soneFollowingTimes.remove(soneId);
858                         }
859                 }
860                 touchConfiguration();
861         }
862
863         /**
864          * Sets the trust value of the given origin Sone for the target Sone.
865          *
866          * @param origin
867          *            The origin Sone
868          * @param target
869          *            The target Sone
870          * @param trustValue
871          *            The trust value (from {@code -100} to {@code 100})
872          */
873         public void setTrust(Sone origin, Sone target, int trustValue) {
874                 checkNotNull(origin, "origin must not be null");
875                 checkArgument(origin.getIdentity() instanceof OwnIdentity, "origin must be a local Sone");
876                 checkNotNull(target, "target must not be null");
877                 checkArgument((trustValue >= -100) && (trustValue <= 100), "trustValue must be within [-100, 100]");
878                 webOfTrustUpdater.setTrust((OwnIdentity) origin.getIdentity(), target.getIdentity(), trustValue, preferences.getTrustComment());
879         }
880
881         /**
882          * Removes any trust assignment for the given target Sone.
883          *
884          * @param origin
885          *            The trust origin
886          * @param target
887          *            The trust target
888          */
889         public void removeTrust(Sone origin, Sone target) {
890                 checkNotNull(origin, "origin must not be null");
891                 checkNotNull(target, "target must not be null");
892                 checkArgument(origin.getIdentity() instanceof OwnIdentity, "origin must be a local Sone");
893                 webOfTrustUpdater.setTrust((OwnIdentity) origin.getIdentity(), target.getIdentity(), null, null);
894         }
895
896         /**
897          * Assigns the configured positive trust value for the given target.
898          *
899          * @param origin
900          *            The trust origin
901          * @param target
902          *            The trust target
903          */
904         public void trustSone(Sone origin, Sone target) {
905                 setTrust(origin, target, preferences.getPositiveTrust());
906         }
907
908         /**
909          * Assigns the configured negative trust value for the given target.
910          *
911          * @param origin
912          *            The trust origin
913          * @param target
914          *            The trust target
915          */
916         public void distrustSone(Sone origin, Sone target) {
917                 setTrust(origin, target, preferences.getNegativeTrust());
918         }
919
920         /**
921          * Removes the trust assignment for the given target.
922          *
923          * @param origin
924          *            The trust origin
925          * @param target
926          *            The trust target
927          */
928         public void untrustSone(Sone origin, Sone target) {
929                 removeTrust(origin, target);
930         }
931
932         /**
933          * Updates the stored Sone with the given Sone.
934          *
935          * @param sone
936          *            The updated Sone
937          */
938         public void updateSone(Sone sone) {
939                 updateSone(sone, false);
940         }
941
942         /**
943          * Updates the stored Sone with the given Sone. If {@code soneRescueMode} is
944          * {@code true}, an older Sone than the current Sone can be given to restore
945          * an old state.
946          *
947          * @param sone
948          *            The Sone to update
949          * @param soneRescueMode
950          *            {@code true} if the stored Sone should be updated regardless
951          *            of the age of the given Sone
952          */
953         public void updateSone(Sone sone, boolean soneRescueMode) {
954                 Optional<Sone> storedSone = getSone(sone.getId());
955                 if (storedSone.isPresent()) {
956                         if (!soneRescueMode && !(sone.getTime() > storedSone.get().getTime())) {
957                                 logger.log(Level.FINE, String.format("Downloaded Sone %s is not newer than stored Sone %s.", sone, storedSone));
958                                 return;
959                         }
960                         /* find removed posts. */
961                         Collection<Post> removedPosts = new ArrayList<Post>();
962                         Collection<Post> newPosts = new ArrayList<Post>();
963                         Collection<Post> existingPosts = database.getPosts(sone.getId());
964                         for (Post oldPost : existingPosts) {
965                                 if (!sone.getPosts().contains(oldPost)) {
966                                         removedPosts.add(oldPost);
967                                 }
968                         }
969                         /* find new posts. */
970                         for (Post newPost : sone.getPosts()) {
971                                 if (existingPosts.contains(newPost)) {
972                                         continue;
973                                 }
974                                 if (newPost.getTime() < getSoneFollowingTime(sone)) {
975                                         newPost.setKnown(true);
976                                 } else if (!newPost.isKnown()) {
977                                         newPosts.add(newPost);
978                                 }
979                         }
980                         /* store posts. */
981                         database.storePosts(sone, sone.getPosts());
982                         Collection<PostReply> newPostReplies = new ArrayList<PostReply>();
983                         Collection<PostReply> removedPostReplies = new ArrayList<PostReply>();
984                         if (!soneRescueMode) {
985                                 for (PostReply reply : storedSone.get().getReplies()) {
986                                         if (!sone.getReplies().contains(reply)) {
987                                                 removedPostReplies.add(reply);
988                                         }
989                                 }
990                         }
991                         Set<PostReply> storedReplies = storedSone.get().getReplies();
992                         for (PostReply reply : sone.getReplies()) {
993                                 if (storedReplies.contains(reply)) {
994                                         continue;
995                                 }
996                                 if (reply.getTime() < getSoneFollowingTime(sone)) {
997                                         reply.setKnown(true);
998                                 } else if (!reply.isKnown()) {
999                                         newPostReplies.add(reply);
1000                                 }
1001                         }
1002                         database.storePostReplies(sone, sone.getReplies());
1003                         for (Album album : storedSone.get().getRootAlbum().getAlbums()) {
1004                                 database.removeAlbum(album);
1005                                 for (Image image : album.getImages()) {
1006                                         database.removeImage(image);
1007                                 }
1008                         }
1009                         for (Post removedPost : removedPosts) {
1010                                 eventBus.post(new PostRemovedEvent(removedPost));
1011                         }
1012                         for (Post newPost : newPosts) {
1013                                 eventBus.post(new NewPostFoundEvent(newPost));
1014                         }
1015                         for (PostReply removedPostReply : removedPostReplies) {
1016                                 eventBus.post(new PostReplyRemovedEvent(removedPostReply));
1017                         }
1018                         for (PostReply newPostReply : newPostReplies) {
1019                                 eventBus.post(new NewPostReplyFoundEvent(newPostReply));
1020                         }
1021                         for (Album album : sone.getRootAlbum().getAlbums()) {
1022                                 database.storeAlbum(album);
1023                                 for (Image image : album.getImages()) {
1024                                         database.storeImage(image);
1025                                 }
1026                         }
1027                         synchronized (sones) {
1028                                 sone.setOptions(storedSone.get().getOptions());
1029                                 sone.setKnown(storedSone.get().isKnown());
1030                                 sone.setStatus((sone.getTime() == 0) ? SoneStatus.unknown : SoneStatus.idle);
1031                                 if (sone.isLocal()) {
1032                                         soneInserters.get(storedSone.get()).setSone(sone);
1033                                         touchConfiguration();
1034                                 }
1035                                 sones.put(sone.getId(), sone);
1036                         }
1037                 }
1038         }
1039
1040         /**
1041          * Deletes the given Sone. This will remove the Sone from the
1042          * {@link #getLocalSones() local Sones}, stop its {@link SoneInserter} and
1043          * remove the context from its identity.
1044          *
1045          * @param sone
1046          *            The Sone to delete
1047          */
1048         public void deleteSone(Sone sone) {
1049                 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1050                         logger.log(Level.WARNING, String.format("Tried to delete Sone of non-own identity: %s", sone));
1051                         return;
1052                 }
1053                 synchronized (sones) {
1054                         if (!getLocalSones().contains(sone)) {
1055                                 logger.log(Level.WARNING, String.format("Tried to delete non-local Sone: %s", sone));
1056                                 return;
1057                         }
1058                         sones.remove(sone.getId());
1059                         SoneInserter soneInserter = soneInserters.remove(sone);
1060                         soneInserter.stop();
1061                 }
1062                 webOfTrustUpdater.removeContext((OwnIdentity) sone.getIdentity(), "Sone");
1063                 webOfTrustUpdater.removeProperty((OwnIdentity) sone.getIdentity(), "Sone.LatestEdition");
1064                 try {
1065                         configuration.getLongValue("Sone/" + sone.getId() + "/Time").setValue(null);
1066                 } catch (ConfigurationException ce1) {
1067                         logger.log(Level.WARNING, "Could not remove Sone from configuration!", ce1);
1068                 }
1069         }
1070
1071         /**
1072          * Marks the given Sone as known. If the Sone was not {@link Post#isKnown()
1073          * known} before, a {@link MarkSoneKnownEvent} is fired.
1074          *
1075          * @param sone
1076          *            The Sone to mark as known
1077          */
1078         public void markSoneKnown(Sone sone) {
1079                 if (!sone.isKnown()) {
1080                         sone.setKnown(true);
1081                         synchronized (knownSones) {
1082                                 knownSones.add(sone.getId());
1083                         }
1084                         eventBus.post(new MarkSoneKnownEvent(sone));
1085                         touchConfiguration();
1086                 }
1087         }
1088
1089         /**
1090          * Loads and updates the given Sone from the configuration. If any error is
1091          * encountered, loading is aborted and the given Sone is not changed.
1092          *
1093          * @param sone
1094          *            The Sone to load and update
1095          */
1096         public void loadSone(Sone sone) {
1097                 if (!sone.isLocal()) {
1098                         logger.log(Level.FINE, String.format("Tried to load non-local Sone: %s", sone));
1099                         return;
1100                 }
1101                 logger.info(String.format("Loading local Sone: %s", sone));
1102
1103                 /* load Sone. */
1104                 String sonePrefix = "Sone/" + sone.getId();
1105                 Long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue(null);
1106                 if (soneTime == null) {
1107                         logger.log(Level.INFO, "Could not load Sone because no Sone has been saved.");
1108                         return;
1109                 }
1110                 String lastInsertFingerprint = configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").getValue("");
1111
1112                 /* load profile. */
1113                 ConfigurationSoneParser configurationSoneParser = new ConfigurationSoneParser(configuration, sone);
1114                 Profile profile = configurationSoneParser.parseProfile();
1115
1116                 /* load posts. */
1117                 Collection<Post> posts;
1118                 try {
1119                         posts = configurationSoneParser.parsePosts(database);
1120                 } catch (InvalidPostFound ipf) {
1121                         logger.log(Level.WARNING, "Invalid post found, aborting load!");
1122                         return;
1123                 }
1124
1125                 /* load replies. */
1126                 Collection<PostReply> replies;
1127                 try {
1128                         replies = configurationSoneParser.parsePostReplies(database);
1129                 } catch (InvalidPostReplyFound iprf) {
1130                         logger.log(Level.WARNING, "Invalid reply found, aborting load!");
1131                         return;
1132                 }
1133
1134                 /* load post likes. */
1135                 Set<String> likedPostIds =
1136                                 configurationSoneParser.parseLikedPostIds();
1137
1138                 /* load reply likes. */
1139                 Set<String> likedReplyIds =
1140                                 configurationSoneParser.parseLikedPostReplyIds();
1141
1142                 /* load friends. */
1143                 Set<String> friends = configurationSoneParser.parseFriends();
1144
1145                 /* load albums. */
1146                 List<Album> topLevelAlbums = new ArrayList<Album>();
1147                 int albumCounter = 0;
1148                 while (true) {
1149                         String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1150                         String albumId = configuration.getStringValue(albumPrefix + "/ID").getValue(null);
1151                         if (albumId == null) {
1152                                 break;
1153                         }
1154                         String albumTitle = configuration.getStringValue(albumPrefix + "/Title").getValue(null);
1155                         String albumDescription = configuration.getStringValue(albumPrefix + "/Description").getValue(null);
1156                         String albumParentId = configuration.getStringValue(albumPrefix + "/Parent").getValue(null);
1157                         String albumImageId = configuration.getStringValue(albumPrefix + "/AlbumImage").getValue(null);
1158                         if ((albumTitle == null) || (albumDescription == null)) {
1159                                 logger.log(Level.WARNING, "Invalid album found, aborting load!");
1160                                 return;
1161                         }
1162                         Album album = getOrCreateAlbum(albumId).setSone(sone).modify().setTitle(albumTitle).setDescription(albumDescription).setAlbumImage(albumImageId).update();
1163                         if (albumParentId != null) {
1164                                 Album parentAlbum = getAlbum(albumParentId, false);
1165                                 if (parentAlbum == null) {
1166                                         logger.log(Level.WARNING, String.format("Invalid parent album ID: %s", albumParentId));
1167                                         return;
1168                                 }
1169                                 parentAlbum.addAlbum(album);
1170                         } else {
1171                                 if (!topLevelAlbums.contains(album)) {
1172                                         topLevelAlbums.add(album);
1173                                 }
1174                         }
1175                 }
1176
1177                 /* load images. */
1178                 int imageCounter = 0;
1179                 while (true) {
1180                         String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1181                         String imageId = configuration.getStringValue(imagePrefix + "/ID").getValue(null);
1182                         if (imageId == null) {
1183                                 break;
1184                         }
1185                         String albumId = configuration.getStringValue(imagePrefix + "/Album").getValue(null);
1186                         String key = configuration.getStringValue(imagePrefix + "/Key").getValue(null);
1187                         String title = configuration.getStringValue(imagePrefix + "/Title").getValue(null);
1188                         String description = configuration.getStringValue(imagePrefix + "/Description").getValue(null);
1189                         Long creationTime = configuration.getLongValue(imagePrefix + "/CreationTime").getValue(null);
1190                         Integer width = configuration.getIntValue(imagePrefix + "/Width").getValue(null);
1191                         Integer height = configuration.getIntValue(imagePrefix + "/Height").getValue(null);
1192                         if ((albumId == null) || (key == null) || (title == null) || (description == null) || (creationTime == null) || (width == null) || (height == null)) {
1193                                 logger.log(Level.WARNING, "Invalid image found, aborting load!");
1194                                 return;
1195                         }
1196                         Album album = getAlbum(albumId, false);
1197                         if (album == null) {
1198                                 logger.log(Level.WARNING, "Invalid album image encountered, aborting load!");
1199                                 return;
1200                         }
1201                         Image image = getImage(imageId).modify().setSone(sone).setCreationTime(creationTime).setKey(key).setTitle(title).setDescription(description).setWidth(width).setHeight(height).update();
1202                         album.addImage(image);
1203                 }
1204
1205                 /* load avatar. */
1206                 String avatarId = configuration.getStringValue(sonePrefix + "/Profile/Avatar").getValue(null);
1207                 if (avatarId != null) {
1208                         profile.setAvatar(getImage(avatarId, false));
1209                 }
1210
1211                 /* load options. */
1212                 sone.getOptions().setAutoFollow(configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").getValue(null));
1213                 sone.getOptions().setSoneInsertNotificationEnabled(configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").getValue(null));
1214                 sone.getOptions().setShowNewSoneNotifications(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").getValue(null));
1215                 sone.getOptions().setShowNewPostNotifications(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").getValue(null));
1216                 sone.getOptions().setShowNewReplyNotifications(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").getValue(null));
1217                 sone.getOptions().setShowCustomAvatars(ShowCustomAvatars.valueOf(configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").getValue(ShowCustomAvatars.NEVER.name())));
1218
1219                 /* if we’re still here, Sone was loaded successfully. */
1220                 synchronized (sone) {
1221                         sone.setTime(soneTime);
1222                         sone.setProfile(profile);
1223                         sone.setPosts(posts);
1224                         sone.setReplies(replies);
1225                         sone.setLikePostIds(likedPostIds);
1226                         sone.setLikeReplyIds(likedReplyIds);
1227                         for (String friendId : friends) {
1228                                 followSone(sone, friendId);
1229                         }
1230                         for (Album album : sone.getRootAlbum().getAlbums()) {
1231                                 sone.getRootAlbum().removeAlbum(album);
1232                         }
1233                         for (Album album : topLevelAlbums) {
1234                                 sone.getRootAlbum().addAlbum(album);
1235                         }
1236                         soneInserters.get(sone).setLastInsertFingerprint(lastInsertFingerprint);
1237                 }
1238                 synchronized (knownSones) {
1239                         for (String friend : friends) {
1240                                 knownSones.add(friend);
1241                         }
1242                 }
1243                 database.storePosts(sone, posts);
1244                 for (Post post : posts) {
1245                         post.setKnown(true);
1246                 }
1247                 database.storePostReplies(sone, replies);
1248                 for (PostReply reply : replies) {
1249                         reply.setKnown(true);
1250                 }
1251
1252                 logger.info(String.format("Sone loaded successfully: %s", sone));
1253         }
1254
1255         /**
1256          * Creates a new post.
1257          *
1258          * @param sone
1259          *            The Sone that creates the post
1260          * @param recipient
1261          *            The recipient Sone, or {@code null} if this post does not have
1262          *            a recipient
1263          * @param text
1264          *            The text of the post
1265          * @return The created post
1266          */
1267         public Post createPost(Sone sone, Optional<Sone> recipient, String text) {
1268                 return createPost(sone, recipient, System.currentTimeMillis(), text);
1269         }
1270
1271         /**
1272          * Creates a new post.
1273          *
1274          * @param sone
1275          *            The Sone that creates the post
1276          * @param recipient
1277          *            The recipient Sone, or {@code null} if this post does not have
1278          *            a recipient
1279          * @param time
1280          *            The time of the post
1281          * @param text
1282          *            The text of the post
1283          * @return The created post
1284          */
1285         public Post createPost(Sone sone, Optional<Sone> recipient, long time, String text) {
1286                 checkNotNull(text, "text must not be null");
1287                 checkArgument(text.trim().length() > 0, "text must not be empty");
1288                 if (!sone.isLocal()) {
1289                         logger.log(Level.FINE, String.format("Tried to create post for non-local Sone: %s", sone));
1290                         return null;
1291                 }
1292                 PostBuilder postBuilder = database.newPostBuilder();
1293                 postBuilder.from(sone.getId()).randomId().withTime(time).withText(text.trim());
1294                 if (recipient.isPresent()) {
1295                         postBuilder.to(recipient.get().getId());
1296                 }
1297                 final Post post = postBuilder.build();
1298                 database.storePost(post);
1299                 eventBus.post(new NewPostFoundEvent(post));
1300                 sone.addPost(post);
1301                 touchConfiguration();
1302                 localElementTicker.schedule(new MarkPostKnown(post), 10, TimeUnit.SECONDS);
1303                 return post;
1304         }
1305
1306         /**
1307          * Deletes the given post.
1308          *
1309          * @param post
1310          *            The post to delete
1311          */
1312         public void deletePost(Post post) {
1313                 if (!post.getSone().isLocal()) {
1314                         logger.log(Level.WARNING, String.format("Tried to delete post of non-local Sone: %s", post.getSone()));
1315                         return;
1316                 }
1317                 database.removePost(post);
1318                 eventBus.post(new PostRemovedEvent(post));
1319                 markPostKnown(post);
1320                 touchConfiguration();
1321         }
1322
1323         /**
1324          * Marks the given post as known, if it is currently not a known post
1325          * (according to {@link Post#isKnown()}).
1326          *
1327          * @param post
1328          *            The post to mark as known
1329          */
1330         public void markPostKnown(Post post) {
1331                 post.setKnown(true);
1332                 eventBus.post(new MarkPostKnownEvent(post));
1333                 touchConfiguration();
1334                 for (PostReply reply : getReplies(post.getId())) {
1335                         markReplyKnown(reply);
1336                 }
1337         }
1338
1339         /**
1340          * Bookmarks the post with the given ID.
1341          *
1342          * @param id
1343          *            The ID of the post to bookmark
1344          */
1345         public void bookmarkPost(String id) {
1346                 synchronized (bookmarkedPosts) {
1347                         bookmarkedPosts.add(id);
1348                 }
1349         }
1350
1351         /**
1352          * Removes the given post from the bookmarks.
1353          *
1354          * @param post
1355          *            The post to unbookmark
1356          */
1357         public void unbookmark(Post post) {
1358                 unbookmarkPost(post.getId());
1359         }
1360
1361         /**
1362          * Removes the post with the given ID from the bookmarks.
1363          *
1364          * @param id
1365          *            The ID of the post to unbookmark
1366          */
1367         public void unbookmarkPost(String id) {
1368                 synchronized (bookmarkedPosts) {
1369                         bookmarkedPosts.remove(id);
1370                 }
1371         }
1372
1373         /**
1374          * Creates a new reply.
1375          *
1376          * @param sone
1377          *            The Sone that creates the reply
1378          * @param post
1379          *            The post that this reply refers to
1380          * @param text
1381          *            The text of the reply
1382          * @return The created reply
1383          */
1384         public PostReply createReply(Sone sone, Post post, String text) {
1385                 checkNotNull(text, "text must not be null");
1386                 checkArgument(text.trim().length() > 0, "text must not be empty");
1387                 if (!sone.isLocal()) {
1388                         logger.log(Level.FINE, String.format("Tried to create reply for non-local Sone: %s", sone));
1389                         return null;
1390                 }
1391                 PostReplyBuilder postReplyBuilder = postReplyBuilder();
1392                 postReplyBuilder.randomId().from(sone.getId()).to(post.getId()).currentTime().withText(text.trim());
1393                 final PostReply reply = postReplyBuilder.build();
1394                 database.storePostReply(reply);
1395                 eventBus.post(new NewPostReplyFoundEvent(reply));
1396                 sone.addReply(reply);
1397                 touchConfiguration();
1398                 localElementTicker.schedule(new MarkReplyKnown(reply), 10, TimeUnit.SECONDS);
1399                 return reply;
1400         }
1401
1402         /**
1403          * Deletes the given reply.
1404          *
1405          * @param reply
1406          *            The reply to delete
1407          */
1408         public void deleteReply(PostReply reply) {
1409                 Sone sone = reply.getSone();
1410                 if (!sone.isLocal()) {
1411                         logger.log(Level.FINE, String.format("Tried to delete non-local reply: %s", reply));
1412                         return;
1413                 }
1414                 database.removePostReply(reply);
1415                 markReplyKnown(reply);
1416                 sone.removeReply(reply);
1417                 touchConfiguration();
1418         }
1419
1420         /**
1421          * Marks the given reply as known, if it is currently not a known reply
1422          * (according to {@link Reply#isKnown()}).
1423          *
1424          * @param reply
1425          *            The reply to mark as known
1426          */
1427         public void markReplyKnown(PostReply reply) {
1428                 boolean previouslyKnown = reply.isKnown();
1429                 reply.setKnown(true);
1430                 eventBus.post(new MarkPostReplyKnownEvent(reply));
1431                 if (!previouslyKnown) {
1432                         touchConfiguration();
1433                 }
1434         }
1435
1436         /**
1437          * Creates a new album for the given Sone.
1438          *
1439          * @param sone
1440          *            The Sone to create the album for
1441          * @param parent
1442          *            The parent of the album (may be {@code null} to create a
1443          *            top-level album)
1444          * @return The new album
1445          */
1446         public Album createAlbum(Sone sone, Album parent) {
1447                 Album album = database.newAlbumBuilder().randomId().build();
1448                 database.storeAlbum(album);
1449                 album.setSone(sone);
1450                 parent.addAlbum(album);
1451                 return album;
1452         }
1453
1454         /**
1455          * Deletes the given album. The owner of the album has to be a local Sone,
1456          * and the album has to be {@link Album#isEmpty() empty} to be deleted.
1457          *
1458          * @param album
1459          *            The album to remove
1460          */
1461         public void deleteAlbum(Album album) {
1462                 checkNotNull(album, "album must not be null");
1463                 checkArgument(album.getSone().isLocal(), "album’s Sone must be a local Sone");
1464                 if (!album.isEmpty()) {
1465                         return;
1466                 }
1467                 album.getParent().removeAlbum(album);
1468                 database.removeAlbum(album);
1469                 touchConfiguration();
1470         }
1471
1472         /**
1473          * Creates a new image.
1474          *
1475          * @param sone
1476          *            The Sone creating the image
1477          * @param album
1478          *            The album the image will be inserted into
1479          * @param temporaryImage
1480          *            The temporary image to create the image from
1481          * @return The newly created image
1482          */
1483         public Image createImage(Sone sone, Album album, TemporaryImage temporaryImage) {
1484                 checkNotNull(sone, "sone must not be null");
1485                 checkNotNull(album, "album must not be null");
1486                 checkNotNull(temporaryImage, "temporaryImage must not be null");
1487                 checkArgument(sone.isLocal(), "sone must be a local Sone");
1488                 checkArgument(sone.equals(album.getSone()), "album must belong to the given Sone");
1489                 Image image = database.newImageBuilder().withId(temporaryImage.getId()).build().modify().setSone(sone).setCreationTime(System.currentTimeMillis()).update();
1490                 album.addImage(image);
1491                 database.storeImage(image);
1492                 imageInserter.insertImage(temporaryImage, image);
1493                 return image;
1494         }
1495
1496         /**
1497          * Deletes the given image. This method will also delete a matching
1498          * temporary image.
1499          *
1500          * @see #deleteTemporaryImage(String)
1501          * @param image
1502          *            The image to delete
1503          */
1504         public void deleteImage(Image image) {
1505                 checkNotNull(image, "image must not be null");
1506                 checkArgument(image.getSone().isLocal(), "image must belong to a local Sone");
1507                 deleteTemporaryImage(image.getId());
1508                 image.getAlbum().removeImage(image);
1509                 database.removeImage(image);
1510                 touchConfiguration();
1511         }
1512
1513         /**
1514          * Creates a new temporary image.
1515          *
1516          * @param mimeType
1517          *            The MIME type of the temporary image
1518          * @param imageData
1519          *            The encoded data of the image
1520          * @return The temporary image
1521          */
1522         public TemporaryImage createTemporaryImage(String mimeType, byte[] imageData) {
1523                 TemporaryImage temporaryImage = new TemporaryImage();
1524                 temporaryImage.setMimeType(mimeType).setImageData(imageData);
1525                 synchronized (temporaryImages) {
1526                         temporaryImages.put(temporaryImage.getId(), temporaryImage);
1527                 }
1528                 return temporaryImage;
1529         }
1530
1531         /**
1532          * Deletes the temporary image with the given ID.
1533          *
1534          * @param imageId
1535          *            The ID of the temporary image to delete
1536          */
1537         public void deleteTemporaryImage(String imageId) {
1538                 checkNotNull(imageId, "imageId must not be null");
1539                 synchronized (temporaryImages) {
1540                         temporaryImages.remove(imageId);
1541                 }
1542                 Image image = getImage(imageId, false);
1543                 if (image != null) {
1544                         imageInserter.cancelImageInsert(image);
1545                 }
1546         }
1547
1548         /**
1549          * Notifies the core that the configuration, either of the core or of a
1550          * single local Sone, has changed, and that the configuration should be
1551          * saved.
1552          */
1553         public void touchConfiguration() {
1554                 lastConfigurationUpdate = System.currentTimeMillis();
1555         }
1556
1557         //
1558         // SERVICE METHODS
1559         //
1560
1561         /**
1562          * Starts the core.
1563          */
1564         @Override
1565         public void serviceStart() {
1566                 loadConfiguration();
1567                 updateChecker.start();
1568                 identityManager.start();
1569                 webOfTrustUpdater.init();
1570                 webOfTrustUpdater.start();
1571                 database.start();
1572         }
1573
1574         /**
1575          * {@inheritDoc}
1576          */
1577         @Override
1578         public void serviceRun() {
1579                 long lastSaved = System.currentTimeMillis();
1580                 while (!shouldStop()) {
1581                         sleep(1000);
1582                         long now = System.currentTimeMillis();
1583                         if (shouldStop() || ((lastConfigurationUpdate > lastSaved) && ((now - lastConfigurationUpdate) > 5000))) {
1584                                 for (Sone localSone : getLocalSones()) {
1585                                         saveSone(localSone);
1586                                 }
1587                                 saveConfiguration();
1588                                 lastSaved = now;
1589                         }
1590                 }
1591         }
1592
1593         /**
1594          * Stops the core.
1595          */
1596         @Override
1597         public void serviceStop() {
1598                 localElementTicker.shutdownNow();
1599                 synchronized (sones) {
1600                         for (Entry<Sone, SoneInserter> soneInserter : soneInserters.entrySet()) {
1601                                 soneInserter.getValue().stop();
1602                                 saveSone(getLocalSone(soneInserter.getKey().getId(), false));
1603                         }
1604                 }
1605                 saveConfiguration();
1606                 database.stop();
1607                 webOfTrustUpdater.stop();
1608                 updateChecker.stop();
1609                 soneDownloader.stop();
1610                 soneDownloaders.shutdown();
1611                 identityManager.stop();
1612         }
1613
1614         //
1615         // PRIVATE METHODS
1616         //
1617
1618         /**
1619          * Saves the given Sone. This will persist all local settings for the given
1620          * Sone, such as the friends list and similar, private options.
1621          *
1622          * @param sone
1623          *            The Sone to save
1624          */
1625         private synchronized void saveSone(Sone sone) {
1626                 if (!sone.isLocal()) {
1627                         logger.log(Level.FINE, String.format("Tried to save non-local Sone: %s", sone));
1628                         return;
1629                 }
1630                 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1631                         logger.log(Level.WARNING, String.format("Local Sone without OwnIdentity found, refusing to save: %s", sone));
1632                         return;
1633                 }
1634
1635                 logger.log(Level.INFO, String.format("Saving Sone: %s", sone));
1636                 try {
1637                         /* save Sone into configuration. */
1638                         String sonePrefix = "Sone/" + sone.getId();
1639                         configuration.getLongValue(sonePrefix + "/Time").setValue(sone.getTime());
1640                         configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").setValue(soneInserters.get(sone).getLastInsertFingerprint());
1641
1642                         /* save profile. */
1643                         Profile profile = sone.getProfile();
1644                         configuration.getStringValue(sonePrefix + "/Profile/FirstName").setValue(profile.getFirstName());
1645                         configuration.getStringValue(sonePrefix + "/Profile/MiddleName").setValue(profile.getMiddleName());
1646                         configuration.getStringValue(sonePrefix + "/Profile/LastName").setValue(profile.getLastName());
1647                         configuration.getIntValue(sonePrefix + "/Profile/BirthDay").setValue(profile.getBirthDay());
1648                         configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").setValue(profile.getBirthMonth());
1649                         configuration.getIntValue(sonePrefix + "/Profile/BirthYear").setValue(profile.getBirthYear());
1650                         configuration.getStringValue(sonePrefix + "/Profile/Avatar").setValue(profile.getAvatar());
1651
1652                         /* save profile fields. */
1653                         int fieldCounter = 0;
1654                         for (Field profileField : profile.getFields()) {
1655                                 String fieldPrefix = sonePrefix + "/Profile/Fields/" + fieldCounter++;
1656                                 configuration.getStringValue(fieldPrefix + "/Name").setValue(profileField.getName());
1657                                 configuration.getStringValue(fieldPrefix + "/Value").setValue(profileField.getValue());
1658                         }
1659                         configuration.getStringValue(sonePrefix + "/Profile/Fields/" + fieldCounter + "/Name").setValue(null);
1660
1661                         /* save posts. */
1662                         int postCounter = 0;
1663                         for (Post post : sone.getPosts()) {
1664                                 String postPrefix = sonePrefix + "/Posts/" + postCounter++;
1665                                 configuration.getStringValue(postPrefix + "/ID").setValue(post.getId());
1666                                 configuration.getStringValue(postPrefix + "/Recipient").setValue(post.getRecipientId().orNull());
1667                                 configuration.getLongValue(postPrefix + "/Time").setValue(post.getTime());
1668                                 configuration.getStringValue(postPrefix + "/Text").setValue(post.getText());
1669                         }
1670                         configuration.getStringValue(sonePrefix + "/Posts/" + postCounter + "/ID").setValue(null);
1671
1672                         /* save replies. */
1673                         int replyCounter = 0;
1674                         for (PostReply reply : sone.getReplies()) {
1675                                 String replyPrefix = sonePrefix + "/Replies/" + replyCounter++;
1676                                 configuration.getStringValue(replyPrefix + "/ID").setValue(reply.getId());
1677                                 configuration.getStringValue(replyPrefix + "/Post/ID").setValue(reply.getPostId());
1678                                 configuration.getLongValue(replyPrefix + "/Time").setValue(reply.getTime());
1679                                 configuration.getStringValue(replyPrefix + "/Text").setValue(reply.getText());
1680                         }
1681                         configuration.getStringValue(sonePrefix + "/Replies/" + replyCounter + "/ID").setValue(null);
1682
1683                         /* save post likes. */
1684                         int postLikeCounter = 0;
1685                         for (String postId : sone.getLikedPostIds()) {
1686                                 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter++ + "/ID").setValue(postId);
1687                         }
1688                         configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter + "/ID").setValue(null);
1689
1690                         /* save reply likes. */
1691                         int replyLikeCounter = 0;
1692                         for (String replyId : sone.getLikedReplyIds()) {
1693                                 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter++ + "/ID").setValue(replyId);
1694                         }
1695                         configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter + "/ID").setValue(null);
1696
1697                         /* save friends. */
1698                         int friendCounter = 0;
1699                         for (String friendId : sone.getFriends()) {
1700                                 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter++ + "/ID").setValue(friendId);
1701                         }
1702                         configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter + "/ID").setValue(null);
1703
1704                         /* save albums. first, collect in a flat structure, top-level first. */
1705                         List<Album> albums = FluentIterable.from(sone.getRootAlbum().getAlbums()).transformAndConcat(Album.FLATTENER).toList();
1706
1707                         int albumCounter = 0;
1708                         for (Album album : albums) {
1709                                 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1710                                 configuration.getStringValue(albumPrefix + "/ID").setValue(album.getId());
1711                                 configuration.getStringValue(albumPrefix + "/Title").setValue(album.getTitle());
1712                                 configuration.getStringValue(albumPrefix + "/Description").setValue(album.getDescription());
1713                                 configuration.getStringValue(albumPrefix + "/Parent").setValue(album.getParent().equals(sone.getRootAlbum()) ? null : album.getParent().getId());
1714                                 configuration.getStringValue(albumPrefix + "/AlbumImage").setValue(album.getAlbumImage() == null ? null : album.getAlbumImage().getId());
1715                         }
1716                         configuration.getStringValue(sonePrefix + "/Albums/" + albumCounter + "/ID").setValue(null);
1717
1718                         /* save images. */
1719                         int imageCounter = 0;
1720                         for (Album album : albums) {
1721                                 for (Image image : album.getImages()) {
1722                                         if (!image.isInserted()) {
1723                                                 continue;
1724                                         }
1725                                         String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1726                                         configuration.getStringValue(imagePrefix + "/ID").setValue(image.getId());
1727                                         configuration.getStringValue(imagePrefix + "/Album").setValue(album.getId());
1728                                         configuration.getStringValue(imagePrefix + "/Key").setValue(image.getKey());
1729                                         configuration.getStringValue(imagePrefix + "/Title").setValue(image.getTitle());
1730                                         configuration.getStringValue(imagePrefix + "/Description").setValue(image.getDescription());
1731                                         configuration.getLongValue(imagePrefix + "/CreationTime").setValue(image.getCreationTime());
1732                                         configuration.getIntValue(imagePrefix + "/Width").setValue(image.getWidth());
1733                                         configuration.getIntValue(imagePrefix + "/Height").setValue(image.getHeight());
1734                                 }
1735                         }
1736                         configuration.getStringValue(sonePrefix + "/Images/" + imageCounter + "/ID").setValue(null);
1737
1738                         /* save options. */
1739                         configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").setValue(sone.getOptions().isAutoFollow());
1740                         configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").setValue(sone.getOptions().isSoneInsertNotificationEnabled());
1741                         configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").setValue(sone.getOptions().isShowNewSoneNotifications());
1742                         configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").setValue(sone.getOptions().isShowNewPostNotifications());
1743                         configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").setValue(sone.getOptions().isShowNewReplyNotifications());
1744                         configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").setValue(sone.getOptions().getShowCustomAvatars().name());
1745
1746                         configuration.save();
1747
1748                         webOfTrustUpdater.setProperty((OwnIdentity) sone.getIdentity(), "Sone.LatestEdition", String.valueOf(sone.getLatestEdition()));
1749
1750                         logger.log(Level.INFO, String.format("Sone %s saved.", sone));
1751                 } catch (ConfigurationException ce1) {
1752                         logger.log(Level.WARNING, String.format("Could not save Sone: %s", sone), ce1);
1753                 }
1754         }
1755
1756         /**
1757          * Saves the current options.
1758          */
1759         private void saveConfiguration() {
1760                 synchronized (configuration) {
1761                         if (storingConfiguration) {
1762                                 logger.log(Level.FINE, "Already storing configuration…");
1763                                 return;
1764                         }
1765                         storingConfiguration = true;
1766                 }
1767
1768                 /* store the options first. */
1769                 try {
1770                         configuration.getIntValue("Option/ConfigurationVersion").setValue(0);
1771                         configuration.getIntValue("Option/InsertionDelay").setValue(options.getIntegerOption("InsertionDelay").getReal());
1772                         configuration.getIntValue("Option/PostsPerPage").setValue(options.getIntegerOption("PostsPerPage").getReal());
1773                         configuration.getIntValue("Option/ImagesPerPage").setValue(options.getIntegerOption("ImagesPerPage").getReal());
1774                         configuration.getIntValue("Option/CharactersPerPost").setValue(options.getIntegerOption("CharactersPerPost").getReal());
1775                         configuration.getIntValue("Option/PostCutOffLength").setValue(options.getIntegerOption("PostCutOffLength").getReal());
1776                         configuration.getBooleanValue("Option/RequireFullAccess").setValue(options.getBooleanOption("RequireFullAccess").getReal());
1777                         configuration.getIntValue("Option/PositiveTrust").setValue(options.getIntegerOption("PositiveTrust").getReal());
1778                         configuration.getIntValue("Option/NegativeTrust").setValue(options.getIntegerOption("NegativeTrust").getReal());
1779                         configuration.getStringValue("Option/TrustComment").setValue(options.getStringOption("TrustComment").getReal());
1780                         configuration.getBooleanValue("Option/ActivateFcpInterface").setValue(options.getBooleanOption("ActivateFcpInterface").getReal());
1781                         configuration.getIntValue("Option/FcpFullAccessRequired").setValue(options.getIntegerOption("FcpFullAccessRequired").getReal());
1782
1783                         /* save known Sones. */
1784                         int soneCounter = 0;
1785                         synchronized (knownSones) {
1786                                 for (String knownSoneId : knownSones) {
1787                                         configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").setValue(knownSoneId);
1788                                 }
1789                                 configuration.getStringValue("KnownSone/" + soneCounter + "/ID").setValue(null);
1790                         }
1791
1792                         /* save Sone following times. */
1793                         soneCounter = 0;
1794                         synchronized (soneFollowingTimes) {
1795                                 for (Entry<String, Long> soneFollowingTime : soneFollowingTimes.entrySet()) {
1796                                         configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(soneFollowingTime.getKey());
1797                                         configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").setValue(soneFollowingTime.getValue());
1798                                         ++soneCounter;
1799                                 }
1800                                 configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(null);
1801                         }
1802
1803                         /* save known posts. */
1804                         database.save();
1805
1806                         /* save bookmarked posts. */
1807                         int bookmarkedPostCounter = 0;
1808                         synchronized (bookmarkedPosts) {
1809                                 for (String bookmarkedPostId : bookmarkedPosts) {
1810                                         configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(bookmarkedPostId);
1811                                 }
1812                         }
1813                         configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(null);
1814
1815                         /* now save it. */
1816                         configuration.save();
1817
1818                 } catch (ConfigurationException ce1) {
1819                         logger.log(Level.SEVERE, "Could not store configuration!", ce1);
1820                 } catch (DatabaseException de1) {
1821                         logger.log(Level.SEVERE, "Could not save database!", de1);
1822                 } finally {
1823                         synchronized (configuration) {
1824                                 storingConfiguration = false;
1825                         }
1826                 }
1827         }
1828
1829         /**
1830          * Loads the configuration.
1831          */
1832         private void loadConfiguration() {
1833                 /* create options. */
1834                 options.addIntegerOption("InsertionDelay", new DefaultOption<Integer>(60, new IntegerRangePredicate(0, Integer.MAX_VALUE), new SetInsertionDelay()));
1835                 options.addIntegerOption("PostsPerPage", new DefaultOption<Integer>(10, new IntegerRangePredicate(1, Integer.MAX_VALUE)));
1836                 options.addIntegerOption("ImagesPerPage", new DefaultOption<Integer>(9, new IntegerRangePredicate(1, Integer.MAX_VALUE)));
1837                 options.addIntegerOption("CharactersPerPost", new DefaultOption<Integer>(400, Predicates.<Integer> or(new IntegerRangePredicate(50, Integer.MAX_VALUE), Predicates.equalTo(-1))));
1838                 options.addIntegerOption("PostCutOffLength", new DefaultOption<Integer>(200, Predicates.<Integer> or(new IntegerRangePredicate(50, Integer.MAX_VALUE), Predicates.equalTo(-1))));
1839                 options.addBooleanOption("RequireFullAccess", new DefaultOption<Boolean>(false));
1840                 options.addIntegerOption("PositiveTrust", new DefaultOption<Integer>(75, new IntegerRangePredicate(0, 100)));
1841                 options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-25, new IntegerRangePredicate(-100, 100)));
1842                 options.addStringOption("TrustComment", new DefaultOption<String>("Set from Sone Web Interface"));
1843                 options.addBooleanOption("ActivateFcpInterface", new DefaultOption<Boolean>(false, fcpInterface.new SetActive()));
1844                 options.addIntegerOption("FcpFullAccessRequired", new DefaultOption<Integer>(2, fcpInterface.new SetFullAccessRequired()));
1845
1846                 loadConfigurationValue("InsertionDelay");
1847                 loadConfigurationValue("PostsPerPage");
1848                 loadConfigurationValue("ImagesPerPage");
1849                 loadConfigurationValue("CharactersPerPost");
1850                 loadConfigurationValue("PostCutOffLength");
1851                 options.getBooleanOption("RequireFullAccess").set(configuration.getBooleanValue("Option/RequireFullAccess").getValue(null));
1852                 loadConfigurationValue("PositiveTrust");
1853                 loadConfigurationValue("NegativeTrust");
1854                 options.getStringOption("TrustComment").set(configuration.getStringValue("Option/TrustComment").getValue(null));
1855                 options.getBooleanOption("ActivateFcpInterface").set(configuration.getBooleanValue("Option/ActivateFcpInterface").getValue(null));
1856                 options.getIntegerOption("FcpFullAccessRequired").set(configuration.getIntValue("Option/FcpFullAccessRequired").getValue(null));
1857
1858                 /* load known Sones. */
1859                 int soneCounter = 0;
1860                 while (true) {
1861                         String knownSoneId = configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").getValue(null);
1862                         if (knownSoneId == null) {
1863                                 break;
1864                         }
1865                         synchronized (knownSones) {
1866                                 knownSones.add(knownSoneId);
1867                         }
1868                 }
1869
1870                 /* load Sone following times. */
1871                 soneCounter = 0;
1872                 while (true) {
1873                         String soneId = configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").getValue(null);
1874                         if (soneId == null) {
1875                                 break;
1876                         }
1877                         long time = configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").getValue(Long.MAX_VALUE);
1878                         synchronized (soneFollowingTimes) {
1879                                 soneFollowingTimes.put(soneId, time);
1880                         }
1881                         ++soneCounter;
1882                 }
1883
1884                 /* load bookmarked posts. */
1885                 int bookmarkedPostCounter = 0;
1886                 while (true) {
1887                         String bookmarkedPostId = configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").getValue(null);
1888                         if (bookmarkedPostId == null) {
1889                                 break;
1890                         }
1891                         synchronized (bookmarkedPosts) {
1892                                 bookmarkedPosts.add(bookmarkedPostId);
1893                         }
1894                 }
1895
1896         }
1897
1898         /**
1899          * Loads an {@link Integer} configuration value for the option with the
1900          * given name, logging validation failures.
1901          *
1902          * @param optionName
1903          *            The name of the option to load
1904          */
1905         private void loadConfigurationValue(String optionName) {
1906                 try {
1907                         options.getIntegerOption(optionName).set(configuration.getIntValue("Option/" + optionName).getValue(null));
1908                 } catch (IllegalArgumentException iae1) {
1909                         logger.log(Level.WARNING, String.format("Invalid value for %s in configuration, using default.", optionName));
1910                 }
1911         }
1912
1913         /**
1914          * Notifies the core that a new {@link OwnIdentity} was added.
1915          *
1916          * @param ownIdentityAddedEvent
1917          *            The event
1918          */
1919         @Subscribe
1920         public void ownIdentityAdded(OwnIdentityAddedEvent ownIdentityAddedEvent) {
1921                 OwnIdentity ownIdentity = ownIdentityAddedEvent.ownIdentity();
1922                 logger.log(Level.FINEST, String.format("Adding OwnIdentity: %s", ownIdentity));
1923                 if (ownIdentity.hasContext("Sone")) {
1924                         addLocalSone(ownIdentity);
1925                 }
1926         }
1927
1928         /**
1929          * Notifies the core that an {@link OwnIdentity} was removed.
1930          *
1931          * @param ownIdentityRemovedEvent
1932          *            The event
1933          */
1934         @Subscribe
1935         public void ownIdentityRemoved(OwnIdentityRemovedEvent ownIdentityRemovedEvent) {
1936                 OwnIdentity ownIdentity = ownIdentityRemovedEvent.ownIdentity();
1937                 logger.log(Level.FINEST, String.format("Removing OwnIdentity: %s", ownIdentity));
1938                 trustedIdentities.removeAll(ownIdentity);
1939         }
1940
1941         /**
1942          * Notifies the core that a new {@link Identity} was added.
1943          *
1944          * @param identityAddedEvent
1945          *            The event
1946          */
1947         @Subscribe
1948         public void identityAdded(IdentityAddedEvent identityAddedEvent) {
1949                 Identity identity = identityAddedEvent.identity();
1950                 logger.log(Level.FINEST, String.format("Adding Identity: %s", identity));
1951                 trustedIdentities.put(identityAddedEvent.ownIdentity(), identity);
1952                 addRemoteSone(identity);
1953         }
1954
1955         /**
1956          * Notifies the core that an {@link Identity} was updated.
1957          *
1958          * @param identityUpdatedEvent
1959          *            The event
1960          */
1961         @Subscribe
1962         public void identityUpdated(IdentityUpdatedEvent identityUpdatedEvent) {
1963                 Identity identity = identityUpdatedEvent.identity();
1964                 final Sone sone = getRemoteSone(identity.getId(), false);
1965                 if (sone.isLocal()) {
1966                         return;
1967                 }
1968                 sone.setIdentity(identity);
1969                 sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), sone.getLatestEdition()));
1970                 soneDownloader.addSone(sone);
1971                 soneDownloaders.execute(soneDownloader.fetchSoneAction(sone));
1972         }
1973
1974         /**
1975          * Notifies the core that an {@link Identity} was removed.
1976          *
1977          * @param identityRemovedEvent
1978          *            The event
1979          */
1980         @Subscribe
1981         public void identityRemoved(IdentityRemovedEvent identityRemovedEvent) {
1982                 OwnIdentity ownIdentity = identityRemovedEvent.ownIdentity();
1983                 Identity identity = identityRemovedEvent.identity();
1984                 trustedIdentities.remove(ownIdentity, identity);
1985                 boolean foundIdentity = false;
1986                 for (Entry<OwnIdentity, Collection<Identity>> trustedIdentity : trustedIdentities.asMap().entrySet()) {
1987                         if (trustedIdentity.getKey().equals(ownIdentity)) {
1988                                 continue;
1989                         }
1990                         if (trustedIdentity.getValue().contains(identity)) {
1991                                 foundIdentity = true;
1992                         }
1993                 }
1994                 if (foundIdentity) {
1995                         /* some local identity still trusts this identity, don’t remove. */
1996                         return;
1997                 }
1998                 Optional<Sone> sone = getSone(identity.getId());
1999                 if (!sone.isPresent()) {
2000                         /* TODO - we don’t have the Sone anymore. should this happen? */
2001                         return;
2002                 }
2003                 database.removePosts(sone.get());
2004                 for (Post post : sone.get().getPosts()) {
2005                         eventBus.post(new PostRemovedEvent(post));
2006                 }
2007                 database.removePostReplies(sone.get());
2008                 for (PostReply reply : sone.get().getReplies()) {
2009                         eventBus.post(new PostReplyRemovedEvent(reply));
2010                 }
2011                 synchronized (sones) {
2012                         sones.remove(identity.getId());
2013                 }
2014                 eventBus.post(new SoneRemovedEvent(sone.get()));
2015         }
2016
2017         /**
2018          * Deletes the temporary image.
2019          *
2020          * @param imageInsertFinishedEvent
2021          *            The event
2022          */
2023         @Subscribe
2024         public void imageInsertFinished(ImageInsertFinishedEvent imageInsertFinishedEvent) {
2025                 logger.log(Level.WARNING, String.format("Image insert finished for %s: %s", imageInsertFinishedEvent.image(), imageInsertFinishedEvent.resultingUri()));
2026                 imageInsertFinishedEvent.image().modify().setKey(imageInsertFinishedEvent.resultingUri().toString()).update();
2027                 deleteTemporaryImage(imageInsertFinishedEvent.image().getId());
2028                 touchConfiguration();
2029         }
2030
2031         @VisibleForTesting
2032         class MarkPostKnown implements Runnable {
2033
2034                 private final Post post;
2035
2036                 public MarkPostKnown(Post post) {
2037                         this.post = post;
2038                 }
2039
2040                 @Override
2041                 public void run() {
2042                         markPostKnown(post);
2043                 }
2044
2045         }
2046
2047         @VisibleForTesting
2048         class MarkReplyKnown implements Runnable {
2049
2050                 private final PostReply postReply;
2051
2052                 public MarkReplyKnown(PostReply postReply) {
2053                         this.postReply = postReply;
2054                 }
2055
2056                 @Override
2057                 public void run() {
2058                         markReplyKnown(postReply);
2059                 }
2060
2061         }
2062
2063 }