2 * Sone - Core.java - Copyright © 2010–2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.core;
20 import static com.google.common.base.Preconditions.checkArgument;
21 import static com.google.common.base.Preconditions.checkNotNull;
23 import java.net.MalformedURLException;
24 import java.util.ArrayList;
25 import java.util.Collection;
26 import java.util.Collections;
27 import java.util.HashMap;
28 import java.util.HashSet;
29 import java.util.List;
31 import java.util.Map.Entry;
33 import java.util.concurrent.ExecutorService;
34 import java.util.concurrent.Executors;
35 import java.util.concurrent.ScheduledExecutorService;
36 import java.util.concurrent.TimeUnit;
37 import java.util.logging.Level;
38 import java.util.logging.Logger;
40 import net.pterodactylus.sone.core.Options.DefaultOption;
41 import net.pterodactylus.sone.core.Options.Option;
42 import net.pterodactylus.sone.core.Options.OptionWatcher;
43 import net.pterodactylus.sone.core.event.ImageInsertFinishedEvent;
44 import net.pterodactylus.sone.core.event.MarkPostKnownEvent;
45 import net.pterodactylus.sone.core.event.MarkPostReplyKnownEvent;
46 import net.pterodactylus.sone.core.event.MarkSoneKnownEvent;
47 import net.pterodactylus.sone.core.event.NewPostFoundEvent;
48 import net.pterodactylus.sone.core.event.NewPostReplyFoundEvent;
49 import net.pterodactylus.sone.core.event.NewSoneFoundEvent;
50 import net.pterodactylus.sone.core.event.PostRemovedEvent;
51 import net.pterodactylus.sone.core.event.PostReplyRemovedEvent;
52 import net.pterodactylus.sone.core.event.SoneLockedEvent;
53 import net.pterodactylus.sone.core.event.SoneRemovedEvent;
54 import net.pterodactylus.sone.core.event.SoneUnlockedEvent;
55 import net.pterodactylus.sone.data.Album;
56 import net.pterodactylus.sone.data.Client;
57 import net.pterodactylus.sone.data.Image;
58 import net.pterodactylus.sone.data.Post;
59 import net.pterodactylus.sone.data.PostBuilder;
60 import net.pterodactylus.sone.data.PostBuilderFactory;
61 import net.pterodactylus.sone.data.PostReply;
62 import net.pterodactylus.sone.data.PostReplyBuilder;
63 import net.pterodactylus.sone.data.PostReplyBuilderFactory;
64 import net.pterodactylus.sone.data.Profile;
65 import net.pterodactylus.sone.data.Profile.Field;
66 import net.pterodactylus.sone.data.Reply;
67 import net.pterodactylus.sone.data.Sone;
68 import net.pterodactylus.sone.data.Sone.ShowCustomAvatars;
69 import net.pterodactylus.sone.data.Sone.SoneStatus;
70 import net.pterodactylus.sone.data.TemporaryImage;
71 import net.pterodactylus.sone.fcp.FcpInterface;
72 import net.pterodactylus.sone.fcp.FcpInterface.FullAccessRequired;
73 import net.pterodactylus.sone.freenet.wot.Identity;
74 import net.pterodactylus.sone.freenet.wot.IdentityManager;
75 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
76 import net.pterodactylus.sone.freenet.wot.event.IdentityAddedEvent;
77 import net.pterodactylus.sone.freenet.wot.event.IdentityRemovedEvent;
78 import net.pterodactylus.sone.freenet.wot.event.IdentityUpdatedEvent;
79 import net.pterodactylus.sone.freenet.wot.event.OwnIdentityAddedEvent;
80 import net.pterodactylus.sone.freenet.wot.event.OwnIdentityRemovedEvent;
81 import net.pterodactylus.sone.main.SonePlugin;
82 import net.pterodactylus.sone.utils.IntegerRangePredicate;
83 import net.pterodactylus.util.config.Configuration;
84 import net.pterodactylus.util.config.ConfigurationException;
85 import net.pterodactylus.util.logging.Logging;
86 import net.pterodactylus.util.number.Numbers;
87 import net.pterodactylus.util.service.AbstractService;
88 import net.pterodactylus.util.thread.NamedThreadFactory;
90 import com.google.common.base.Predicate;
91 import com.google.common.base.Predicates;
92 import com.google.common.collect.Collections2;
93 import com.google.common.eventbus.EventBus;
94 import com.google.common.eventbus.Subscribe;
95 import com.google.inject.Inject;
97 import freenet.keys.FreenetURI;
102 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
104 public class Core extends AbstractService implements SoneProvider, PostProvider, PostReplyProvider {
107 private static final Logger logger = Logging.getLogger(Core.class);
109 /** The start time. */
110 private final long startupTime = System.currentTimeMillis();
113 private final Options options = new Options();
115 /** The preferences. */
116 private final Preferences preferences = new Preferences(options);
118 /** The event bus. */
119 private final EventBus eventBus;
121 /** The configuration. */
122 private Configuration configuration;
124 /** Whether we’re currently saving the configuration. */
125 private boolean storingConfiguration = false;
127 /** The identity manager. */
128 private final IdentityManager identityManager;
130 /** Interface to freenet. */
131 private final FreenetInterface freenetInterface;
133 /** The Sone downloader. */
134 private final SoneDownloader soneDownloader;
136 /** The image inserter. */
137 private final ImageInserter imageInserter;
139 /** Sone downloader thread-pool. */
140 private final ExecutorService soneDownloaders = Executors.newFixedThreadPool(10, new NamedThreadFactory("Sone Downloader %2$d"));
142 /** The update checker. */
143 private final UpdateChecker updateChecker;
145 /** The trust updater. */
146 private final WebOfTrustUpdater webOfTrustUpdater;
148 /** The FCP interface. */
149 private volatile FcpInterface fcpInterface;
151 /** The times Sones were followed. */
152 private final Map<Sone, Long> soneFollowingTimes = new HashMap<Sone, Long>();
154 /** Locked local Sones. */
155 /* synchronize on itself. */
156 private final Set<Sone> lockedSones = new HashSet<Sone>();
158 /** Sone inserters. */
159 /* synchronize access on this on sones. */
160 private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
162 /** Sone rescuers. */
163 /* synchronize access on this on sones. */
164 private final Map<Sone, SoneRescuer> soneRescuers = new HashMap<Sone, SoneRescuer>();
167 /* synchronize access on this on itself. */
168 private final Map<String, Sone> sones = new HashMap<String, Sone>();
170 /** All known Sones. */
171 private final Set<String> knownSones = new HashSet<String>();
173 /** The post builder. */
174 private final PostBuilderFactory postBuilderFactory;
177 private final Map<String, Post> posts = new HashMap<String, Post>();
179 /** All known posts. */
180 private final Set<String> knownPosts = new HashSet<String>();
182 /** The post reply builder factory. */
183 private final PostReplyBuilderFactory postReplyBuilderFactory;
186 private final Map<String, PostReply> replies = new HashMap<String, PostReply>();
188 /** All known replies. */
189 private final Set<String> knownReplies = new HashSet<String>();
191 /** All bookmarked posts. */
192 /* synchronize access on itself. */
193 private final Set<String> bookmarkedPosts = new HashSet<String>();
195 /** Trusted identities, sorted by own identities. */
196 private final Map<OwnIdentity, Set<Identity>> trustedIdentities = Collections.synchronizedMap(new HashMap<OwnIdentity, Set<Identity>>());
198 /** All known albums. */
199 private final Map<String, Album> albums = new HashMap<String, Album>();
201 /** All known images. */
202 private final Map<String, Image> images = new HashMap<String, Image>();
204 /** All temporary images. */
205 private final Map<String, TemporaryImage> temporaryImages = new HashMap<String, TemporaryImage>();
207 /** Ticker for threads that mark own elements as known. */
208 private final ScheduledExecutorService localElementTicker = Executors.newScheduledThreadPool(1);
210 /** The time the configuration was last touched. */
211 private volatile long lastConfigurationUpdate;
214 * Creates a new core.
216 * @param configuration
217 * The configuration of the core
218 * @param freenetInterface
219 * The freenet interface
220 * @param identityManager
221 * The identity manager
222 * @param webOfTrustUpdater
223 * The WebOfTrust updater
226 * @param postBuilderFactory
228 * @param postReplyBuilderFactory
229 * The post reply builder factory
232 public Core(Configuration configuration, FreenetInterface freenetInterface, IdentityManager identityManager, WebOfTrustUpdater webOfTrustUpdater, EventBus eventBus, PostBuilderFactory postBuilderFactory, PostReplyBuilderFactory postReplyBuilderFactory) {
234 this.configuration = configuration;
235 this.freenetInterface = freenetInterface;
236 this.identityManager = identityManager;
237 this.soneDownloader = new SoneDownloader(this, freenetInterface);
238 this.imageInserter = new ImageInserter(freenetInterface);
239 this.updateChecker = new UpdateChecker(eventBus, freenetInterface);
240 this.webOfTrustUpdater = webOfTrustUpdater;
241 this.eventBus = eventBus;
242 this.postBuilderFactory = postBuilderFactory;
243 this.postReplyBuilderFactory = postReplyBuilderFactory;
251 * Returns the time Sone was started.
253 * @return The startup time (in milliseconds since Jan 1, 1970 UTC)
255 public long getStartupTime() {
260 * Sets the configuration to use. This will automatically save the current
261 * configuration to the given configuration.
263 * @param configuration
264 * The new configuration to use
266 public void setConfiguration(Configuration configuration) {
267 this.configuration = configuration;
268 touchConfiguration();
272 * Returns the options used by the core.
274 * @return The options of the core
276 public Preferences getPreferences() {
281 * Returns the identity manager used by the core.
283 * @return The identity manager
285 public IdentityManager getIdentityManager() {
286 return identityManager;
290 * Returns the update checker.
292 * @return The update checker
294 public UpdateChecker getUpdateChecker() {
295 return updateChecker;
299 * Sets the FCP interface to use.
301 * @param fcpInterface
302 * The FCP interface to use
304 public void setFcpInterface(FcpInterface fcpInterface) {
305 this.fcpInterface = fcpInterface;
309 * Returns the Sone rescuer for the given local Sone.
312 * The local Sone to get the rescuer for
313 * @return The Sone rescuer for the given Sone
315 public SoneRescuer getSoneRescuer(Sone sone) {
316 checkNotNull(sone, "sone must not be null");
317 checkArgument(sone.isLocal(), "sone must be local");
318 synchronized (sones) {
319 SoneRescuer soneRescuer = soneRescuers.get(sone);
320 if (soneRescuer == null) {
321 soneRescuer = new SoneRescuer(this, soneDownloader, sone);
322 soneRescuers.put(sone, soneRescuer);
330 * Returns whether the given Sone is currently locked.
334 * @return {@code true} if the Sone is locked, {@code false} if it is not
336 public boolean isLocked(Sone sone) {
337 synchronized (lockedSones) {
338 return lockedSones.contains(sone);
343 * Returns all Sones, remote and local.
347 public Set<Sone> getSones() {
348 return new HashSet<Sone>(sones.values());
352 * Returns the Sone with the given ID, regardless whether it’s local or
356 * The ID of the Sone to get
357 * @return The Sone with the given ID, or {@code null} if there is no such
360 public Sone getSone(String id) {
361 return getSone(id, true);
365 * Returns the Sone with the given ID, regardless whether it’s local or
369 * The ID of the Sone to get
371 * {@code true} to create a new Sone if none exists,
372 * {@code false} to return {@code null} if a Sone with the given
374 * @return The Sone with the given ID, or {@code null} if there is no such
378 public Sone getSone(String id, boolean create) {
379 synchronized (sones) {
380 if (!sones.containsKey(id) && create) {
381 Sone sone = new Sone(id, false);
384 return sones.get(id);
389 * Checks whether the core knows a Sone with the given ID.
393 * @return {@code true} if there is a Sone with the given ID, {@code false}
396 public boolean hasSone(String id) {
397 synchronized (sones) {
398 return sones.containsKey(id);
403 * Returns all local Sones.
405 * @return All local Sones
407 public Collection<Sone> getLocalSones() {
408 synchronized (sones) {
409 return Collections2.filter(sones.values(), new Predicate<Sone>() {
412 public boolean apply(Sone sone) {
413 return sone.isLocal();
420 * Returns the local Sone with the given ID, optionally creating a new Sone.
425 * {@code true} to create a new Sone if none exists,
426 * {@code false} to return null if none exists
427 * @return The Sone with the given ID, or {@code null}
429 public Sone getLocalSone(String id, boolean create) {
430 synchronized (sones) {
431 Sone sone = sones.get(id);
432 if ((sone == null) && create) {
433 sone = new Sone(id, true);
436 if ((sone != null) && !sone.isLocal()) {
437 sone = new Sone(id, true);
445 * Returns all remote Sones.
447 * @return All remote Sones
449 public Collection<Sone> getRemoteSones() {
450 synchronized (sones) {
451 return Collections2.filter(sones.values(), new Predicate<Sone>() {
454 public boolean apply(Sone sone) {
455 return !sone.isLocal();
462 * Returns the remote Sone with the given ID.
465 * The ID of the remote Sone to get
467 * {@code true} to always create a Sone, {@code false} to return
468 * {@code null} if no Sone with the given ID exists
469 * @return The Sone with the given ID
471 public Sone getRemoteSone(String id, boolean create) {
472 synchronized (sones) {
473 Sone sone = sones.get(id);
474 if ((sone == null) && create && (id != null) && (id.length() == 43)) {
475 sone = new Sone(id, false);
483 * Returns whether the given Sone has been modified.
486 * The Sone to check for modifications
487 * @return {@code true} if a modification has been detected in the Sone,
488 * {@code false} otherwise
490 public boolean isModifiedSone(Sone sone) {
491 return (soneInserters.containsKey(sone)) ? soneInserters.get(sone).isModified() : false;
495 * Returns the time when the given was first followed by any local Sone.
498 * The Sone to get the time for
499 * @return The time (in milliseconds since Jan 1, 1970) the Sone has first
500 * been followed, or {@link Long#MAX_VALUE}
502 public long getSoneFollowingTime(Sone sone) {
503 synchronized (soneFollowingTimes) {
504 if (soneFollowingTimes.containsKey(sone)) {
505 return soneFollowingTimes.get(sone);
507 return Long.MAX_VALUE;
512 * Returns whether the target Sone is trusted by the origin Sone.
518 * @return {@code true} if the target Sone is trusted by the origin Sone
520 public boolean isSoneTrusted(Sone origin, Sone target) {
521 checkNotNull(origin, "origin must not be null");
522 checkNotNull(target, "target must not be null");
523 checkArgument(origin.getIdentity() instanceof OwnIdentity, "origin’s identity must be an OwnIdentity");
524 return trustedIdentities.containsKey(origin.getIdentity()) && trustedIdentities.get(origin.getIdentity()).contains(target.getIdentity());
528 * Returns a post builder.
530 * @return A new post builder
532 public PostBuilder postBuilder() {
533 return postBuilderFactory.newPostBuilder();
540 public Post getPost(String postId) {
541 synchronized (posts) {
542 return posts.get(postId);
547 * Returns all posts that have the given Sone as recipient.
549 * @see Post#getRecipient()
551 * The recipient of the posts
552 * @return All posts that have the given Sone as recipient
554 public Set<Post> getDirectedPosts(Sone recipient) {
555 checkNotNull(recipient, "recipient must not be null");
556 Set<Post> directedPosts = new HashSet<Post>();
557 synchronized (posts) {
558 for (Post post : posts.values()) {
559 if (recipient.equals(post.getRecipient())) {
560 directedPosts.add(post);
564 return directedPosts;
568 * Returns a post reply builder.
570 * @return A new post reply builder
572 public PostReplyBuilder postReplyBuilder() {
573 return postReplyBuilderFactory.newPostReplyBuilder();
580 public PostReply getPostReply(String replyId) {
581 synchronized (replies) {
582 return replies.get(replyId);
590 public List<PostReply> getReplies(Post post) {
591 Set<Sone> sones = getSones();
592 List<PostReply> replies = new ArrayList<PostReply>();
593 for (Sone sone : sones) {
594 for (PostReply reply : sone.getReplies()) {
595 if (reply.getPost().equals(post)) {
600 Collections.sort(replies, Reply.TIME_COMPARATOR);
605 * Returns all Sones that have liked the given post.
608 * The post to get the liking Sones for
609 * @return The Sones that like the given post
611 public Set<Sone> getLikes(Post post) {
612 Set<Sone> sones = new HashSet<Sone>();
613 for (Sone sone : getSones()) {
614 if (sone.getLikedPostIds().contains(post.getId())) {
622 * Returns all Sones that have liked the given reply.
625 * The reply to get the liking Sones for
626 * @return The Sones that like the given reply
628 public Set<Sone> getLikes(PostReply reply) {
629 Set<Sone> sones = new HashSet<Sone>();
630 for (Sone sone : getSones()) {
631 if (sone.getLikedReplyIds().contains(reply.getId())) {
639 * Returns whether the given post is bookmarked.
643 * @return {@code true} if the given post is bookmarked, {@code false}
646 public boolean isBookmarked(Post post) {
647 return isPostBookmarked(post.getId());
651 * Returns whether the post with the given ID is bookmarked.
654 * The ID of the post to check
655 * @return {@code true} if the post with the given ID is bookmarked,
656 * {@code false} otherwise
658 public boolean isPostBookmarked(String id) {
659 synchronized (bookmarkedPosts) {
660 return bookmarkedPosts.contains(id);
665 * Returns all currently known bookmarked posts.
667 * @return All bookmarked posts
669 public Set<Post> getBookmarkedPosts() {
670 Set<Post> posts = new HashSet<Post>();
671 synchronized (bookmarkedPosts) {
672 for (String bookmarkedPostId : bookmarkedPosts) {
673 Post post = getPost(bookmarkedPostId);
683 * Returns the album with the given ID, creating a new album if no album
684 * with the given ID can be found.
687 * The ID of the album
688 * @return The album with the given ID
690 public Album getAlbum(String albumId) {
691 return getAlbum(albumId, true);
695 * Returns the album with the given ID, optionally creating a new album if
696 * an album with the given ID can not be found.
699 * The ID of the album
701 * {@code true} to create a new album if none exists for the
703 * @return The album with the given ID, or {@code null} if no album with the
704 * given ID exists and {@code create} is {@code false}
706 public Album getAlbum(String albumId, boolean create) {
707 synchronized (albums) {
708 Album album = albums.get(albumId);
709 if (create && (album == null)) {
710 album = new Album(albumId);
711 albums.put(albumId, album);
718 * Returns the image with the given ID, creating it if necessary.
721 * The ID of the image
722 * @return The image with the given ID
724 public Image getImage(String imageId) {
725 return getImage(imageId, true);
729 * Returns the image with the given ID, optionally creating it if it does
733 * The ID of the image
735 * {@code true} to create an image if none exists with the given
737 * @return The image with the given ID, or {@code null} if none exists and
740 public Image getImage(String imageId, boolean create) {
741 synchronized (images) {
742 Image image = images.get(imageId);
743 if (create && (image == null)) {
744 image = new Image(imageId);
745 images.put(imageId, image);
752 * Returns the temporary image with the given ID.
755 * The ID of the temporary image
756 * @return The temporary image, or {@code null} if there is no temporary
757 * image with the given ID
759 public TemporaryImage getTemporaryImage(String imageId) {
760 synchronized (temporaryImages) {
761 return temporaryImages.get(imageId);
770 * Locks the given Sone. A locked Sone will not be inserted by
771 * {@link SoneInserter} until it is {@link #unlockSone(Sone) unlocked}
777 public void lockSone(Sone sone) {
778 synchronized (lockedSones) {
779 if (lockedSones.add(sone)) {
780 eventBus.post(new SoneLockedEvent(sone));
786 * Unlocks the given Sone.
788 * @see #lockSone(Sone)
792 public void unlockSone(Sone sone) {
793 synchronized (lockedSones) {
794 if (lockedSones.remove(sone)) {
795 eventBus.post(new SoneUnlockedEvent(sone));
801 * Adds a local Sone from the given own identity.
804 * The own identity to create a Sone from
805 * @return The added (or already existing) Sone
807 public Sone addLocalSone(OwnIdentity ownIdentity) {
808 if (ownIdentity == null) {
809 logger.log(Level.WARNING, "Given OwnIdentity is null!");
812 synchronized (sones) {
815 sone = getLocalSone(ownIdentity.getId(), true).setIdentity(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
816 } catch (MalformedURLException mue1) {
817 logger.log(Level.SEVERE, String.format("Could not convert the Identity’s URIs to Freenet URIs: %s, %s", ownIdentity.getInsertUri(), ownIdentity.getRequestUri()), mue1);
820 sone.setLatestEdition(Numbers.safeParseLong(ownIdentity.getProperty("Sone.LatestEdition"), (long) 0));
821 sone.setClient(new Client("Sone", SonePlugin.VERSION.toString()));
823 /* TODO - load posts ’n stuff */
824 sones.put(ownIdentity.getId(), sone);
825 final SoneInserter soneInserter = new SoneInserter(this, eventBus, freenetInterface, sone);
826 soneInserters.put(sone, soneInserter);
827 sone.setStatus(SoneStatus.idle);
829 soneInserter.start();
835 * Creates a new Sone for the given own identity.
838 * The own identity to create a Sone for
839 * @return The created Sone
841 public Sone createSone(OwnIdentity ownIdentity) {
842 if (!webOfTrustUpdater.addContextWait(ownIdentity, "Sone")) {
843 logger.log(Level.SEVERE, String.format("Could not add “Sone” context to own identity: %s", ownIdentity));
846 Sone sone = addLocalSone(ownIdentity);
847 sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
848 sone.getOptions().addBooleanOption("EnableSoneInsertNotifications", new DefaultOption<Boolean>(false));
849 sone.getOptions().addBooleanOption("ShowNotification/NewSones", new DefaultOption<Boolean>(true));
850 sone.getOptions().addBooleanOption("ShowNotification/NewPosts", new DefaultOption<Boolean>(true));
851 sone.getOptions().addBooleanOption("ShowNotification/NewReplies", new DefaultOption<Boolean>(true));
852 sone.getOptions().addEnumOption("ShowCustomAvatars", new DefaultOption<ShowCustomAvatars>(ShowCustomAvatars.NEVER));
854 followSone(sone, getSone("nwa8lHa271k2QvJ8aa0Ov7IHAV-DFOCFgmDt3X6BpCI"));
855 touchConfiguration();
860 * Adds the Sone of the given identity.
863 * The identity whose Sone to add
864 * @return The added or already existing Sone
866 public Sone addRemoteSone(Identity identity) {
867 if (identity == null) {
868 logger.log(Level.WARNING, "Given Identity is null!");
871 synchronized (sones) {
872 final Sone sone = getRemoteSone(identity.getId(), true).setIdentity(identity);
873 boolean newSone = sone.getRequestUri() == null;
874 sone.setRequestUri(SoneUri.create(identity.getRequestUri()));
875 sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), (long) 0));
877 synchronized (knownSones) {
878 newSone = !knownSones.contains(sone.getId());
880 sone.setKnown(!newSone);
882 eventBus.post(new NewSoneFoundEvent(sone));
883 for (Sone localSone : getLocalSones()) {
884 if (localSone.getOptions().getBooleanOption("AutoFollow").get()) {
885 followSone(localSone, sone);
890 soneDownloader.addSone(sone);
891 soneDownloaders.execute(new Runnable() {
894 @SuppressWarnings("synthetic-access")
896 soneDownloader.fetchSone(sone, sone.getRequestUri());
905 * Lets the given local Sone follow the Sone with the given ID.
908 * The local Sone that should follow another Sone
910 * The ID of the Sone to follow
912 public void followSone(Sone sone, String soneId) {
913 checkNotNull(sone, "sone must not be null");
914 checkNotNull(soneId, "soneId must not be null");
915 Sone followedSone = getSone(soneId, true);
916 if (followedSone == null) {
917 logger.log(Level.INFO, String.format("Ignored Sone with invalid ID: %s", soneId));
920 followSone(sone, getSone(soneId));
924 * Lets the given local Sone follow the other given Sone. If the given Sone
925 * was not followed by any local Sone before, this will mark all elements of
926 * the followed Sone as read that have been created before the current
930 * The local Sone that should follow the other Sone
931 * @param followedSone
932 * The Sone that should be followed
934 public void followSone(Sone sone, Sone followedSone) {
935 checkNotNull(sone, "sone must not be null");
936 checkNotNull(followedSone, "followedSone must not be null");
937 sone.addFriend(followedSone.getId());
938 synchronized (soneFollowingTimes) {
939 if (!soneFollowingTimes.containsKey(followedSone)) {
940 long now = System.currentTimeMillis();
941 soneFollowingTimes.put(followedSone, now);
942 for (Post post : followedSone.getPosts()) {
943 if (post.getTime() < now) {
947 for (PostReply reply : followedSone.getReplies()) {
948 if (reply.getTime() < now) {
949 markReplyKnown(reply);
954 touchConfiguration();
958 * Lets the given local Sone unfollow the Sone with the given ID.
961 * The local Sone that should unfollow another Sone
963 * The ID of the Sone being unfollowed
965 public void unfollowSone(Sone sone, String soneId) {
966 checkNotNull(sone, "sone must not be null");
967 checkNotNull(soneId, "soneId must not be null");
968 unfollowSone(sone, getSone(soneId, false));
972 * Lets the given local Sone unfollow the other given Sone. If the given
973 * local Sone is the last local Sone that followed the given Sone, its
974 * following time will be removed.
977 * The local Sone that should unfollow another Sone
978 * @param unfollowedSone
979 * The Sone being unfollowed
981 public void unfollowSone(Sone sone, Sone unfollowedSone) {
982 checkNotNull(sone, "sone must not be null");
983 checkNotNull(unfollowedSone, "unfollowedSone must not be null");
984 sone.removeFriend(unfollowedSone.getId());
985 boolean unfollowedSoneStillFollowed = false;
986 for (Sone localSone : getLocalSones()) {
987 unfollowedSoneStillFollowed |= localSone.hasFriend(unfollowedSone.getId());
989 if (!unfollowedSoneStillFollowed) {
990 synchronized (soneFollowingTimes) {
991 soneFollowingTimes.remove(unfollowedSone);
994 touchConfiguration();
998 * Sets the trust value of the given origin Sone for the target Sone.
1005 * The trust value (from {@code -100} to {@code 100})
1007 public void setTrust(Sone origin, Sone target, int trustValue) {
1008 checkNotNull(origin, "origin must not be null");
1009 checkArgument(origin.getIdentity() instanceof OwnIdentity, "origin must be a local Sone");
1010 checkNotNull(target, "target must not be null");
1011 checkArgument((trustValue >= -100) && (trustValue <= 100), "trustValue must be within [-100, 100]");
1012 webOfTrustUpdater.setTrust((OwnIdentity) origin.getIdentity(), target.getIdentity(), trustValue, preferences.getTrustComment());
1016 * Removes any trust assignment for the given target Sone.
1023 public void removeTrust(Sone origin, Sone target) {
1024 checkNotNull(origin, "origin must not be null");
1025 checkNotNull(target, "target must not be null");
1026 checkArgument(origin.getIdentity() instanceof OwnIdentity, "origin must be a local Sone");
1027 webOfTrustUpdater.setTrust((OwnIdentity) origin.getIdentity(), target.getIdentity(), null, null);
1031 * Assigns the configured positive trust value for the given target.
1038 public void trustSone(Sone origin, Sone target) {
1039 setTrust(origin, target, preferences.getPositiveTrust());
1043 * Assigns the configured negative trust value for the given target.
1050 public void distrustSone(Sone origin, Sone target) {
1051 setTrust(origin, target, preferences.getNegativeTrust());
1055 * Removes the trust assignment for the given target.
1062 public void untrustSone(Sone origin, Sone target) {
1063 removeTrust(origin, target);
1067 * Updates the stored Sone with the given Sone.
1072 public void updateSone(Sone sone) {
1073 updateSone(sone, false);
1077 * Updates the stored Sone with the given Sone. If {@code soneRescueMode} is
1078 * {@code true}, an older Sone than the current Sone can be given to restore
1082 * The Sone to update
1083 * @param soneRescueMode
1084 * {@code true} if the stored Sone should be updated regardless
1085 * of the age of the given Sone
1087 public void updateSone(Sone sone, boolean soneRescueMode) {
1088 if (hasSone(sone.getId())) {
1089 Sone storedSone = getSone(sone.getId());
1090 if (!soneRescueMode && !(sone.getTime() > storedSone.getTime())) {
1091 logger.log(Level.FINE, String.format("Downloaded Sone %s is not newer than stored Sone %s.", sone, storedSone));
1094 synchronized (posts) {
1095 if (!soneRescueMode) {
1096 for (Post post : storedSone.getPosts()) {
1097 posts.remove(post.getId());
1098 if (!sone.getPosts().contains(post)) {
1099 eventBus.post(new PostRemovedEvent(post));
1103 List<Post> storedPosts = storedSone.getPosts();
1104 synchronized (knownPosts) {
1105 for (Post post : sone.getPosts()) {
1106 PostBuilder postBuilder = postBuilderFactory.newPostBuilder();
1107 postBuilder.copyPost(post).from(storedSone);
1108 Post newPost = postBuilder.build().setKnown(knownPosts.contains(post.getId()));
1109 if (!storedPosts.contains(newPost)) {
1110 if (newPost.getTime() < getSoneFollowingTime(sone)) {
1111 knownPosts.add(newPost.getId());
1112 newPost.setKnown(true);
1113 } else if (!knownPosts.contains(newPost.getId())) {
1114 eventBus.post(new NewPostFoundEvent(newPost));
1117 posts.put(newPost.getId(), newPost);
1121 synchronized (replies) {
1122 if (!soneRescueMode) {
1123 for (PostReply reply : storedSone.getReplies()) {
1124 replies.remove(reply.getId());
1125 if (!sone.getReplies().contains(reply)) {
1126 eventBus.post(new PostReplyRemovedEvent(reply));
1130 Set<PostReply> storedReplies = storedSone.getReplies();
1131 synchronized (knownReplies) {
1132 for (PostReply reply : sone.getReplies()) {
1133 reply.setSone(storedSone).setKnown(knownReplies.contains(reply.getId()));
1134 if (!storedReplies.contains(reply)) {
1135 if (reply.getTime() < getSoneFollowingTime(sone)) {
1136 knownReplies.add(reply.getId());
1137 reply.setKnown(true);
1138 } else if (!knownReplies.contains(reply.getId())) {
1139 eventBus.post(new NewPostReplyFoundEvent(reply));
1142 replies.put(reply.getId(), reply);
1146 synchronized (albums) {
1147 synchronized (images) {
1148 for (Album album : storedSone.getAlbums()) {
1149 albums.remove(album.getId());
1150 for (Image image : album.getImages()) {
1151 images.remove(image.getId());
1154 for (Album album : sone.getAlbums()) {
1155 albums.put(album.getId(), album);
1156 for (Image image : album.getImages()) {
1157 images.put(image.getId(), image);
1162 synchronized (storedSone) {
1163 if (!soneRescueMode || (sone.getTime() > storedSone.getTime())) {
1164 storedSone.setTime(sone.getTime());
1166 storedSone.setClient(sone.getClient());
1167 storedSone.setProfile(sone.getProfile());
1168 if (soneRescueMode) {
1169 for (Post post : sone.getPosts()) {
1170 storedSone.addPost(post);
1172 for (PostReply reply : sone.getReplies()) {
1173 storedSone.addReply(reply);
1175 for (String likedPostId : sone.getLikedPostIds()) {
1176 storedSone.addLikedPostId(likedPostId);
1178 for (String likedReplyId : sone.getLikedReplyIds()) {
1179 storedSone.addLikedReplyId(likedReplyId);
1181 for (Album album : sone.getAlbums()) {
1182 storedSone.addAlbum(album);
1185 storedSone.setPosts(sone.getPosts());
1186 storedSone.setReplies(sone.getReplies());
1187 storedSone.setLikePostIds(sone.getLikedPostIds());
1188 storedSone.setLikeReplyIds(sone.getLikedReplyIds());
1189 storedSone.setAlbums(sone.getAlbums());
1191 storedSone.setLatestEdition(sone.getLatestEdition());
1197 * Deletes the given Sone. This will remove the Sone from the
1198 * {@link #getLocalSones() local Sones}, stop its {@link SoneInserter} and
1199 * remove the context from its identity.
1202 * The Sone to delete
1204 public void deleteSone(Sone sone) {
1205 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1206 logger.log(Level.WARNING, String.format("Tried to delete Sone of non-own identity: %s", sone));
1209 synchronized (sones) {
1210 if (!getLocalSones().contains(sone)) {
1211 logger.log(Level.WARNING, String.format("Tried to delete non-local Sone: %s", sone));
1214 sones.remove(sone.getId());
1215 SoneInserter soneInserter = soneInserters.remove(sone);
1216 soneInserter.stop();
1218 webOfTrustUpdater.removeContext((OwnIdentity) sone.getIdentity(), "Sone");
1219 webOfTrustUpdater.removeProperty((OwnIdentity) sone.getIdentity(), "Sone.LatestEdition");
1221 configuration.getLongValue("Sone/" + sone.getId() + "/Time").setValue(null);
1222 } catch (ConfigurationException ce1) {
1223 logger.log(Level.WARNING, "Could not remove Sone from configuration!", ce1);
1228 * Marks the given Sone as known. If the Sone was not {@link Post#isKnown()
1229 * known} before, a {@link MarkSoneKnownEvent} is fired.
1232 * The Sone to mark as known
1234 public void markSoneKnown(Sone sone) {
1235 if (!sone.isKnown()) {
1236 sone.setKnown(true);
1237 synchronized (knownSones) {
1238 knownSones.add(sone.getId());
1240 eventBus.post(new MarkSoneKnownEvent(sone));
1241 touchConfiguration();
1246 * Loads and updates the given Sone from the configuration. If any error is
1247 * encountered, loading is aborted and the given Sone is not changed.
1250 * The Sone to load and update
1252 public void loadSone(Sone sone) {
1253 if (!sone.isLocal()) {
1254 logger.log(Level.FINE, String.format("Tried to load non-local Sone: %s", sone));
1258 /* initialize options. */
1259 sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
1260 sone.getOptions().addBooleanOption("EnableSoneInsertNotifications", new DefaultOption<Boolean>(false));
1261 sone.getOptions().addBooleanOption("ShowNotification/NewSones", new DefaultOption<Boolean>(true));
1262 sone.getOptions().addBooleanOption("ShowNotification/NewPosts", new DefaultOption<Boolean>(true));
1263 sone.getOptions().addBooleanOption("ShowNotification/NewReplies", new DefaultOption<Boolean>(true));
1264 sone.getOptions().addEnumOption("ShowCustomAvatars", new DefaultOption<ShowCustomAvatars>(ShowCustomAvatars.NEVER));
1267 String sonePrefix = "Sone/" + sone.getId();
1268 Long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue(null);
1269 if (soneTime == null) {
1270 logger.log(Level.INFO, "Could not load Sone because no Sone has been saved.");
1273 String lastInsertFingerprint = configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").getValue("");
1276 Profile profile = new Profile(sone);
1277 profile.setFirstName(configuration.getStringValue(sonePrefix + "/Profile/FirstName").getValue(null));
1278 profile.setMiddleName(configuration.getStringValue(sonePrefix + "/Profile/MiddleName").getValue(null));
1279 profile.setLastName(configuration.getStringValue(sonePrefix + "/Profile/LastName").getValue(null));
1280 profile.setBirthDay(configuration.getIntValue(sonePrefix + "/Profile/BirthDay").getValue(null));
1281 profile.setBirthMonth(configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").getValue(null));
1282 profile.setBirthYear(configuration.getIntValue(sonePrefix + "/Profile/BirthYear").getValue(null));
1284 /* load profile fields. */
1286 String fieldPrefix = sonePrefix + "/Profile/Fields/" + profile.getFields().size();
1287 String fieldName = configuration.getStringValue(fieldPrefix + "/Name").getValue(null);
1288 if (fieldName == null) {
1291 String fieldValue = configuration.getStringValue(fieldPrefix + "/Value").getValue("");
1292 profile.addField(fieldName).setValue(fieldValue);
1296 Set<Post> posts = new HashSet<Post>();
1298 String postPrefix = sonePrefix + "/Posts/" + posts.size();
1299 String postId = configuration.getStringValue(postPrefix + "/ID").getValue(null);
1300 if (postId == null) {
1303 String postRecipientId = configuration.getStringValue(postPrefix + "/Recipient").getValue(null);
1304 long postTime = configuration.getLongValue(postPrefix + "/Time").getValue((long) 0);
1305 String postText = configuration.getStringValue(postPrefix + "/Text").getValue(null);
1306 if ((postTime == 0) || (postText == null)) {
1307 logger.log(Level.WARNING, "Invalid post found, aborting load!");
1310 PostBuilder postBuilder = postBuilderFactory.newPostBuilder().withId(postId).from(sone).withTime(postTime).withText(postText);
1311 if ((postRecipientId != null) && (postRecipientId.length() == 43)) {
1312 postBuilder.to(getSone(postRecipientId));
1314 posts.add(postBuilder.build());
1318 Set<PostReply> replies = new HashSet<PostReply>();
1320 String replyPrefix = sonePrefix + "/Replies/" + replies.size();
1321 String replyId = configuration.getStringValue(replyPrefix + "/ID").getValue(null);
1322 if (replyId == null) {
1325 String postId = configuration.getStringValue(replyPrefix + "/Post/ID").getValue(null);
1326 long replyTime = configuration.getLongValue(replyPrefix + "/Time").getValue((long) 0);
1327 String replyText = configuration.getStringValue(replyPrefix + "/Text").getValue(null);
1328 if ((postId == null) || (replyTime == 0) || (replyText == null)) {
1329 logger.log(Level.WARNING, "Invalid reply found, aborting load!");
1332 PostReplyBuilder postReplyBuilder = postReplyBuilderFactory.newPostReplyBuilder();
1333 postReplyBuilder.withId(replyId).from(sone).to(getPost(postId)).withTime(replyTime).withText(replyText);
1334 replies.add(postReplyBuilder.build());
1337 /* load post likes. */
1338 Set<String> likedPostIds = new HashSet<String>();
1340 String likedPostId = configuration.getStringValue(sonePrefix + "/Likes/Post/" + likedPostIds.size() + "/ID").getValue(null);
1341 if (likedPostId == null) {
1344 likedPostIds.add(likedPostId);
1347 /* load reply likes. */
1348 Set<String> likedReplyIds = new HashSet<String>();
1350 String likedReplyId = configuration.getStringValue(sonePrefix + "/Likes/Reply/" + likedReplyIds.size() + "/ID").getValue(null);
1351 if (likedReplyId == null) {
1354 likedReplyIds.add(likedReplyId);
1358 Set<String> friends = new HashSet<String>();
1360 String friendId = configuration.getStringValue(sonePrefix + "/Friends/" + friends.size() + "/ID").getValue(null);
1361 if (friendId == null) {
1364 friends.add(friendId);
1368 List<Album> topLevelAlbums = new ArrayList<Album>();
1369 int albumCounter = 0;
1371 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1372 String albumId = configuration.getStringValue(albumPrefix + "/ID").getValue(null);
1373 if (albumId == null) {
1376 String albumTitle = configuration.getStringValue(albumPrefix + "/Title").getValue(null);
1377 String albumDescription = configuration.getStringValue(albumPrefix + "/Description").getValue(null);
1378 String albumParentId = configuration.getStringValue(albumPrefix + "/Parent").getValue(null);
1379 String albumImageId = configuration.getStringValue(albumPrefix + "/AlbumImage").getValue(null);
1380 if ((albumTitle == null) || (albumDescription == null)) {
1381 logger.log(Level.WARNING, "Invalid album found, aborting load!");
1384 Album album = getAlbum(albumId).setSone(sone).setTitle(albumTitle).setDescription(albumDescription).setAlbumImage(albumImageId);
1385 if (albumParentId != null) {
1386 Album parentAlbum = getAlbum(albumParentId, false);
1387 if (parentAlbum == null) {
1388 logger.log(Level.WARNING, String.format("Invalid parent album ID: %s", albumParentId));
1391 parentAlbum.addAlbum(album);
1393 if (!topLevelAlbums.contains(album)) {
1394 topLevelAlbums.add(album);
1400 int imageCounter = 0;
1402 String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1403 String imageId = configuration.getStringValue(imagePrefix + "/ID").getValue(null);
1404 if (imageId == null) {
1407 String albumId = configuration.getStringValue(imagePrefix + "/Album").getValue(null);
1408 String key = configuration.getStringValue(imagePrefix + "/Key").getValue(null);
1409 String title = configuration.getStringValue(imagePrefix + "/Title").getValue(null);
1410 String description = configuration.getStringValue(imagePrefix + "/Description").getValue(null);
1411 Long creationTime = configuration.getLongValue(imagePrefix + "/CreationTime").getValue(null);
1412 Integer width = configuration.getIntValue(imagePrefix + "/Width").getValue(null);
1413 Integer height = configuration.getIntValue(imagePrefix + "/Height").getValue(null);
1414 if ((albumId == null) || (key == null) || (title == null) || (description == null) || (creationTime == null) || (width == null) || (height == null)) {
1415 logger.log(Level.WARNING, "Invalid image found, aborting load!");
1418 Album album = getAlbum(albumId, false);
1419 if (album == null) {
1420 logger.log(Level.WARNING, "Invalid album image encountered, aborting load!");
1423 Image image = getImage(imageId).setSone(sone).setCreationTime(creationTime).setKey(key);
1424 image.setTitle(title).setDescription(description).setWidth(width).setHeight(height);
1425 album.addImage(image);
1429 String avatarId = configuration.getStringValue(sonePrefix + "/Profile/Avatar").getValue(null);
1430 if (avatarId != null) {
1431 profile.setAvatar(getImage(avatarId, false));
1435 sone.getOptions().getBooleanOption("AutoFollow").set(configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").getValue(null));
1436 sone.getOptions().getBooleanOption("EnableSoneInsertNotifications").set(configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").getValue(null));
1437 sone.getOptions().getBooleanOption("ShowNotification/NewSones").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").getValue(null));
1438 sone.getOptions().getBooleanOption("ShowNotification/NewPosts").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").getValue(null));
1439 sone.getOptions().getBooleanOption("ShowNotification/NewReplies").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").getValue(null));
1440 sone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").set(ShowCustomAvatars.valueOf(configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").getValue(ShowCustomAvatars.NEVER.name())));
1442 /* if we’re still here, Sone was loaded successfully. */
1443 synchronized (sone) {
1444 sone.setTime(soneTime);
1445 sone.setProfile(profile);
1446 sone.setPosts(posts);
1447 sone.setReplies(replies);
1448 sone.setLikePostIds(likedPostIds);
1449 sone.setLikeReplyIds(likedReplyIds);
1450 for (String friendId : friends) {
1451 followSone(sone, friendId);
1453 sone.setAlbums(topLevelAlbums);
1454 soneInserters.get(sone).setLastInsertFingerprint(lastInsertFingerprint);
1456 synchronized (knownSones) {
1457 for (String friend : friends) {
1458 knownSones.add(friend);
1461 synchronized (knownPosts) {
1462 for (Post post : posts) {
1463 knownPosts.add(post.getId());
1466 synchronized (knownReplies) {
1467 for (PostReply reply : replies) {
1468 knownReplies.add(reply.getId());
1474 * Creates a new post.
1477 * The Sone that creates the post
1479 * The text of the post
1480 * @return The created post
1482 public Post createPost(Sone sone, String text) {
1483 return createPost(sone, System.currentTimeMillis(), text);
1487 * Creates a new post.
1490 * The Sone that creates the post
1492 * The time of the post
1494 * The text of the post
1495 * @return The created post
1497 public Post createPost(Sone sone, long time, String text) {
1498 return createPost(sone, null, time, text);
1502 * Creates a new post.
1505 * The Sone that creates the post
1507 * The recipient Sone, or {@code null} if this post does not have
1510 * The text of the post
1511 * @return The created post
1513 public Post createPost(Sone sone, Sone recipient, String text) {
1514 return createPost(sone, recipient, System.currentTimeMillis(), text);
1518 * Creates a new post.
1521 * The Sone that creates the post
1523 * The recipient Sone, or {@code null} if this post does not have
1526 * The time of the post
1528 * The text of the post
1529 * @return The created post
1531 public Post createPost(Sone sone, Sone recipient, long time, String text) {
1532 checkNotNull(text, "text must not be null");
1533 checkArgument(text.trim().length() > 0, "text must not be empty");
1534 if (!sone.isLocal()) {
1535 logger.log(Level.FINE, String.format("Tried to create post for non-local Sone: %s", sone));
1538 PostBuilder postBuilder = postBuilderFactory.newPostBuilder();
1539 postBuilder.from(sone).randomId().withTime(time).withText(text.trim());
1540 if (recipient != null) {
1541 postBuilder.to(recipient);
1543 final Post post = postBuilder.build();
1544 synchronized (posts) {
1545 posts.put(post.getId(), post);
1547 eventBus.post(new NewPostFoundEvent(post));
1549 touchConfiguration();
1550 localElementTicker.schedule(new Runnable() {
1557 markPostKnown(post);
1559 }, 10, TimeUnit.SECONDS);
1564 * Deletes the given post.
1567 * The post to delete
1569 public void deletePost(Post post) {
1570 if (!post.getSone().isLocal()) {
1571 logger.log(Level.WARNING, String.format("Tried to delete post of non-local Sone: %s", post.getSone()));
1574 post.getSone().removePost(post);
1575 synchronized (posts) {
1576 posts.remove(post.getId());
1578 eventBus.post(new PostRemovedEvent(post));
1579 markPostKnown(post);
1580 touchConfiguration();
1584 * Marks the given post as known, if it is currently not a known post
1585 * (according to {@link Post#isKnown()}).
1588 * The post to mark as known
1590 public void markPostKnown(Post post) {
1591 post.setKnown(true);
1592 synchronized (knownPosts) {
1593 eventBus.post(new MarkPostKnownEvent(post));
1594 if (knownPosts.add(post.getId())) {
1595 touchConfiguration();
1598 for (PostReply reply : getReplies(post)) {
1599 markReplyKnown(reply);
1604 * Bookmarks the given post.
1607 * The post to bookmark
1609 public void bookmark(Post post) {
1610 bookmarkPost(post.getId());
1614 * Bookmarks the post with the given ID.
1617 * The ID of the post to bookmark
1619 public void bookmarkPost(String id) {
1620 synchronized (bookmarkedPosts) {
1621 bookmarkedPosts.add(id);
1626 * Removes the given post from the bookmarks.
1629 * The post to unbookmark
1631 public void unbookmark(Post post) {
1632 unbookmarkPost(post.getId());
1636 * Removes the post with the given ID from the bookmarks.
1639 * The ID of the post to unbookmark
1641 public void unbookmarkPost(String id) {
1642 synchronized (bookmarkedPosts) {
1643 bookmarkedPosts.remove(id);
1648 * Creates a new reply.
1651 * The Sone that creates the reply
1653 * The post that this reply refers to
1655 * The text of the reply
1656 * @return The created reply
1658 public PostReply createReply(Sone sone, Post post, String text) {
1659 checkNotNull(text, "text must not be null");
1660 checkArgument(text.trim().length() > 0, "text must not be empty");
1661 if (!sone.isLocal()) {
1662 logger.log(Level.FINE, String.format("Tried to create reply for non-local Sone: %s", sone));
1665 PostReplyBuilder postReplyBuilder = postReplyBuilderFactory.newPostReplyBuilder();
1666 postReplyBuilder.randomId().from(sone).to(post).currentTime().withText(text.trim());
1667 final PostReply reply = postReplyBuilder.build();
1668 synchronized (replies) {
1669 replies.put(reply.getId(), reply);
1671 synchronized (knownReplies) {
1672 eventBus.post(new NewPostReplyFoundEvent(reply));
1674 sone.addReply(reply);
1675 touchConfiguration();
1676 localElementTicker.schedule(new Runnable() {
1683 markReplyKnown(reply);
1685 }, 10, TimeUnit.SECONDS);
1690 * Deletes the given reply.
1693 * The reply to delete
1695 public void deleteReply(PostReply reply) {
1696 Sone sone = reply.getSone();
1697 if (!sone.isLocal()) {
1698 logger.log(Level.FINE, String.format("Tried to delete non-local reply: %s", reply));
1701 synchronized (replies) {
1702 replies.remove(reply.getId());
1704 synchronized (knownReplies) {
1705 markReplyKnown(reply);
1706 knownReplies.remove(reply.getId());
1708 sone.removeReply(reply);
1709 touchConfiguration();
1713 * Marks the given reply as known, if it is currently not a known reply
1714 * (according to {@link Reply#isKnown()}).
1717 * The reply to mark as known
1719 public void markReplyKnown(PostReply reply) {
1720 reply.setKnown(true);
1721 synchronized (knownReplies) {
1722 eventBus.post(new MarkPostReplyKnownEvent(reply));
1723 if (knownReplies.add(reply.getId())) {
1724 touchConfiguration();
1730 * Creates a new top-level album for the given Sone.
1733 * The Sone to create the album for
1734 * @return The new album
1736 public Album createAlbum(Sone sone) {
1737 return createAlbum(sone, null);
1741 * Creates a new album for the given Sone.
1744 * The Sone to create the album for
1746 * The parent of the album (may be {@code null} to create a
1748 * @return The new album
1750 public Album createAlbum(Sone sone, Album parent) {
1751 Album album = new Album();
1752 synchronized (albums) {
1753 albums.put(album.getId(), album);
1755 album.setSone(sone);
1756 if (parent != null) {
1757 parent.addAlbum(album);
1759 sone.addAlbum(album);
1765 * Deletes the given album. The owner of the album has to be a local Sone,
1766 * and the album has to be {@link Album#isEmpty() empty} to be deleted.
1769 * The album to remove
1771 public void deleteAlbum(Album album) {
1772 checkNotNull(album, "album must not be null");
1773 checkArgument(album.getSone().isLocal(), "album’s Sone must be a local Sone");
1774 if (!album.isEmpty()) {
1777 if (album.getParent() == null) {
1778 album.getSone().removeAlbum(album);
1780 album.getParent().removeAlbum(album);
1782 synchronized (albums) {
1783 albums.remove(album.getId());
1785 touchConfiguration();
1789 * Creates a new image.
1792 * The Sone creating the image
1794 * The album the image will be inserted into
1795 * @param temporaryImage
1796 * The temporary image to create the image from
1797 * @return The newly created image
1799 public Image createImage(Sone sone, Album album, TemporaryImage temporaryImage) {
1800 checkNotNull(sone, "sone must not be null");
1801 checkNotNull(album, "album must not be null");
1802 checkNotNull(temporaryImage, "temporaryImage must not be null");
1803 checkArgument(sone.isLocal(), "sone must be a local Sone");
1804 checkArgument(sone.equals(album.getSone()), "album must belong to the given Sone");
1805 Image image = new Image(temporaryImage.getId()).setSone(sone).setCreationTime(System.currentTimeMillis());
1806 album.addImage(image);
1807 synchronized (images) {
1808 images.put(image.getId(), image);
1810 imageInserter.insertImage(temporaryImage, image);
1815 * Deletes the given image. This method will also delete a matching
1818 * @see #deleteTemporaryImage(TemporaryImage)
1820 * The image to delete
1822 public void deleteImage(Image image) {
1823 checkNotNull(image, "image must not be null");
1824 checkArgument(image.getSone().isLocal(), "image must belong to a local Sone");
1825 deleteTemporaryImage(image.getId());
1826 image.getAlbum().removeImage(image);
1827 synchronized (images) {
1828 images.remove(image.getId());
1830 touchConfiguration();
1834 * Creates a new temporary image.
1837 * The MIME type of the temporary image
1839 * The encoded data of the image
1840 * @return The temporary image
1842 public TemporaryImage createTemporaryImage(String mimeType, byte[] imageData) {
1843 TemporaryImage temporaryImage = new TemporaryImage();
1844 temporaryImage.setMimeType(mimeType).setImageData(imageData);
1845 synchronized (temporaryImages) {
1846 temporaryImages.put(temporaryImage.getId(), temporaryImage);
1848 return temporaryImage;
1852 * Deletes the given temporary image.
1854 * @param temporaryImage
1855 * The temporary image to delete
1857 public void deleteTemporaryImage(TemporaryImage temporaryImage) {
1858 checkNotNull(temporaryImage, "temporaryImage must not be null");
1859 deleteTemporaryImage(temporaryImage.getId());
1863 * Deletes the temporary image with the given ID.
1866 * The ID of the temporary image to delete
1868 public void deleteTemporaryImage(String imageId) {
1869 checkNotNull(imageId, "imageId must not be null");
1870 synchronized (temporaryImages) {
1871 temporaryImages.remove(imageId);
1873 Image image = getImage(imageId, false);
1874 if (image != null) {
1875 imageInserter.cancelImageInsert(image);
1880 * Notifies the core that the configuration, either of the core or of a
1881 * single local Sone, has changed, and that the configuration should be
1884 public void touchConfiguration() {
1885 lastConfigurationUpdate = System.currentTimeMillis();
1896 public void serviceStart() {
1897 loadConfiguration();
1898 updateChecker.start();
1899 identityManager.start();
1900 webOfTrustUpdater.init();
1901 webOfTrustUpdater.start();
1908 public void serviceRun() {
1909 long lastSaved = System.currentTimeMillis();
1910 while (!shouldStop()) {
1912 long now = System.currentTimeMillis();
1913 if (shouldStop() || ((lastConfigurationUpdate > lastSaved) && ((now - lastConfigurationUpdate) > 5000))) {
1914 for (Sone localSone : getLocalSones()) {
1915 saveSone(localSone);
1917 saveConfiguration();
1927 public void serviceStop() {
1928 localElementTicker.shutdownNow();
1929 synchronized (sones) {
1930 for (Entry<Sone, SoneInserter> soneInserter : soneInserters.entrySet()) {
1931 soneInserter.getValue().stop();
1932 saveSone(soneInserter.getKey());
1935 saveConfiguration();
1936 webOfTrustUpdater.stop();
1937 updateChecker.stop();
1938 soneDownloader.stop();
1939 identityManager.stop();
1947 * Saves the given Sone. This will persist all local settings for the given
1948 * Sone, such as the friends list and similar, private options.
1953 private synchronized void saveSone(Sone sone) {
1954 if (!sone.isLocal()) {
1955 logger.log(Level.FINE, String.format("Tried to save non-local Sone: %s", sone));
1958 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1959 logger.log(Level.WARNING, String.format("Local Sone without OwnIdentity found, refusing to save: %s", sone));
1963 logger.log(Level.INFO, String.format("Saving Sone: %s", sone));
1965 /* save Sone into configuration. */
1966 String sonePrefix = "Sone/" + sone.getId();
1967 configuration.getLongValue(sonePrefix + "/Time").setValue(sone.getTime());
1968 configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").setValue(soneInserters.get(sone).getLastInsertFingerprint());
1971 Profile profile = sone.getProfile();
1972 configuration.getStringValue(sonePrefix + "/Profile/FirstName").setValue(profile.getFirstName());
1973 configuration.getStringValue(sonePrefix + "/Profile/MiddleName").setValue(profile.getMiddleName());
1974 configuration.getStringValue(sonePrefix + "/Profile/LastName").setValue(profile.getLastName());
1975 configuration.getIntValue(sonePrefix + "/Profile/BirthDay").setValue(profile.getBirthDay());
1976 configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").setValue(profile.getBirthMonth());
1977 configuration.getIntValue(sonePrefix + "/Profile/BirthYear").setValue(profile.getBirthYear());
1978 configuration.getStringValue(sonePrefix + "/Profile/Avatar").setValue(profile.getAvatar());
1980 /* save profile fields. */
1981 int fieldCounter = 0;
1982 for (Field profileField : profile.getFields()) {
1983 String fieldPrefix = sonePrefix + "/Profile/Fields/" + fieldCounter++;
1984 configuration.getStringValue(fieldPrefix + "/Name").setValue(profileField.getName());
1985 configuration.getStringValue(fieldPrefix + "/Value").setValue(profileField.getValue());
1987 configuration.getStringValue(sonePrefix + "/Profile/Fields/" + fieldCounter + "/Name").setValue(null);
1990 int postCounter = 0;
1991 for (Post post : sone.getPosts()) {
1992 String postPrefix = sonePrefix + "/Posts/" + postCounter++;
1993 configuration.getStringValue(postPrefix + "/ID").setValue(post.getId());
1994 configuration.getStringValue(postPrefix + "/Recipient").setValue((post.getRecipient() != null) ? post.getRecipient().getId() : null);
1995 configuration.getLongValue(postPrefix + "/Time").setValue(post.getTime());
1996 configuration.getStringValue(postPrefix + "/Text").setValue(post.getText());
1998 configuration.getStringValue(sonePrefix + "/Posts/" + postCounter + "/ID").setValue(null);
2001 int replyCounter = 0;
2002 for (PostReply reply : sone.getReplies()) {
2003 String replyPrefix = sonePrefix + "/Replies/" + replyCounter++;
2004 configuration.getStringValue(replyPrefix + "/ID").setValue(reply.getId());
2005 configuration.getStringValue(replyPrefix + "/Post/ID").setValue(reply.getPost().getId());
2006 configuration.getLongValue(replyPrefix + "/Time").setValue(reply.getTime());
2007 configuration.getStringValue(replyPrefix + "/Text").setValue(reply.getText());
2009 configuration.getStringValue(sonePrefix + "/Replies/" + replyCounter + "/ID").setValue(null);
2011 /* save post likes. */
2012 int postLikeCounter = 0;
2013 for (String postId : sone.getLikedPostIds()) {
2014 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter++ + "/ID").setValue(postId);
2016 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter + "/ID").setValue(null);
2018 /* save reply likes. */
2019 int replyLikeCounter = 0;
2020 for (String replyId : sone.getLikedReplyIds()) {
2021 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter++ + "/ID").setValue(replyId);
2023 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter + "/ID").setValue(null);
2026 int friendCounter = 0;
2027 for (String friendId : sone.getFriends()) {
2028 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter++ + "/ID").setValue(friendId);
2030 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter + "/ID").setValue(null);
2032 /* save albums. first, collect in a flat structure, top-level first. */
2033 List<Album> albums = sone.getAllAlbums();
2035 int albumCounter = 0;
2036 for (Album album : albums) {
2037 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
2038 configuration.getStringValue(albumPrefix + "/ID").setValue(album.getId());
2039 configuration.getStringValue(albumPrefix + "/Title").setValue(album.getTitle());
2040 configuration.getStringValue(albumPrefix + "/Description").setValue(album.getDescription());
2041 configuration.getStringValue(albumPrefix + "/Parent").setValue(album.getParent() == null ? null : album.getParent().getId());
2042 configuration.getStringValue(albumPrefix + "/AlbumImage").setValue(album.getAlbumImage() == null ? null : album.getAlbumImage().getId());
2044 configuration.getStringValue(sonePrefix + "/Albums/" + albumCounter + "/ID").setValue(null);
2047 int imageCounter = 0;
2048 for (Album album : albums) {
2049 for (Image image : album.getImages()) {
2050 if (!image.isInserted()) {
2053 String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
2054 configuration.getStringValue(imagePrefix + "/ID").setValue(image.getId());
2055 configuration.getStringValue(imagePrefix + "/Album").setValue(album.getId());
2056 configuration.getStringValue(imagePrefix + "/Key").setValue(image.getKey());
2057 configuration.getStringValue(imagePrefix + "/Title").setValue(image.getTitle());
2058 configuration.getStringValue(imagePrefix + "/Description").setValue(image.getDescription());
2059 configuration.getLongValue(imagePrefix + "/CreationTime").setValue(image.getCreationTime());
2060 configuration.getIntValue(imagePrefix + "/Width").setValue(image.getWidth());
2061 configuration.getIntValue(imagePrefix + "/Height").setValue(image.getHeight());
2064 configuration.getStringValue(sonePrefix + "/Images/" + imageCounter + "/ID").setValue(null);
2067 configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").setValue(sone.getOptions().getBooleanOption("AutoFollow").getReal());
2068 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewSones").getReal());
2069 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewPosts").getReal());
2070 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewReplies").getReal());
2071 configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").setValue(sone.getOptions().getBooleanOption("EnableSoneInsertNotifications").getReal());
2072 configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").setValue(sone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").get().name());
2074 configuration.save();
2076 webOfTrustUpdater.setProperty((OwnIdentity) sone.getIdentity(), "Sone.LatestEdition", String.valueOf(sone.getLatestEdition()));
2078 logger.log(Level.INFO, String.format("Sone %s saved.", sone));
2079 } catch (ConfigurationException ce1) {
2080 logger.log(Level.WARNING, String.format("Could not save Sone: %s", sone), ce1);
2085 * Saves the current options.
2087 private void saveConfiguration() {
2088 synchronized (configuration) {
2089 if (storingConfiguration) {
2090 logger.log(Level.FINE, "Already storing configuration…");
2093 storingConfiguration = true;
2096 /* store the options first. */
2098 configuration.getIntValue("Option/ConfigurationVersion").setValue(0);
2099 configuration.getIntValue("Option/InsertionDelay").setValue(options.getIntegerOption("InsertionDelay").getReal());
2100 configuration.getIntValue("Option/PostsPerPage").setValue(options.getIntegerOption("PostsPerPage").getReal());
2101 configuration.getIntValue("Option/ImagesPerPage").setValue(options.getIntegerOption("ImagesPerPage").getReal());
2102 configuration.getIntValue("Option/CharactersPerPost").setValue(options.getIntegerOption("CharactersPerPost").getReal());
2103 configuration.getIntValue("Option/PostCutOffLength").setValue(options.getIntegerOption("PostCutOffLength").getReal());
2104 configuration.getBooleanValue("Option/RequireFullAccess").setValue(options.getBooleanOption("RequireFullAccess").getReal());
2105 configuration.getIntValue("Option/PositiveTrust").setValue(options.getIntegerOption("PositiveTrust").getReal());
2106 configuration.getIntValue("Option/NegativeTrust").setValue(options.getIntegerOption("NegativeTrust").getReal());
2107 configuration.getStringValue("Option/TrustComment").setValue(options.getStringOption("TrustComment").getReal());
2108 configuration.getBooleanValue("Option/ActivateFcpInterface").setValue(options.getBooleanOption("ActivateFcpInterface").getReal());
2109 configuration.getIntValue("Option/FcpFullAccessRequired").setValue(options.getIntegerOption("FcpFullAccessRequired").getReal());
2111 /* save known Sones. */
2112 int soneCounter = 0;
2113 synchronized (knownSones) {
2114 for (String knownSoneId : knownSones) {
2115 configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").setValue(knownSoneId);
2117 configuration.getStringValue("KnownSone/" + soneCounter + "/ID").setValue(null);
2120 /* save Sone following times. */
2122 synchronized (soneFollowingTimes) {
2123 for (Entry<Sone, Long> soneFollowingTime : soneFollowingTimes.entrySet()) {
2124 configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(soneFollowingTime.getKey().getId());
2125 configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").setValue(soneFollowingTime.getValue());
2128 configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(null);
2131 /* save known posts. */
2132 int postCounter = 0;
2133 synchronized (knownPosts) {
2134 for (String knownPostId : knownPosts) {
2135 configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").setValue(knownPostId);
2137 configuration.getStringValue("KnownPosts/" + postCounter + "/ID").setValue(null);
2140 /* save known replies. */
2141 int replyCounter = 0;
2142 synchronized (knownReplies) {
2143 for (String knownReplyId : knownReplies) {
2144 configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").setValue(knownReplyId);
2146 configuration.getStringValue("KnownReplies/" + replyCounter + "/ID").setValue(null);
2149 /* save bookmarked posts. */
2150 int bookmarkedPostCounter = 0;
2151 synchronized (bookmarkedPosts) {
2152 for (String bookmarkedPostId : bookmarkedPosts) {
2153 configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(bookmarkedPostId);
2156 configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(null);
2159 configuration.save();
2161 } catch (ConfigurationException ce1) {
2162 logger.log(Level.SEVERE, "Could not store configuration!", ce1);
2164 synchronized (configuration) {
2165 storingConfiguration = false;
2171 * Loads the configuration.
2173 @SuppressWarnings("unchecked")
2174 private void loadConfiguration() {
2175 /* create options. */
2176 options.addIntegerOption("InsertionDelay", new DefaultOption<Integer>(60, new IntegerRangePredicate(0, Integer.MAX_VALUE), new OptionWatcher<Integer>() {
2179 public void optionChanged(Option<Integer> option, Integer oldValue, Integer newValue) {
2180 SoneInserter.setInsertionDelay(newValue);
2184 options.addIntegerOption("PostsPerPage", new DefaultOption<Integer>(10, new IntegerRangePredicate(1, Integer.MAX_VALUE)));
2185 options.addIntegerOption("ImagesPerPage", new DefaultOption<Integer>(9, new IntegerRangePredicate(1, Integer.MAX_VALUE)));
2186 options.addIntegerOption("CharactersPerPost", new DefaultOption<Integer>(400, Predicates.<Integer> or(new IntegerRangePredicate(50, Integer.MAX_VALUE), Predicates.equalTo(-1))));
2187 options.addIntegerOption("PostCutOffLength", new DefaultOption<Integer>(200, Predicates.<Integer> or(new IntegerRangePredicate(50, Integer.MAX_VALUE), Predicates.equalTo(-1))));
2188 options.addBooleanOption("RequireFullAccess", new DefaultOption<Boolean>(false));
2189 options.addIntegerOption("PositiveTrust", new DefaultOption<Integer>(75, new IntegerRangePredicate(0, 100)));
2190 options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-25, new IntegerRangePredicate(-100, 100)));
2191 options.addStringOption("TrustComment", new DefaultOption<String>("Set from Sone Web Interface"));
2192 options.addBooleanOption("ActivateFcpInterface", new DefaultOption<Boolean>(false, new OptionWatcher<Boolean>() {
2195 @SuppressWarnings("synthetic-access")
2196 public void optionChanged(Option<Boolean> option, Boolean oldValue, Boolean newValue) {
2197 fcpInterface.setActive(newValue);
2200 options.addIntegerOption("FcpFullAccessRequired", new DefaultOption<Integer>(2, new OptionWatcher<Integer>() {
2203 @SuppressWarnings("synthetic-access")
2204 public void optionChanged(Option<Integer> option, Integer oldValue, Integer newValue) {
2205 fcpInterface.setFullAccessRequired(FullAccessRequired.values()[newValue]);
2210 loadConfigurationValue("InsertionDelay");
2211 loadConfigurationValue("PostsPerPage");
2212 loadConfigurationValue("ImagesPerPage");
2213 loadConfigurationValue("CharactersPerPost");
2214 loadConfigurationValue("PostCutOffLength");
2215 options.getBooleanOption("RequireFullAccess").set(configuration.getBooleanValue("Option/RequireFullAccess").getValue(null));
2216 loadConfigurationValue("PositiveTrust");
2217 loadConfigurationValue("NegativeTrust");
2218 options.getStringOption("TrustComment").set(configuration.getStringValue("Option/TrustComment").getValue(null));
2219 options.getBooleanOption("ActivateFcpInterface").set(configuration.getBooleanValue("Option/ActivateFcpInterface").getValue(null));
2220 options.getIntegerOption("FcpFullAccessRequired").set(configuration.getIntValue("Option/FcpFullAccessRequired").getValue(null));
2222 /* load known Sones. */
2223 int soneCounter = 0;
2225 String knownSoneId = configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").getValue(null);
2226 if (knownSoneId == null) {
2229 synchronized (knownSones) {
2230 knownSones.add(knownSoneId);
2234 /* load Sone following times. */
2237 String soneId = configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").getValue(null);
2238 if (soneId == null) {
2241 long time = configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").getValue(Long.MAX_VALUE);
2242 Sone followedSone = getSone(soneId);
2243 if (followedSone == null) {
2244 logger.log(Level.WARNING, String.format("Ignoring Sone with invalid ID: %s", soneId));
2246 synchronized (soneFollowingTimes) {
2247 soneFollowingTimes.put(getSone(soneId), time);
2253 /* load known posts. */
2254 int postCounter = 0;
2256 String knownPostId = configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").getValue(null);
2257 if (knownPostId == null) {
2260 synchronized (knownPosts) {
2261 knownPosts.add(knownPostId);
2265 /* load known replies. */
2266 int replyCounter = 0;
2268 String knownReplyId = configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").getValue(null);
2269 if (knownReplyId == null) {
2272 synchronized (knownReplies) {
2273 knownReplies.add(knownReplyId);
2277 /* load bookmarked posts. */
2278 int bookmarkedPostCounter = 0;
2280 String bookmarkedPostId = configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").getValue(null);
2281 if (bookmarkedPostId == null) {
2284 synchronized (bookmarkedPosts) {
2285 bookmarkedPosts.add(bookmarkedPostId);
2292 * Loads an {@link Integer} configuration value for the option with the
2293 * given name, logging validation failures.
2296 * The name of the option to load
2298 private void loadConfigurationValue(String optionName) {
2300 options.getIntegerOption(optionName).set(configuration.getIntValue("Option/" + optionName).getValue(null));
2301 } catch (IllegalArgumentException iae1) {
2302 logger.log(Level.WARNING, String.format("Invalid value for %s in configuration, using default.", optionName));
2307 * Generate a Sone URI from the given URI and latest edition.
2310 * The URI to derive the Sone URI from
2311 * @return The derived URI
2313 private static FreenetURI getSoneUri(String uriString) {
2315 FreenetURI uri = new FreenetURI(uriString).setDocName("Sone").setMetaString(new String[0]);
2317 } catch (MalformedURLException mue1) {
2318 logger.log(Level.WARNING, String.format("Could not create Sone URI from URI: %s", uriString), mue1);
2324 * Notifies the core that a new {@link OwnIdentity} was added.
2326 * @param ownIdentityAddedEvent
2330 public void ownIdentityAdded(OwnIdentityAddedEvent ownIdentityAddedEvent) {
2331 OwnIdentity ownIdentity = ownIdentityAddedEvent.ownIdentity();
2332 logger.log(Level.FINEST, String.format("Adding OwnIdentity: %s", ownIdentity));
2333 if (ownIdentity.hasContext("Sone")) {
2334 trustedIdentities.put(ownIdentity, Collections.synchronizedSet(new HashSet<Identity>()));
2335 addLocalSone(ownIdentity);
2340 * Notifies the core that an {@link OwnIdentity} was removed.
2342 * @param ownIdentityRemovedEvent
2346 public void ownIdentityRemoved(OwnIdentityRemovedEvent ownIdentityRemovedEvent) {
2347 OwnIdentity ownIdentity = ownIdentityRemovedEvent.ownIdentity();
2348 logger.log(Level.FINEST, String.format("Removing OwnIdentity: %s", ownIdentity));
2349 trustedIdentities.remove(ownIdentity);
2353 * Notifies the core that a new {@link Identity} was added.
2355 * @param identityAddedEvent
2359 public void identityAdded(IdentityAddedEvent identityAddedEvent) {
2360 Identity identity = identityAddedEvent.identity();
2361 logger.log(Level.FINEST, String.format("Adding Identity: %s", identity));
2362 trustedIdentities.get(identityAddedEvent.ownIdentity()).add(identity);
2363 addRemoteSone(identity);
2367 * Notifies the core that an {@link Identity} was updated.
2369 * @param identityUpdatedEvent
2373 public void identityUpdated(IdentityUpdatedEvent identityUpdatedEvent) {
2374 final Identity identity = identityUpdatedEvent.identity();
2375 soneDownloaders.execute(new Runnable() {
2378 @SuppressWarnings("synthetic-access")
2380 Sone sone = getRemoteSone(identity.getId(), false);
2381 sone.setIdentity(identity);
2382 sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), sone.getLatestEdition()));
2383 soneDownloader.addSone(sone);
2384 soneDownloader.fetchSone(sone);
2390 * Notifies the core that an {@link Identity} was removed.
2392 * @param identityRemovedEvent
2396 public void identityRemoved(IdentityRemovedEvent identityRemovedEvent) {
2397 OwnIdentity ownIdentity = identityRemovedEvent.ownIdentity();
2398 Identity identity = identityRemovedEvent.identity();
2399 trustedIdentities.get(ownIdentity).remove(identity);
2400 boolean foundIdentity = false;
2401 for (Entry<OwnIdentity, Set<Identity>> trustedIdentity : trustedIdentities.entrySet()) {
2402 if (trustedIdentity.getKey().equals(ownIdentity)) {
2405 if (trustedIdentity.getValue().contains(identity)) {
2406 foundIdentity = true;
2409 if (foundIdentity) {
2410 /* some local identity still trusts this identity, don’t remove. */
2413 Sone sone = getSone(identity.getId(), false);
2415 /* TODO - we don’t have the Sone anymore. should this happen? */
2418 synchronized (posts) {
2419 synchronized (knownPosts) {
2420 for (Post post : sone.getPosts()) {
2421 posts.remove(post.getId());
2422 eventBus.post(new PostRemovedEvent(post));
2426 synchronized (replies) {
2427 synchronized (knownReplies) {
2428 for (PostReply reply : sone.getReplies()) {
2429 replies.remove(reply.getId());
2430 eventBus.post(new PostReplyRemovedEvent(reply));
2434 synchronized (sones) {
2435 sones.remove(identity.getId());
2437 eventBus.post(new SoneRemovedEvent(sone));
2441 * Deletes the temporary image.
2443 * @param imageInsertFinishedEvent
2447 public void imageInsertFinished(ImageInsertFinishedEvent imageInsertFinishedEvent) {
2448 logger.log(Level.WARNING, String.format("Image insert finished for %s: %s", imageInsertFinishedEvent.image(), imageInsertFinishedEvent.resultingUri()));
2449 imageInsertFinishedEvent.image().setKey(imageInsertFinishedEvent.resultingUri().toString());
2450 deleteTemporaryImage(imageInsertFinishedEvent.image().getId());
2451 touchConfiguration();