2 * Sone - Core.java - Copyright © 2010 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.core;
20 import java.net.MalformedURLException;
21 import java.util.ArrayList;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.HashSet;
25 import java.util.List;
28 import java.util.Map.Entry;
29 import java.util.concurrent.ExecutorService;
30 import java.util.concurrent.Executors;
31 import java.util.logging.Level;
32 import java.util.logging.Logger;
34 import net.pterodactylus.sone.core.Options.DefaultOption;
35 import net.pterodactylus.sone.core.Options.Option;
36 import net.pterodactylus.sone.core.Options.OptionWatcher;
37 import net.pterodactylus.sone.data.Album;
38 import net.pterodactylus.sone.data.Client;
39 import net.pterodactylus.sone.data.Image;
40 import net.pterodactylus.sone.data.Post;
41 import net.pterodactylus.sone.data.PostReply;
42 import net.pterodactylus.sone.data.Profile;
43 import net.pterodactylus.sone.data.Reply;
44 import net.pterodactylus.sone.data.Sone;
45 import net.pterodactylus.sone.data.TemporaryImage;
46 import net.pterodactylus.sone.data.Profile.Field;
47 import net.pterodactylus.sone.data.Sone.ShowCustomAvatars;
48 import net.pterodactylus.sone.data.Sone.SoneStatus;
49 import net.pterodactylus.sone.fcp.FcpInterface;
50 import net.pterodactylus.sone.fcp.FcpInterface.FullAccessRequired;
51 import net.pterodactylus.sone.freenet.wot.Identity;
52 import net.pterodactylus.sone.freenet.wot.IdentityListener;
53 import net.pterodactylus.sone.freenet.wot.IdentityManager;
54 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
55 import net.pterodactylus.sone.freenet.wot.Trust;
56 import net.pterodactylus.sone.freenet.wot.WebOfTrustException;
57 import net.pterodactylus.sone.main.SonePlugin;
58 import net.pterodactylus.util.config.Configuration;
59 import net.pterodactylus.util.config.ConfigurationException;
60 import net.pterodactylus.util.logging.Logging;
61 import net.pterodactylus.util.number.Numbers;
62 import net.pterodactylus.util.service.AbstractService;
63 import net.pterodactylus.util.thread.Ticker;
64 import net.pterodactylus.util.validation.EqualityValidator;
65 import net.pterodactylus.util.validation.IntegerRangeValidator;
66 import net.pterodactylus.util.validation.OrValidator;
67 import net.pterodactylus.util.validation.Validation;
68 import net.pterodactylus.util.version.Version;
69 import freenet.keys.FreenetURI;
74 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
76 public class Core extends AbstractService implements IdentityListener, UpdateListener, SoneProvider, PostProvider, SoneInsertListener, ImageInsertListener {
79 private static final Logger logger = Logging.getLogger(Core.class);
82 private final Options options = new Options();
84 /** The preferences. */
85 private final Preferences preferences = new Preferences(options);
87 /** The core listener manager. */
88 private final CoreListenerManager coreListenerManager = new CoreListenerManager(this);
90 /** The configuration. */
91 private Configuration configuration;
93 /** Whether we’re currently saving the configuration. */
94 private boolean storingConfiguration = false;
96 /** The identity manager. */
97 private final IdentityManager identityManager;
99 /** Interface to freenet. */
100 private final FreenetInterface freenetInterface;
102 /** The Sone downloader. */
103 private final SoneDownloader soneDownloader;
105 /** The image inserter. */
106 private final ImageInserter imageInserter;
108 /** Sone downloader thread-pool. */
109 private final ExecutorService soneDownloaders = Executors.newFixedThreadPool(10);
111 /** The update checker. */
112 private final UpdateChecker updateChecker;
114 /** The FCP interface. */
115 private volatile FcpInterface fcpInterface;
117 /** The times Sones were followed. */
118 private final Map<Sone, Long> soneFollowingTimes = new HashMap<Sone, Long>();
120 /** Locked local Sones. */
121 /* synchronize on itself. */
122 private final Set<Sone> lockedSones = new HashSet<Sone>();
124 /** Sone inserters. */
125 /* synchronize access on this on localSones. */
126 private final Map<Sone, SoneInserter> soneInserters = new HashMap<Sone, SoneInserter>();
128 /** Sone rescuers. */
129 /* synchronize access on this on localSones. */
130 private final Map<Sone, SoneRescuer> soneRescuers = new HashMap<Sone, SoneRescuer>();
132 /** All local Sones. */
133 /* synchronize access on this on itself. */
134 private Map<String, Sone> localSones = new HashMap<String, Sone>();
136 /** All remote Sones. */
137 /* synchronize access on this on itself. */
138 private Map<String, Sone> remoteSones = new HashMap<String, Sone>();
140 /** All known Sones. */
141 private Set<String> knownSones = new HashSet<String>();
144 private Map<String, Post> posts = new HashMap<String, Post>();
146 /** All known posts. */
147 private Set<String> knownPosts = new HashSet<String>();
150 private Map<String, PostReply> replies = new HashMap<String, PostReply>();
152 /** All known replies. */
153 private Set<String> knownReplies = new HashSet<String>();
155 /** All bookmarked posts. */
156 /* synchronize access on itself. */
157 private Set<String> bookmarkedPosts = new HashSet<String>();
159 /** Trusted identities, sorted by own identities. */
160 private Map<OwnIdentity, Set<Identity>> trustedIdentities = Collections.synchronizedMap(new HashMap<OwnIdentity, Set<Identity>>());
162 /** All known albums. */
163 private Map<String, Album> albums = new HashMap<String, Album>();
165 /** All known images. */
166 private Map<String, Image> images = new HashMap<String, Image>();
168 /** All temporary images. */
169 private Map<String, TemporaryImage> temporaryImages = new HashMap<String, TemporaryImage>();
171 /** Ticker for threads that mark own elements as known. */
172 private Ticker localElementTicker = new Ticker();
174 /** The time the configuration was last touched. */
175 private volatile long lastConfigurationUpdate;
178 * Creates a new core.
180 * @param configuration
181 * The configuration of the core
182 * @param freenetInterface
183 * The freenet interface
184 * @param identityManager
185 * The identity manager
187 public Core(Configuration configuration, FreenetInterface freenetInterface, IdentityManager identityManager) {
189 this.configuration = configuration;
190 this.freenetInterface = freenetInterface;
191 this.identityManager = identityManager;
192 this.soneDownloader = new SoneDownloader(this, freenetInterface);
193 this.imageInserter = new ImageInserter(this, freenetInterface);
194 this.updateChecker = new UpdateChecker(freenetInterface);
198 // LISTENER MANAGEMENT
202 * Adds a new core listener.
204 * @param coreListener
205 * The listener to add
207 public void addCoreListener(CoreListener coreListener) {
208 coreListenerManager.addListener(coreListener);
212 * Removes a core listener.
214 * @param coreListener
215 * The listener to remove
217 public void removeCoreListener(CoreListener coreListener) {
218 coreListenerManager.removeListener(coreListener);
226 * Sets the configuration to use. This will automatically save the current
227 * configuration to the given configuration.
229 * @param configuration
230 * The new configuration to use
232 public void setConfiguration(Configuration configuration) {
233 this.configuration = configuration;
234 touchConfiguration();
238 * Returns the options used by the core.
240 * @return The options of the core
242 public Preferences getPreferences() {
247 * Returns the identity manager used by the core.
249 * @return The identity manager
251 public IdentityManager getIdentityManager() {
252 return identityManager;
256 * Returns the update checker.
258 * @return The update checker
260 public UpdateChecker getUpdateChecker() {
261 return updateChecker;
265 * Sets the FCP interface to use.
267 * @param fcpInterface
268 * The FCP interface to use
270 public void setFcpInterface(FcpInterface fcpInterface) {
271 this.fcpInterface = fcpInterface;
275 * Returns the Sone rescuer for the given local Sone.
278 * The local Sone to get the rescuer for
279 * @return The Sone rescuer for the given Sone
281 public SoneRescuer getSoneRescuer(Sone sone) {
282 Validation.begin().isNotNull("Sone", sone).check().is("Local Sone", isLocalSone(sone)).check();
283 synchronized (localSones) {
284 SoneRescuer soneRescuer = soneRescuers.get(sone);
285 if (soneRescuer == null) {
286 soneRescuer = new SoneRescuer(this, soneDownloader, sone);
287 soneRescuers.put(sone, soneRescuer);
295 * Returns whether the given Sone is currently locked.
299 * @return {@code true} if the Sone is locked, {@code false} if it is not
301 public boolean isLocked(Sone sone) {
302 synchronized (lockedSones) {
303 return lockedSones.contains(sone);
308 * Returns all Sones, remote and local.
312 public Set<Sone> getSones() {
313 Set<Sone> allSones = new HashSet<Sone>();
314 allSones.addAll(getLocalSones());
315 allSones.addAll(getRemoteSones());
320 * Returns the Sone with the given ID, regardless whether it’s local or
324 * The ID of the Sone to get
325 * @return The Sone with the given ID, or {@code null} if there is no such
328 public Sone getSone(String id) {
329 return getSone(id, true);
333 * Returns the Sone with the given ID, regardless whether it’s local or
337 * The ID of the Sone to get
339 * {@code true} to create a new Sone if none exists,
340 * {@code false} to return {@code null} if a Sone with the given
342 * @return The Sone with the given ID, or {@code null} if there is no such
346 public Sone getSone(String id, boolean create) {
347 if (isLocalSone(id)) {
348 return getLocalSone(id);
350 return getRemoteSone(id, create);
354 * Checks whether the core knows a Sone with the given ID.
358 * @return {@code true} if there is a Sone with the given ID, {@code false}
361 public boolean hasSone(String id) {
362 return isLocalSone(id) || isRemoteSone(id);
366 * Returns whether the given Sone is a local Sone.
369 * The Sone to check for its locality
370 * @return {@code true} if the given Sone is local, {@code false} otherwise
372 public boolean isLocalSone(Sone sone) {
373 synchronized (localSones) {
374 return localSones.containsKey(sone.getId());
379 * Returns whether the given ID is the ID of a local Sone.
382 * The Sone ID to check for its locality
383 * @return {@code true} if the given ID is a local Sone, {@code false}
386 public boolean isLocalSone(String id) {
387 synchronized (localSones) {
388 return localSones.containsKey(id);
393 * Returns all local Sones.
395 * @return All local Sones
397 public Set<Sone> getLocalSones() {
398 synchronized (localSones) {
399 return new HashSet<Sone>(localSones.values());
404 * Returns the local Sone with the given ID.
407 * The ID of the Sone to get
408 * @return The Sone with the given ID
410 public Sone getLocalSone(String id) {
411 return getLocalSone(id, true);
415 * Returns the local Sone with the given ID, optionally creating a new Sone.
420 * {@code true} to create a new Sone if none exists,
421 * {@code false} to return null if none exists
422 * @return The Sone with the given ID, or {@code null}
424 public Sone getLocalSone(String id, boolean create) {
425 synchronized (localSones) {
426 Sone sone = localSones.get(id);
427 if ((sone == null) && create) {
429 localSones.put(id, sone);
436 * Returns all remote Sones.
438 * @return All remote Sones
440 public Set<Sone> getRemoteSones() {
441 synchronized (remoteSones) {
442 return new HashSet<Sone>(remoteSones.values());
447 * Returns the remote Sone with the given ID.
450 * The ID of the remote Sone to get
452 * {@code true} to always create a Sone, {@code false} to return
453 * {@code null} if no Sone with the given ID exists
454 * @return The Sone with the given ID
456 public Sone getRemoteSone(String id, boolean create) {
457 synchronized (remoteSones) {
458 Sone sone = remoteSones.get(id);
459 if ((sone == null) && create && (id != null) && (id.length() == 43)) {
461 remoteSones.put(id, sone);
468 * Returns whether the given Sone is a remote Sone.
472 * @return {@code true} if the given Sone is a remote Sone, {@code false}
475 public boolean isRemoteSone(Sone sone) {
476 synchronized (remoteSones) {
477 return remoteSones.containsKey(sone.getId());
482 * Returns whether the Sone with the given ID is a remote Sone.
485 * The ID of the Sone to check
486 * @return {@code true} if the Sone with the given ID is a remote Sone,
487 * {@code false} otherwise
489 public boolean isRemoteSone(String id) {
490 synchronized (remoteSones) {
491 return remoteSones.containsKey(id);
496 * Returns whether the given Sone has been modified.
499 * The Sone to check for modifications
500 * @return {@code true} if a modification has been detected in the Sone,
501 * {@code false} otherwise
503 public boolean isModifiedSone(Sone sone) {
504 return (soneInserters.containsKey(sone)) ? soneInserters.get(sone).isModified() : false;
508 * Returns the time when the given was first followed by any local Sone.
511 * The Sone to get the time for
512 * @return The time (in milliseconds since Jan 1, 1970) the Sone has first
513 * been followed, or {@link Long#MAX_VALUE}
515 public long getSoneFollowingTime(Sone sone) {
516 synchronized (soneFollowingTimes) {
517 if (soneFollowingTimes.containsKey(sone)) {
518 return soneFollowingTimes.get(sone);
520 return Long.MAX_VALUE;
525 * Returns whether the target Sone is trusted by the origin Sone.
531 * @return {@code true} if the target Sone is trusted by the origin Sone
533 public boolean isSoneTrusted(Sone origin, Sone target) {
534 Validation.begin().isNotNull("Origin", origin).isNotNull("Target", target).check().isInstanceOf("Origin’s OwnIdentity", origin.getIdentity(), OwnIdentity.class).check();
535 return trustedIdentities.containsKey(origin.getIdentity()) && trustedIdentities.get(origin.getIdentity()).contains(target.getIdentity());
539 * Returns the post with the given ID.
542 * The ID of the post to get
543 * @return The post with the given ID, or a new post with the given ID
545 public Post getPost(String postId) {
546 return getPost(postId, true);
550 * Returns the post with the given ID, optionally creating a new post.
553 * The ID of the post to get
555 * {@code true} it create a new post if no post with the given ID
556 * exists, {@code false} to return {@code null}
557 * @return The post, or {@code null} if there is no such post
560 public Post getPost(String postId, boolean create) {
561 synchronized (posts) {
562 Post post = posts.get(postId);
563 if ((post == null) && create) {
564 post = new Post(postId);
565 posts.put(postId, post);
572 * Returns all posts that have the given Sone as recipient.
574 * @see Post#getRecipient()
576 * The recipient of the posts
577 * @return All posts that have the given Sone as recipient
579 public Set<Post> getDirectedPosts(Sone recipient) {
580 Validation.begin().isNotNull("Recipient", recipient).check();
581 Set<Post> directedPosts = new HashSet<Post>();
582 synchronized (posts) {
583 for (Post post : posts.values()) {
584 if (recipient.equals(post.getRecipient())) {
585 directedPosts.add(post);
589 return directedPosts;
593 * Returns the reply with the given ID. If there is no reply with the given
594 * ID yet, a new one is created.
597 * The ID of the reply to get
600 public PostReply getReply(String replyId) {
601 return getReply(replyId, true);
605 * Returns the reply with the given ID. If there is no reply with the given
606 * ID yet, a new one is created, unless {@code create} is false in which
607 * case {@code null} is returned.
610 * The ID of the reply to get
612 * {@code true} to always return a {@link Reply}, {@code false}
613 * to return {@code null} if no reply can be found
614 * @return The reply, or {@code null} if there is no such reply
616 public PostReply getReply(String replyId, boolean create) {
617 synchronized (replies) {
618 PostReply reply = replies.get(replyId);
619 if (create && (reply == null)) {
620 reply = new PostReply(replyId);
621 replies.put(replyId, reply);
628 * Returns all replies for the given post, order ascending by time.
631 * The post to get all replies for
632 * @return All replies for the given post
634 public List<PostReply> getReplies(Post post) {
635 Set<Sone> sones = getSones();
636 List<PostReply> replies = new ArrayList<PostReply>();
637 for (Sone sone : sones) {
638 for (PostReply reply : sone.getReplies()) {
639 if (reply.getPost().equals(post)) {
644 Collections.sort(replies, Reply.TIME_COMPARATOR);
649 * Returns all Sones that have liked the given post.
652 * The post to get the liking Sones for
653 * @return The Sones that like the given post
655 public Set<Sone> getLikes(Post post) {
656 Set<Sone> sones = new HashSet<Sone>();
657 for (Sone sone : getSones()) {
658 if (sone.getLikedPostIds().contains(post.getId())) {
666 * Returns all Sones that have liked the given reply.
669 * The reply to get the liking Sones for
670 * @return The Sones that like the given reply
672 public Set<Sone> getLikes(PostReply reply) {
673 Set<Sone> sones = new HashSet<Sone>();
674 for (Sone sone : getSones()) {
675 if (sone.getLikedReplyIds().contains(reply.getId())) {
683 * Returns whether the given post is bookmarked.
687 * @return {@code true} if the given post is bookmarked, {@code false}
690 public boolean isBookmarked(Post post) {
691 return isPostBookmarked(post.getId());
695 * Returns whether the post with the given ID is bookmarked.
698 * The ID of the post to check
699 * @return {@code true} if the post with the given ID is bookmarked,
700 * {@code false} otherwise
702 public boolean isPostBookmarked(String id) {
703 synchronized (bookmarkedPosts) {
704 return bookmarkedPosts.contains(id);
709 * Returns all currently known bookmarked posts.
711 * @return All bookmarked posts
713 public Set<Post> getBookmarkedPosts() {
714 Set<Post> posts = new HashSet<Post>();
715 synchronized (bookmarkedPosts) {
716 for (String bookmarkedPostId : bookmarkedPosts) {
717 Post post = getPost(bookmarkedPostId, false);
727 * Returns the album with the given ID, creating a new album if no album
728 * with the given ID can be found.
731 * The ID of the album
732 * @return The album with the given ID
734 public Album getAlbum(String albumId) {
735 return getAlbum(albumId, true);
739 * Returns the album with the given ID, optionally creating a new album if
740 * an album with the given ID can not be found.
743 * The ID of the album
745 * {@code true} to create a new album if none exists for the
747 * @return The album with the given ID, or {@code null} if no album with the
748 * given ID exists and {@code create} is {@code false}
750 public Album getAlbum(String albumId, boolean create) {
751 synchronized (albums) {
752 Album album = albums.get(albumId);
753 if (create && (album == null)) {
754 album = new Album(albumId);
755 albums.put(albumId, album);
762 * Returns the image with the given ID, creating it if necessary.
765 * The ID of the image
766 * @return The image with the given ID
768 public Image getImage(String imageId) {
769 return getImage(imageId, true);
773 * Returns the image with the given ID, optionally creating it if it does
777 * The ID of the image
779 * {@code true} to create an image if none exists with the given
781 * @return The image with the given ID, or {@code null} if none exists and
784 public Image getImage(String imageId, boolean create) {
785 synchronized (images) {
786 Image image = images.get(imageId);
787 if (create && (image == null)) {
788 image = new Image(imageId);
789 images.put(imageId, image);
796 * Returns the temporary image with the given ID.
799 * The ID of the temporary image
800 * @return The temporary image, or {@code null} if there is no temporary
801 * image with the given ID
803 public TemporaryImage getTemporaryImage(String imageId) {
804 synchronized (temporaryImages) {
805 return temporaryImages.get(imageId);
814 * Locks the given Sone. A locked Sone will not be inserted by
815 * {@link SoneInserter} until it is {@link #unlockSone(Sone) unlocked}
821 public void lockSone(Sone sone) {
822 synchronized (lockedSones) {
823 if (lockedSones.add(sone)) {
824 coreListenerManager.fireSoneLocked(sone);
830 * Unlocks the given Sone.
832 * @see #lockSone(Sone)
836 public void unlockSone(Sone sone) {
837 synchronized (lockedSones) {
838 if (lockedSones.remove(sone)) {
839 coreListenerManager.fireSoneUnlocked(sone);
845 * Adds a local Sone from the given own identity.
848 * The own identity to create a Sone from
849 * @return The added (or already existing) Sone
851 public Sone addLocalSone(OwnIdentity ownIdentity) {
852 if (ownIdentity == null) {
853 logger.log(Level.WARNING, "Given OwnIdentity is null!");
856 synchronized (localSones) {
859 sone = getLocalSone(ownIdentity.getId()).setIdentity(ownIdentity).setInsertUri(new FreenetURI(ownIdentity.getInsertUri())).setRequestUri(new FreenetURI(ownIdentity.getRequestUri()));
860 } catch (MalformedURLException mue1) {
861 logger.log(Level.SEVERE, "Could not convert the Identity’s URIs to Freenet URIs: " + ownIdentity.getInsertUri() + ", " + ownIdentity.getRequestUri(), mue1);
864 sone.setLatestEdition(Numbers.safeParseLong(ownIdentity.getProperty("Sone.LatestEdition"), (long) 0));
865 sone.setClient(new Client("Sone", SonePlugin.VERSION.toString()));
866 /* TODO - load posts ’n stuff */
867 localSones.put(ownIdentity.getId(), sone);
868 final SoneInserter soneInserter = new SoneInserter(this, freenetInterface, sone);
869 soneInserter.addSoneInsertListener(this);
870 soneInserters.put(sone, soneInserter);
871 sone.setStatus(SoneStatus.idle);
873 soneInserter.start();
879 * Creates a new Sone for the given own identity.
882 * The own identity to create a Sone for
883 * @return The created Sone
885 public Sone createSone(OwnIdentity ownIdentity) {
887 ownIdentity.addContext("Sone");
888 } catch (WebOfTrustException wote1) {
889 logger.log(Level.SEVERE, "Could not add “Sone” context to own identity: " + ownIdentity, wote1);
892 Sone sone = addLocalSone(ownIdentity);
893 sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
894 sone.getOptions().addBooleanOption("EnableSoneInsertNotifications", new DefaultOption<Boolean>(false));
895 sone.getOptions().addBooleanOption("ShowNotification/NewSones", new DefaultOption<Boolean>(true));
896 sone.getOptions().addBooleanOption("ShowNotification/NewPosts", new DefaultOption<Boolean>(true));
897 sone.getOptions().addBooleanOption("ShowNotification/NewReplies", new DefaultOption<Boolean>(true));
898 sone.getOptions().addEnumOption("ShowCustomAvatars", new DefaultOption<ShowCustomAvatars>(ShowCustomAvatars.NEVER));
900 followSone(sone, getSone("nwa8lHa271k2QvJ8aa0Ov7IHAV-DFOCFgmDt3X6BpCI"));
901 touchConfiguration();
906 * Adds the Sone of the given identity.
909 * The identity whose Sone to add
910 * @return The added or already existing Sone
912 public Sone addRemoteSone(Identity identity) {
913 if (identity == null) {
914 logger.log(Level.WARNING, "Given Identity is null!");
917 synchronized (remoteSones) {
918 final Sone sone = getRemoteSone(identity.getId(), true).setIdentity(identity);
919 boolean newSone = sone.getRequestUri() == null;
920 sone.setRequestUri(getSoneUri(identity.getRequestUri()));
921 sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), (long) 0));
923 synchronized (knownSones) {
924 newSone = !knownSones.contains(sone.getId());
926 sone.setKnown(!newSone);
928 coreListenerManager.fireNewSoneFound(sone);
929 for (Sone localSone : getLocalSones()) {
930 if (localSone.getOptions().getBooleanOption("AutoFollow").get()) {
931 followSone(localSone, sone);
936 soneDownloader.addSone(sone);
937 soneDownloaders.execute(new Runnable() {
940 @SuppressWarnings("synthetic-access")
942 soneDownloader.fetchSone(sone, sone.getRequestUri());
951 * Lets the given local Sone follow the Sone with the given ID.
954 * The local Sone that should follow another Sone
956 * The ID of the Sone to follow
958 public void followSone(Sone sone, String soneId) {
959 Validation.begin().isNotNull("Sone", sone).isNotNull("Sone ID", soneId).check();
960 Sone followedSone = getSone(soneId, true);
961 if (followedSone == null) {
962 logger.log(Level.INFO, String.format("Ignored Sone with invalid ID: %s", soneId));
965 followSone(sone, getSone(soneId));
969 * Lets the given local Sone follow the other given Sone. If the given Sone
970 * was not followed by any local Sone before, this will mark all elements of
971 * the followed Sone as read that have been created before the current
975 * The local Sone that should follow the other Sone
976 * @param followedSone
977 * The Sone that should be followed
979 public void followSone(Sone sone, Sone followedSone) {
980 Validation.begin().isNotNull("Sone", sone).isNotNull("Followed Sone", followedSone).check();
981 sone.addFriend(followedSone.getId());
982 synchronized (soneFollowingTimes) {
983 if (!soneFollowingTimes.containsKey(followedSone)) {
984 long now = System.currentTimeMillis();
985 soneFollowingTimes.put(followedSone, now);
986 for (Post post : followedSone.getPosts()) {
987 if (post.getTime() < now) {
991 for (PostReply reply : followedSone.getReplies()) {
992 if (reply.getTime() < now) {
993 markReplyKnown(reply);
998 touchConfiguration();
1002 * Lets the given local Sone unfollow the Sone with the given ID.
1005 * The local Sone that should unfollow another Sone
1007 * The ID of the Sone being unfollowed
1009 public void unfollowSone(Sone sone, String soneId) {
1010 Validation.begin().isNotNull("Sone", sone).isNotNull("Sone ID", soneId).check();
1011 unfollowSone(sone, getSone(soneId, false));
1015 * Lets the given local Sone unfollow the other given Sone. If the given
1016 * local Sone is the last local Sone that followed the given Sone, its
1017 * following time will be removed.
1020 * The local Sone that should unfollow another Sone
1021 * @param unfollowedSone
1022 * The Sone being unfollowed
1024 public void unfollowSone(Sone sone, Sone unfollowedSone) {
1025 Validation.begin().isNotNull("Sone", sone).isNotNull("Unfollowed Sone", unfollowedSone).check();
1026 sone.removeFriend(unfollowedSone.getId());
1027 boolean unfollowedSoneStillFollowed = false;
1028 for (Sone localSone : getLocalSones()) {
1029 unfollowedSoneStillFollowed |= localSone.hasFriend(unfollowedSone.getId());
1031 if (!unfollowedSoneStillFollowed) {
1032 synchronized (soneFollowingTimes) {
1033 soneFollowingTimes.remove(unfollowedSone);
1036 touchConfiguration();
1040 * Retrieves the trust relationship from the origin to the target. If the
1041 * trust relationship can not be retrieved, {@code null} is returned.
1043 * @see Identity#getTrust(OwnIdentity)
1045 * The origin of the trust tree
1047 * The target of the trust
1048 * @return The trust relationship
1050 public Trust getTrust(Sone origin, Sone target) {
1051 if (!isLocalSone(origin)) {
1052 logger.log(Level.WARNING, "Tried to get trust from remote Sone: %s", origin);
1055 return target.getIdentity().getTrust((OwnIdentity) origin.getIdentity());
1059 * Sets the trust value of the given origin Sone for the target Sone.
1066 * The trust value (from {@code -100} to {@code 100})
1068 public void setTrust(Sone origin, Sone target, int trustValue) {
1069 Validation.begin().isNotNull("Trust Origin", origin).check().isInstanceOf("Trust Origin", origin.getIdentity(), OwnIdentity.class).isNotNull("Trust Target", target).isLessOrEqual("Trust Value", trustValue, 100).isGreaterOrEqual("Trust Value", trustValue, -100).check();
1071 ((OwnIdentity) origin.getIdentity()).setTrust(target.getIdentity(), trustValue, preferences.getTrustComment());
1072 } catch (WebOfTrustException wote1) {
1073 logger.log(Level.WARNING, "Could not set trust for Sone: " + target, wote1);
1078 * Removes any trust assignment for the given target Sone.
1085 public void removeTrust(Sone origin, Sone target) {
1086 Validation.begin().isNotNull("Trust Origin", origin).isNotNull("Trust Target", target).check().isInstanceOf("Trust Origin Identity", origin.getIdentity(), OwnIdentity.class).check();
1088 ((OwnIdentity) origin.getIdentity()).removeTrust(target.getIdentity());
1089 } catch (WebOfTrustException wote1) {
1090 logger.log(Level.WARNING, "Could not remove trust for Sone: " + target, wote1);
1095 * Assigns the configured positive trust value for the given target.
1102 public void trustSone(Sone origin, Sone target) {
1103 setTrust(origin, target, preferences.getPositiveTrust());
1107 * Assigns the configured negative trust value for the given target.
1114 public void distrustSone(Sone origin, Sone target) {
1115 setTrust(origin, target, preferences.getNegativeTrust());
1119 * Removes the trust assignment for the given target.
1126 public void untrustSone(Sone origin, Sone target) {
1127 removeTrust(origin, target);
1131 * Updates the stored Sone with the given Sone.
1136 public void updateSone(Sone sone) {
1137 updateSone(sone, false);
1141 * Updates the stored Sone with the given Sone. If {@code soneRescueMode} is
1142 * {@code true}, an older Sone than the current Sone can be given to restore
1146 * The Sone to update
1147 * @param soneRescueMode
1148 * {@code true} if the stored Sone should be updated regardless
1149 * of the age of the given Sone
1151 public void updateSone(Sone sone, boolean soneRescueMode) {
1152 if (hasSone(sone.getId())) {
1153 Sone storedSone = getSone(sone.getId());
1154 if (!soneRescueMode && !(sone.getTime() > storedSone.getTime())) {
1155 logger.log(Level.FINE, "Downloaded Sone %s is not newer than stored Sone %s.", new Object[] { sone, storedSone });
1158 synchronized (posts) {
1159 if (!soneRescueMode) {
1160 for (Post post : storedSone.getPosts()) {
1161 posts.remove(post.getId());
1162 if (!sone.getPosts().contains(post)) {
1163 coreListenerManager.firePostRemoved(post);
1167 List<Post> storedPosts = storedSone.getPosts();
1168 synchronized (knownPosts) {
1169 for (Post post : sone.getPosts()) {
1170 post.setSone(storedSone);
1171 if (!storedPosts.contains(post)) {
1172 if (post.getTime() < getSoneFollowingTime(sone)) {
1173 sone.setKnown(true);
1174 knownPosts.add(post.getId());
1175 } else if (!knownPosts.contains(post.getId())) {
1176 coreListenerManager.fireNewPostFound(post);
1178 sone.setKnown(true);
1181 posts.put(post.getId(), post);
1185 synchronized (replies) {
1186 if (!soneRescueMode) {
1187 for (PostReply reply : storedSone.getReplies()) {
1188 replies.remove(reply.getId());
1189 if (!sone.getReplies().contains(reply)) {
1190 coreListenerManager.fireReplyRemoved(reply);
1194 Set<PostReply> storedReplies = storedSone.getReplies();
1195 synchronized (knownReplies) {
1196 for (PostReply reply : sone.getReplies()) {
1197 reply.setSone(storedSone);
1198 if (!storedReplies.contains(reply)) {
1199 if (reply.getTime() < getSoneFollowingTime(sone)) {
1200 reply.setKnown(true);
1201 knownReplies.add(reply.getId());
1202 } else if (!knownReplies.contains(reply.getId())) {
1203 coreListenerManager.fireNewReplyFound(reply);
1205 reply.setKnown(true);
1208 replies.put(reply.getId(), reply);
1212 synchronized (albums) {
1213 synchronized (images) {
1214 for (Album album : storedSone.getAlbums()) {
1215 albums.remove(album.getId());
1216 for (Image image : album.getImages()) {
1217 images.remove(image.getId());
1220 for (Album album : sone.getAlbums()) {
1221 albums.put(album.getId(), album);
1222 for (Image image : album.getImages()) {
1223 images.put(image.getId(), image);
1228 synchronized (storedSone) {
1229 if (!soneRescueMode || (sone.getTime() > storedSone.getTime())) {
1230 storedSone.setTime(sone.getTime());
1232 storedSone.setClient(sone.getClient());
1233 storedSone.setProfile(sone.getProfile());
1234 if (soneRescueMode) {
1235 for (Post post : sone.getPosts()) {
1236 storedSone.addPost(post);
1238 for (PostReply reply : sone.getReplies()) {
1239 storedSone.addReply(reply);
1241 for (String likedPostId : sone.getLikedPostIds()) {
1242 storedSone.addLikedPostId(likedPostId);
1244 for (String likedReplyId : sone.getLikedReplyIds()) {
1245 storedSone.addLikedReplyId(likedReplyId);
1247 for (Album album : sone.getAlbums()) {
1248 storedSone.addAlbum(album);
1251 storedSone.setPosts(sone.getPosts());
1252 storedSone.setReplies(sone.getReplies());
1253 storedSone.setLikePostIds(sone.getLikedPostIds());
1254 storedSone.setLikeReplyIds(sone.getLikedReplyIds());
1255 storedSone.setAlbums(sone.getAlbums());
1257 storedSone.setLatestEdition(sone.getLatestEdition());
1263 * Deletes the given Sone. This will remove the Sone from the
1264 * {@link #getLocalSone(String) local Sones}, stops its {@link SoneInserter}
1265 * and remove the context from its identity.
1268 * The Sone to delete
1270 public void deleteSone(Sone sone) {
1271 if (!(sone.getIdentity() instanceof OwnIdentity)) {
1272 logger.log(Level.WARNING, "Tried to delete Sone of non-own identity: %s", sone);
1275 synchronized (localSones) {
1276 if (!localSones.containsKey(sone.getId())) {
1277 logger.log(Level.WARNING, "Tried to delete non-local Sone: %s", sone);
1280 localSones.remove(sone.getId());
1281 SoneInserter soneInserter = soneInserters.remove(sone);
1282 soneInserter.removeSoneInsertListener(this);
1283 soneInserter.stop();
1286 ((OwnIdentity) sone.getIdentity()).removeContext("Sone");
1287 ((OwnIdentity) sone.getIdentity()).removeProperty("Sone.LatestEdition");
1288 } catch (WebOfTrustException wote1) {
1289 logger.log(Level.WARNING, "Could not remove context and properties from Sone: " + sone, wote1);
1292 configuration.getLongValue("Sone/" + sone.getId() + "/Time").setValue(null);
1293 } catch (ConfigurationException ce1) {
1294 logger.log(Level.WARNING, "Could not remove Sone from configuration!", ce1);
1299 * Marks the given Sone as known. If the Sone was {@link #isNewPost(String)
1300 * new} before, a {@link CoreListener#markSoneKnown(Sone)} event is fired.
1303 * The Sone to mark as known
1305 public void markSoneKnown(Sone sone) {
1306 if (!sone.isKnown()) {
1307 sone.setKnown(true);
1308 synchronized (knownSones) {
1309 knownSones.add(sone.getId());
1311 coreListenerManager.fireMarkSoneKnown(sone);
1312 touchConfiguration();
1317 * Loads and updates the given Sone from the configuration. If any error is
1318 * encountered, loading is aborted and the given Sone is not changed.
1321 * The Sone to load and update
1323 public void loadSone(Sone sone) {
1324 if (!isLocalSone(sone)) {
1325 logger.log(Level.FINE, "Tried to load non-local Sone: %s", sone);
1329 /* initialize options. */
1330 sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
1331 sone.getOptions().addBooleanOption("EnableSoneInsertNotifications", new DefaultOption<Boolean>(false));
1332 sone.getOptions().addBooleanOption("ShowNotification/NewSones", new DefaultOption<Boolean>(true));
1333 sone.getOptions().addBooleanOption("ShowNotification/NewPosts", new DefaultOption<Boolean>(true));
1334 sone.getOptions().addBooleanOption("ShowNotification/NewReplies", new DefaultOption<Boolean>(true));
1335 sone.getOptions().addEnumOption("ShowCustomAvatars", new DefaultOption<ShowCustomAvatars>(ShowCustomAvatars.NEVER));
1338 String sonePrefix = "Sone/" + sone.getId();
1339 Long soneTime = configuration.getLongValue(sonePrefix + "/Time").getValue(null);
1340 if (soneTime == null) {
1341 logger.log(Level.INFO, "Could not load Sone because no Sone has been saved.");
1344 String lastInsertFingerprint = configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").getValue("");
1347 Profile profile = new Profile(sone);
1348 profile.setFirstName(configuration.getStringValue(sonePrefix + "/Profile/FirstName").getValue(null));
1349 profile.setMiddleName(configuration.getStringValue(sonePrefix + "/Profile/MiddleName").getValue(null));
1350 profile.setLastName(configuration.getStringValue(sonePrefix + "/Profile/LastName").getValue(null));
1351 profile.setBirthDay(configuration.getIntValue(sonePrefix + "/Profile/BirthDay").getValue(null));
1352 profile.setBirthMonth(configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").getValue(null));
1353 profile.setBirthYear(configuration.getIntValue(sonePrefix + "/Profile/BirthYear").getValue(null));
1355 /* load profile fields. */
1357 String fieldPrefix = sonePrefix + "/Profile/Fields/" + profile.getFields().size();
1358 String fieldName = configuration.getStringValue(fieldPrefix + "/Name").getValue(null);
1359 if (fieldName == null) {
1362 String fieldValue = configuration.getStringValue(fieldPrefix + "/Value").getValue("");
1363 profile.addField(fieldName).setValue(fieldValue);
1367 Set<Post> posts = new HashSet<Post>();
1369 String postPrefix = sonePrefix + "/Posts/" + posts.size();
1370 String postId = configuration.getStringValue(postPrefix + "/ID").getValue(null);
1371 if (postId == null) {
1374 String postRecipientId = configuration.getStringValue(postPrefix + "/Recipient").getValue(null);
1375 long postTime = configuration.getLongValue(postPrefix + "/Time").getValue((long) 0);
1376 String postText = configuration.getStringValue(postPrefix + "/Text").getValue(null);
1377 if ((postTime == 0) || (postText == null)) {
1378 logger.log(Level.WARNING, "Invalid post found, aborting load!");
1381 Post post = getPost(postId).setSone(sone).setTime(postTime).setText(postText);
1382 if ((postRecipientId != null) && (postRecipientId.length() == 43)) {
1383 post.setRecipient(getSone(postRecipientId));
1389 Set<PostReply> replies = new HashSet<PostReply>();
1391 String replyPrefix = sonePrefix + "/Replies/" + replies.size();
1392 String replyId = configuration.getStringValue(replyPrefix + "/ID").getValue(null);
1393 if (replyId == null) {
1396 String postId = configuration.getStringValue(replyPrefix + "/Post/ID").getValue(null);
1397 long replyTime = configuration.getLongValue(replyPrefix + "/Time").getValue((long) 0);
1398 String replyText = configuration.getStringValue(replyPrefix + "/Text").getValue(null);
1399 if ((postId == null) || (replyTime == 0) || (replyText == null)) {
1400 logger.log(Level.WARNING, "Invalid reply found, aborting load!");
1403 replies.add(getReply(replyId).setSone(sone).setPost(getPost(postId)).setTime(replyTime).setText(replyText));
1406 /* load post likes. */
1407 Set<String> likedPostIds = new HashSet<String>();
1409 String likedPostId = configuration.getStringValue(sonePrefix + "/Likes/Post/" + likedPostIds.size() + "/ID").getValue(null);
1410 if (likedPostId == null) {
1413 likedPostIds.add(likedPostId);
1416 /* load reply likes. */
1417 Set<String> likedReplyIds = new HashSet<String>();
1419 String likedReplyId = configuration.getStringValue(sonePrefix + "/Likes/Reply/" + likedReplyIds.size() + "/ID").getValue(null);
1420 if (likedReplyId == null) {
1423 likedReplyIds.add(likedReplyId);
1427 Set<String> friends = new HashSet<String>();
1429 String friendId = configuration.getStringValue(sonePrefix + "/Friends/" + friends.size() + "/ID").getValue(null);
1430 if (friendId == null) {
1433 friends.add(friendId);
1437 List<Album> topLevelAlbums = new ArrayList<Album>();
1438 int albumCounter = 0;
1440 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
1441 String albumId = configuration.getStringValue(albumPrefix + "/ID").getValue(null);
1442 if (albumId == null) {
1445 String albumTitle = configuration.getStringValue(albumPrefix + "/Title").getValue(null);
1446 String albumDescription = configuration.getStringValue(albumPrefix + "/Description").getValue(null);
1447 String albumParentId = configuration.getStringValue(albumPrefix + "/Parent").getValue(null);
1448 String albumImageId = configuration.getStringValue(albumPrefix + "/AlbumImage").getValue(null);
1449 if ((albumTitle == null) || (albumDescription == null)) {
1450 logger.log(Level.WARNING, "Invalid album found, aborting load!");
1453 Album album = getAlbum(albumId).setSone(sone).setTitle(albumTitle).setDescription(albumDescription).setAlbumImage(albumImageId);
1454 if (albumParentId != null) {
1455 Album parentAlbum = getAlbum(albumParentId, false);
1456 if (parentAlbum == null) {
1457 logger.log(Level.WARNING, "Invalid parent album ID: " + albumParentId);
1460 parentAlbum.addAlbum(album);
1462 topLevelAlbums.add(album);
1467 int imageCounter = 0;
1469 String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
1470 String imageId = configuration.getStringValue(imagePrefix + "/ID").getValue(null);
1471 if (imageId == null) {
1474 String albumId = configuration.getStringValue(imagePrefix + "/Album").getValue(null);
1475 String key = configuration.getStringValue(imagePrefix + "/Key").getValue(null);
1476 String title = configuration.getStringValue(imagePrefix + "/Title").getValue(null);
1477 String description = configuration.getStringValue(imagePrefix + "/Description").getValue(null);
1478 Long creationTime = configuration.getLongValue(imagePrefix + "/CreationTime").getValue(null);
1479 Integer width = configuration.getIntValue(imagePrefix + "/Width").getValue(null);
1480 Integer height = configuration.getIntValue(imagePrefix + "/Height").getValue(null);
1481 if ((albumId == null) || (key == null) || (title == null) || (description == null) || (creationTime == null) || (width == null) || (height == null)) {
1482 logger.log(Level.WARNING, "Invalid image found, aborting load!");
1485 Album album = getAlbum(albumId, false);
1486 if (album == null) {
1487 logger.log(Level.WARNING, "Invalid album image encountered, aborting load!");
1490 Image image = getImage(imageId).setSone(sone).setCreationTime(creationTime).setKey(key);
1491 image.setTitle(title).setDescription(description).setWidth(width).setHeight(height);
1492 album.addImage(image);
1496 String avatarId = configuration.getStringValue(sonePrefix + "/Profile/Avatar").getValue(null);
1497 if (avatarId != null) {
1498 profile.setAvatar(getImage(avatarId, false));
1502 sone.getOptions().getBooleanOption("AutoFollow").set(configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").getValue(null));
1503 sone.getOptions().getBooleanOption("EnableSoneInsertNotifications").set(configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").getValue(null));
1504 sone.getOptions().getBooleanOption("ShowNotification/NewSones").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").getValue(null));
1505 sone.getOptions().getBooleanOption("ShowNotification/NewPosts").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").getValue(null));
1506 sone.getOptions().getBooleanOption("ShowNotification/NewReplies").set(configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").getValue(null));
1507 sone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").set(ShowCustomAvatars.valueOf(configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").getValue(ShowCustomAvatars.NEVER.name())));
1509 /* if we’re still here, Sone was loaded successfully. */
1510 synchronized (sone) {
1511 sone.setTime(soneTime);
1512 sone.setProfile(profile);
1513 sone.setPosts(posts);
1514 sone.setReplies(replies);
1515 sone.setLikePostIds(likedPostIds);
1516 sone.setLikeReplyIds(likedReplyIds);
1517 for (String friendId : friends) {
1518 followSone(sone, friendId);
1520 sone.setAlbums(topLevelAlbums);
1521 soneInserters.get(sone).setLastInsertFingerprint(lastInsertFingerprint);
1523 synchronized (knownSones) {
1524 for (String friend : friends) {
1525 knownSones.add(friend);
1528 synchronized (knownPosts) {
1529 for (Post post : posts) {
1530 knownPosts.add(post.getId());
1533 synchronized (knownReplies) {
1534 for (PostReply reply : replies) {
1535 knownReplies.add(reply.getId());
1541 * Creates a new post.
1544 * The Sone that creates the post
1546 * The text of the post
1547 * @return The created post
1549 public Post createPost(Sone sone, String text) {
1550 return createPost(sone, System.currentTimeMillis(), text);
1554 * Creates a new post.
1557 * The Sone that creates the post
1559 * The time of the post
1561 * The text of the post
1562 * @return The created post
1564 public Post createPost(Sone sone, long time, String text) {
1565 return createPost(sone, null, time, text);
1569 * Creates a new post.
1572 * The Sone that creates the post
1574 * The recipient Sone, or {@code null} if this post does not have
1577 * The text of the post
1578 * @return The created post
1580 public Post createPost(Sone sone, Sone recipient, String text) {
1581 return createPost(sone, recipient, System.currentTimeMillis(), text);
1585 * Creates a new post.
1588 * The Sone that creates the post
1590 * The recipient Sone, or {@code null} if this post does not have
1593 * The time of the post
1595 * The text of the post
1596 * @return The created post
1598 public Post createPost(Sone sone, Sone recipient, long time, String text) {
1599 if (!isLocalSone(sone)) {
1600 logger.log(Level.FINE, "Tried to create post for non-local Sone: %s", sone);
1603 final Post post = new Post(sone, time, text);
1604 if (recipient != null) {
1605 post.setRecipient(recipient);
1607 synchronized (posts) {
1608 posts.put(post.getId(), post);
1610 coreListenerManager.fireNewPostFound(post);
1612 touchConfiguration();
1613 localElementTicker.registerEvent(System.currentTimeMillis() + 10 * 1000, new Runnable() {
1620 markPostKnown(post);
1622 }, "Mark " + post + " read.");
1627 * Deletes the given post.
1630 * The post to delete
1632 public void deletePost(Post post) {
1633 if (!isLocalSone(post.getSone())) {
1634 logger.log(Level.WARNING, "Tried to delete post of non-local Sone: %s", post.getSone());
1637 post.getSone().removePost(post);
1638 synchronized (posts) {
1639 posts.remove(post.getId());
1641 coreListenerManager.firePostRemoved(post);
1642 markPostKnown(post);
1643 touchConfiguration();
1647 * Marks the given post as known, if it is currently a new post (according
1648 * to {@link #isNewPost(String)}).
1651 * The post to mark as known
1653 public void markPostKnown(Post post) {
1654 post.setKnown(true);
1655 synchronized (knownPosts) {
1656 if (knownPosts.add(post.getId())) {
1657 coreListenerManager.fireMarkPostKnown(post);
1658 touchConfiguration();
1664 * Bookmarks the given post.
1667 * The post to bookmark
1669 public void bookmark(Post post) {
1670 bookmarkPost(post.getId());
1674 * Bookmarks the post with the given ID.
1677 * The ID of the post to bookmark
1679 public void bookmarkPost(String id) {
1680 synchronized (bookmarkedPosts) {
1681 bookmarkedPosts.add(id);
1686 * Removes the given post from the bookmarks.
1689 * The post to unbookmark
1691 public void unbookmark(Post post) {
1692 unbookmarkPost(post.getId());
1696 * Removes the post with the given ID from the bookmarks.
1699 * The ID of the post to unbookmark
1701 public void unbookmarkPost(String id) {
1702 synchronized (bookmarkedPosts) {
1703 bookmarkedPosts.remove(id);
1708 * Creates a new reply.
1711 * The Sone that creates the reply
1713 * The post that this reply refers to
1715 * The text of the reply
1716 * @return The created reply
1718 public PostReply createReply(Sone sone, Post post, String text) {
1719 return createReply(sone, post, System.currentTimeMillis(), text);
1723 * Creates a new reply.
1726 * The Sone that creates the reply
1728 * The post that this reply refers to
1730 * The time of the reply
1732 * The text of the reply
1733 * @return The created reply
1735 public PostReply createReply(Sone sone, Post post, long time, String text) {
1736 if (!isLocalSone(sone)) {
1737 logger.log(Level.FINE, "Tried to create reply for non-local Sone: %s", sone);
1740 final PostReply reply = new PostReply(sone, post, System.currentTimeMillis(), text);
1741 synchronized (replies) {
1742 replies.put(reply.getId(), reply);
1744 synchronized (knownReplies) {
1745 coreListenerManager.fireNewReplyFound(reply);
1747 sone.addReply(reply);
1748 touchConfiguration();
1749 localElementTicker.registerEvent(System.currentTimeMillis() + 10 * 1000, new Runnable() {
1756 markReplyKnown(reply);
1758 }, "Mark " + reply + " read.");
1763 * Deletes the given reply.
1766 * The reply to delete
1768 public void deleteReply(PostReply reply) {
1769 Sone sone = reply.getSone();
1770 if (!isLocalSone(sone)) {
1771 logger.log(Level.FINE, "Tried to delete non-local reply: %s", reply);
1774 synchronized (replies) {
1775 replies.remove(reply.getId());
1777 synchronized (knownReplies) {
1778 markReplyKnown(reply);
1779 knownReplies.remove(reply.getId());
1781 sone.removeReply(reply);
1782 touchConfiguration();
1786 * Marks the given reply as known, if it is currently a new reply (according
1787 * to {@link #isNewReply(String)}).
1790 * The reply to mark as known
1792 public void markReplyKnown(PostReply reply) {
1793 reply.setKnown(true);
1794 synchronized (knownReplies) {
1795 if (knownReplies.add(reply.getId())) {
1796 coreListenerManager.fireMarkReplyKnown(reply);
1797 touchConfiguration();
1803 * Creates a new top-level album for the given Sone.
1806 * The Sone to create the album for
1807 * @return The new album
1809 public Album createAlbum(Sone sone) {
1810 return createAlbum(sone, null);
1814 * Creates a new album for the given Sone.
1817 * The Sone to create the album for
1819 * The parent of the album (may be {@code null} to create a
1821 * @return The new album
1823 public Album createAlbum(Sone sone, Album parent) {
1824 Album album = new Album();
1825 synchronized (albums) {
1826 albums.put(album.getId(), album);
1828 album.setSone(sone);
1829 if (parent != null) {
1830 parent.addAlbum(album);
1832 sone.addAlbum(album);
1838 * Deletes the given album. The owner of the album has to be a local Sone,
1839 * and the album has to be {@link Album#isEmpty() empty} to be deleted.
1842 * The album to remove
1844 public void deleteAlbum(Album album) {
1845 Validation.begin().isNotNull("Album", album).check().is("Local Sone", isLocalSone(album.getSone())).check();
1846 if (!album.isEmpty()) {
1849 if (album.getParent() == null) {
1850 album.getSone().removeAlbum(album);
1852 album.getParent().removeAlbum(album);
1854 synchronized (albums) {
1855 albums.remove(album.getId());
1857 saveSone(album.getSone());
1861 * Creates a new image.
1864 * The Sone creating the image
1866 * The album the image will be inserted into
1867 * @param temporaryImage
1868 * The temporary image to create the image from
1869 * @return The newly created image
1871 public Image createImage(Sone sone, Album album, TemporaryImage temporaryImage) {
1872 Validation.begin().isNotNull("Sone", sone).isNotNull("Album", album).isNotNull("Temporary Image", temporaryImage).check().is("Local Sone", isLocalSone(sone)).check().isEqual("Owner and Album Owner", sone, album.getSone()).check();
1873 Image image = new Image(temporaryImage.getId()).setSone(sone).setCreationTime(System.currentTimeMillis());
1874 album.addImage(image);
1875 synchronized (images) {
1876 images.put(image.getId(), image);
1878 imageInserter.insertImage(temporaryImage, image);
1883 * Deletes the given image. This method will also delete a matching
1886 * @see #deleteTemporaryImage(TemporaryImage)
1888 * The image to delete
1890 public void deleteImage(Image image) {
1891 Validation.begin().isNotNull("Image", image).check().is("Local Sone", isLocalSone(image.getSone())).check();
1892 deleteTemporaryImage(image.getId());
1893 image.getAlbum().removeImage(image);
1894 synchronized (images) {
1895 images.remove(image.getId());
1897 saveSone(image.getSone());
1901 * Creates a new temporary image.
1904 * The MIME type of the temporary image
1906 * The encoded data of the image
1907 * @return The temporary image
1909 public TemporaryImage createTemporaryImage(String mimeType, byte[] imageData) {
1910 TemporaryImage temporaryImage = new TemporaryImage();
1911 temporaryImage.setMimeType(mimeType).setImageData(imageData);
1912 synchronized (temporaryImages) {
1913 temporaryImages.put(temporaryImage.getId(), temporaryImage);
1915 return temporaryImage;
1919 * Deletes the given temporary image.
1921 * @param temporaryImage
1922 * The temporary image to delete
1924 public void deleteTemporaryImage(TemporaryImage temporaryImage) {
1925 Validation.begin().isNotNull("Temporary Image", temporaryImage).check();
1926 deleteTemporaryImage(temporaryImage.getId());
1930 * Deletes the temporary image with the given ID.
1933 * The ID of the temporary image to delete
1935 public void deleteTemporaryImage(String imageId) {
1936 Validation.begin().isNotNull("Temporary Image ID", imageId).check();
1937 synchronized (temporaryImages) {
1938 temporaryImages.remove(imageId);
1940 Image image = getImage(imageId, false);
1941 if (image != null) {
1942 imageInserter.cancelImageInsert(image);
1947 * Notifies the core that the configuration, either of the core or of a
1948 * single local Sone, has changed, and that the configuration should be
1951 public void touchConfiguration() {
1952 lastConfigurationUpdate = System.currentTimeMillis();
1963 public void serviceStart() {
1964 loadConfiguration();
1965 updateChecker.addUpdateListener(this);
1966 updateChecker.start();
1973 public void serviceRun() {
1974 long lastSaved = System.currentTimeMillis();
1975 while (!shouldStop()) {
1977 long now = System.currentTimeMillis();
1978 if (shouldStop() || ((lastConfigurationUpdate > lastSaved) && ((now - lastConfigurationUpdate) > 5000))) {
1979 for (Sone localSone : getLocalSones()) {
1980 saveSone(localSone);
1982 saveConfiguration();
1992 public void serviceStop() {
1993 synchronized (localSones) {
1994 for (SoneInserter soneInserter : soneInserters.values()) {
1995 soneInserter.removeSoneInsertListener(this);
1996 soneInserter.stop();
1999 updateChecker.stop();
2000 updateChecker.removeUpdateListener(this);
2001 soneDownloader.stop();
2009 * Saves the given Sone. This will persist all local settings for the given
2010 * Sone, such as the friends list and similar, private options.
2015 private synchronized void saveSone(Sone sone) {
2016 if (!isLocalSone(sone)) {
2017 logger.log(Level.FINE, "Tried to save non-local Sone: %s", sone);
2020 if (!(sone.getIdentity() instanceof OwnIdentity)) {
2021 logger.log(Level.WARNING, "Local Sone without OwnIdentity found, refusing to save: %s", sone);
2025 logger.log(Level.INFO, "Saving Sone: %s", sone);
2027 /* save Sone into configuration. */
2028 String sonePrefix = "Sone/" + sone.getId();
2029 configuration.getLongValue(sonePrefix + "/Time").setValue(sone.getTime());
2030 configuration.getStringValue(sonePrefix + "/LastInsertFingerprint").setValue(soneInserters.get(sone).getLastInsertFingerprint());
2033 Profile profile = sone.getProfile();
2034 configuration.getStringValue(sonePrefix + "/Profile/FirstName").setValue(profile.getFirstName());
2035 configuration.getStringValue(sonePrefix + "/Profile/MiddleName").setValue(profile.getMiddleName());
2036 configuration.getStringValue(sonePrefix + "/Profile/LastName").setValue(profile.getLastName());
2037 configuration.getIntValue(sonePrefix + "/Profile/BirthDay").setValue(profile.getBirthDay());
2038 configuration.getIntValue(sonePrefix + "/Profile/BirthMonth").setValue(profile.getBirthMonth());
2039 configuration.getIntValue(sonePrefix + "/Profile/BirthYear").setValue(profile.getBirthYear());
2040 configuration.getStringValue(sonePrefix + "/Profile/Avatar").setValue(profile.getAvatar());
2042 /* save profile fields. */
2043 int fieldCounter = 0;
2044 for (Field profileField : profile.getFields()) {
2045 String fieldPrefix = sonePrefix + "/Profile/Fields/" + fieldCounter++;
2046 configuration.getStringValue(fieldPrefix + "/Name").setValue(profileField.getName());
2047 configuration.getStringValue(fieldPrefix + "/Value").setValue(profileField.getValue());
2049 configuration.getStringValue(sonePrefix + "/Profile/Fields/" + fieldCounter + "/Name").setValue(null);
2052 int postCounter = 0;
2053 for (Post post : sone.getPosts()) {
2054 String postPrefix = sonePrefix + "/Posts/" + postCounter++;
2055 configuration.getStringValue(postPrefix + "/ID").setValue(post.getId());
2056 configuration.getStringValue(postPrefix + "/Recipient").setValue((post.getRecipient() != null) ? post.getRecipient().getId() : null);
2057 configuration.getLongValue(postPrefix + "/Time").setValue(post.getTime());
2058 configuration.getStringValue(postPrefix + "/Text").setValue(post.getText());
2060 configuration.getStringValue(sonePrefix + "/Posts/" + postCounter + "/ID").setValue(null);
2063 int replyCounter = 0;
2064 for (PostReply reply : sone.getReplies()) {
2065 String replyPrefix = sonePrefix + "/Replies/" + replyCounter++;
2066 configuration.getStringValue(replyPrefix + "/ID").setValue(reply.getId());
2067 configuration.getStringValue(replyPrefix + "/Post/ID").setValue(reply.getPost().getId());
2068 configuration.getLongValue(replyPrefix + "/Time").setValue(reply.getTime());
2069 configuration.getStringValue(replyPrefix + "/Text").setValue(reply.getText());
2071 configuration.getStringValue(sonePrefix + "/Replies/" + replyCounter + "/ID").setValue(null);
2073 /* save post likes. */
2074 int postLikeCounter = 0;
2075 for (String postId : sone.getLikedPostIds()) {
2076 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter++ + "/ID").setValue(postId);
2078 configuration.getStringValue(sonePrefix + "/Likes/Post/" + postLikeCounter + "/ID").setValue(null);
2080 /* save reply likes. */
2081 int replyLikeCounter = 0;
2082 for (String replyId : sone.getLikedReplyIds()) {
2083 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter++ + "/ID").setValue(replyId);
2085 configuration.getStringValue(sonePrefix + "/Likes/Reply/" + replyLikeCounter + "/ID").setValue(null);
2088 int friendCounter = 0;
2089 for (String friendId : sone.getFriends()) {
2090 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter++ + "/ID").setValue(friendId);
2092 configuration.getStringValue(sonePrefix + "/Friends/" + friendCounter + "/ID").setValue(null);
2094 /* save albums. first, collect in a flat structure, top-level first. */
2095 List<Album> albums = sone.getAllAlbums();
2097 int albumCounter = 0;
2098 for (Album album : albums) {
2099 String albumPrefix = sonePrefix + "/Albums/" + albumCounter++;
2100 configuration.getStringValue(albumPrefix + "/ID").setValue(album.getId());
2101 configuration.getStringValue(albumPrefix + "/Title").setValue(album.getTitle());
2102 configuration.getStringValue(albumPrefix + "/Description").setValue(album.getDescription());
2103 configuration.getStringValue(albumPrefix + "/Parent").setValue(album.getParent() == null ? null : album.getParent().getId());
2104 configuration.getStringValue(albumPrefix + "/AlbumImage").setValue(album.getAlbumImage() == null ? null : album.getAlbumImage().getId());
2106 configuration.getStringValue(sonePrefix + "/Albums/" + albumCounter + "/ID").setValue(null);
2109 int imageCounter = 0;
2110 for (Album album : albums) {
2111 for (Image image : album.getImages()) {
2112 if (!image.isInserted()) {
2115 String imagePrefix = sonePrefix + "/Images/" + imageCounter++;
2116 configuration.getStringValue(imagePrefix + "/ID").setValue(image.getId());
2117 configuration.getStringValue(imagePrefix + "/Album").setValue(album.getId());
2118 configuration.getStringValue(imagePrefix + "/Key").setValue(image.getKey());
2119 configuration.getStringValue(imagePrefix + "/Title").setValue(image.getTitle());
2120 configuration.getStringValue(imagePrefix + "/Description").setValue(image.getDescription());
2121 configuration.getLongValue(imagePrefix + "/CreationTime").setValue(image.getCreationTime());
2122 configuration.getIntValue(imagePrefix + "/Width").setValue(image.getWidth());
2123 configuration.getIntValue(imagePrefix + "/Height").setValue(image.getHeight());
2126 configuration.getStringValue(sonePrefix + "/Images/" + imageCounter + "/ID").setValue(null);
2129 configuration.getBooleanValue(sonePrefix + "/Options/AutoFollow").setValue(sone.getOptions().getBooleanOption("AutoFollow").getReal());
2130 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewSones").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewSones").getReal());
2131 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewPosts").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewPosts").getReal());
2132 configuration.getBooleanValue(sonePrefix + "/Options/ShowNotification/NewReplies").setValue(sone.getOptions().getBooleanOption("ShowNotification/NewReplies").getReal());
2133 configuration.getBooleanValue(sonePrefix + "/Options/EnableSoneInsertNotifications").setValue(sone.getOptions().getBooleanOption("EnableSoneInsertNotifications").getReal());
2134 configuration.getStringValue(sonePrefix + "/Options/ShowCustomAvatars").setValue(sone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").get().name());
2136 configuration.save();
2138 ((OwnIdentity) sone.getIdentity()).setProperty("Sone.LatestEdition", String.valueOf(sone.getLatestEdition()));
2140 logger.log(Level.INFO, "Sone %s saved.", sone);
2141 } catch (ConfigurationException ce1) {
2142 logger.log(Level.WARNING, "Could not save Sone: " + sone, ce1);
2143 } catch (WebOfTrustException wote1) {
2144 logger.log(Level.WARNING, "Could not set WoT property for Sone: " + sone, wote1);
2149 * Saves the current options.
2151 private void saveConfiguration() {
2152 synchronized (configuration) {
2153 if (storingConfiguration) {
2154 logger.log(Level.FINE, "Already storing configuration…");
2157 storingConfiguration = true;
2160 /* store the options first. */
2162 configuration.getIntValue("Option/ConfigurationVersion").setValue(0);
2163 configuration.getIntValue("Option/InsertionDelay").setValue(options.getIntegerOption("InsertionDelay").getReal());
2164 configuration.getIntValue("Option/PostsPerPage").setValue(options.getIntegerOption("PostsPerPage").getReal());
2165 configuration.getIntValue("Option/CharactersPerPost").setValue(options.getIntegerOption("CharactersPerPost").getReal());
2166 configuration.getIntValue("Option/PostCutOffLength").setValue(options.getIntegerOption("PostCutOffLength").getReal());
2167 configuration.getBooleanValue("Option/RequireFullAccess").setValue(options.getBooleanOption("RequireFullAccess").getReal());
2168 configuration.getIntValue("Option/PositiveTrust").setValue(options.getIntegerOption("PositiveTrust").getReal());
2169 configuration.getIntValue("Option/NegativeTrust").setValue(options.getIntegerOption("NegativeTrust").getReal());
2170 configuration.getStringValue("Option/TrustComment").setValue(options.getStringOption("TrustComment").getReal());
2171 configuration.getBooleanValue("Option/ActivateFcpInterface").setValue(options.getBooleanOption("ActivateFcpInterface").getReal());
2172 configuration.getIntValue("Option/FcpFullAccessRequired").setValue(options.getIntegerOption("FcpFullAccessRequired").getReal());
2173 configuration.getBooleanValue("Option/SoneRescueMode").setValue(options.getBooleanOption("SoneRescueMode").getReal());
2174 configuration.getBooleanValue("Option/ClearOnNextRestart").setValue(options.getBooleanOption("ClearOnNextRestart").getReal());
2175 configuration.getBooleanValue("Option/ReallyClearOnNextRestart").setValue(options.getBooleanOption("ReallyClearOnNextRestart").getReal());
2177 /* save known Sones. */
2178 int soneCounter = 0;
2179 synchronized (knownSones) {
2180 for (String knownSoneId : knownSones) {
2181 configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").setValue(knownSoneId);
2183 configuration.getStringValue("KnownSone/" + soneCounter + "/ID").setValue(null);
2186 /* save Sone following times. */
2188 synchronized (soneFollowingTimes) {
2189 for (Entry<Sone, Long> soneFollowingTime : soneFollowingTimes.entrySet()) {
2190 configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(soneFollowingTime.getKey().getId());
2191 configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").setValue(soneFollowingTime.getValue());
2194 configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").setValue(null);
2197 /* save known posts. */
2198 int postCounter = 0;
2199 synchronized (knownPosts) {
2200 for (String knownPostId : knownPosts) {
2201 configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").setValue(knownPostId);
2203 configuration.getStringValue("KnownPosts/" + postCounter + "/ID").setValue(null);
2206 /* save known replies. */
2207 int replyCounter = 0;
2208 synchronized (knownReplies) {
2209 for (String knownReplyId : knownReplies) {
2210 configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").setValue(knownReplyId);
2212 configuration.getStringValue("KnownReplies/" + replyCounter + "/ID").setValue(null);
2215 /* save bookmarked posts. */
2216 int bookmarkedPostCounter = 0;
2217 synchronized (bookmarkedPosts) {
2218 for (String bookmarkedPostId : bookmarkedPosts) {
2219 configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(bookmarkedPostId);
2222 configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").setValue(null);
2225 configuration.save();
2227 } catch (ConfigurationException ce1) {
2228 logger.log(Level.SEVERE, "Could not store configuration!", ce1);
2230 synchronized (configuration) {
2231 storingConfiguration = false;
2237 * Loads the configuration.
2239 @SuppressWarnings("unchecked")
2240 private void loadConfiguration() {
2241 /* create options. */
2242 options.addIntegerOption("InsertionDelay", new DefaultOption<Integer>(60, new IntegerRangeValidator(0, Integer.MAX_VALUE), new OptionWatcher<Integer>() {
2245 public void optionChanged(Option<Integer> option, Integer oldValue, Integer newValue) {
2246 SoneInserter.setInsertionDelay(newValue);
2250 options.addIntegerOption("PostsPerPage", new DefaultOption<Integer>(10, new IntegerRangeValidator(1, Integer.MAX_VALUE)));
2251 options.addIntegerOption("CharactersPerPost", new DefaultOption<Integer>(400, new OrValidator<Integer>(new IntegerRangeValidator(50, Integer.MAX_VALUE), new EqualityValidator<Integer>(-1))));
2252 options.addIntegerOption("PostCutOffLength", new DefaultOption<Integer>(200, new OrValidator<Integer>(new IntegerRangeValidator(50, Integer.MAX_VALUE), new EqualityValidator<Integer>(-1))));
2253 options.addBooleanOption("RequireFullAccess", new DefaultOption<Boolean>(false));
2254 options.addIntegerOption("PositiveTrust", new DefaultOption<Integer>(75, new IntegerRangeValidator(0, 100)));
2255 options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-25, new IntegerRangeValidator(-100, 100)));
2256 options.addStringOption("TrustComment", new DefaultOption<String>("Set from Sone Web Interface"));
2257 options.addBooleanOption("ActivateFcpInterface", new DefaultOption<Boolean>(false, new OptionWatcher<Boolean>() {
2260 @SuppressWarnings("synthetic-access")
2261 public void optionChanged(Option<Boolean> option, Boolean oldValue, Boolean newValue) {
2262 fcpInterface.setActive(newValue);
2265 options.addIntegerOption("FcpFullAccessRequired", new DefaultOption<Integer>(2, new OptionWatcher<Integer>() {
2268 @SuppressWarnings("synthetic-access")
2269 public void optionChanged(Option<Integer> option, Integer oldValue, Integer newValue) {
2270 fcpInterface.setFullAccessRequired(FullAccessRequired.values()[newValue]);
2274 options.addBooleanOption("SoneRescueMode", new DefaultOption<Boolean>(false));
2275 options.addBooleanOption("ClearOnNextRestart", new DefaultOption<Boolean>(false));
2276 options.addBooleanOption("ReallyClearOnNextRestart", new DefaultOption<Boolean>(false));
2278 /* read options from configuration. */
2279 options.getBooleanOption("ClearOnNextRestart").set(configuration.getBooleanValue("Option/ClearOnNextRestart").getValue(null));
2280 options.getBooleanOption("ReallyClearOnNextRestart").set(configuration.getBooleanValue("Option/ReallyClearOnNextRestart").getValue(null));
2281 boolean clearConfiguration = options.getBooleanOption("ClearOnNextRestart").get() && options.getBooleanOption("ReallyClearOnNextRestart").get();
2282 options.getBooleanOption("ClearOnNextRestart").set(null);
2283 options.getBooleanOption("ReallyClearOnNextRestart").set(null);
2284 if (clearConfiguration) {
2285 /* stop loading the configuration. */
2289 loadConfigurationValue("InsertionDelay");
2290 loadConfigurationValue("PostsPerPage");
2291 loadConfigurationValue("CharactersPerPost");
2292 loadConfigurationValue("PostCutOffLength");
2293 options.getBooleanOption("RequireFullAccess").set(configuration.getBooleanValue("Option/RequireFullAccess").getValue(null));
2294 loadConfigurationValue("PositiveTrust");
2295 loadConfigurationValue("NegativeTrust");
2296 options.getStringOption("TrustComment").set(configuration.getStringValue("Option/TrustComment").getValue(null));
2297 options.getBooleanOption("ActivateFcpInterface").set(configuration.getBooleanValue("Option/ActivateFcpInterface").getValue(null));
2298 options.getIntegerOption("FcpFullAccessRequired").set(configuration.getIntValue("Option/FcpFullAccessRequired").getValue(null));
2299 options.getBooleanOption("SoneRescueMode").set(configuration.getBooleanValue("Option/SoneRescueMode").getValue(null));
2301 /* load known Sones. */
2302 int soneCounter = 0;
2304 String knownSoneId = configuration.getStringValue("KnownSone/" + soneCounter++ + "/ID").getValue(null);
2305 if (knownSoneId == null) {
2308 synchronized (knownSones) {
2309 knownSones.add(knownSoneId);
2313 /* load Sone following times. */
2316 String soneId = configuration.getStringValue("SoneFollowingTimes/" + soneCounter + "/Sone").getValue(null);
2317 if (soneId == null) {
2320 long time = configuration.getLongValue("SoneFollowingTimes/" + soneCounter + "/Time").getValue(Long.MAX_VALUE);
2321 Sone followedSone = getSone(soneId);
2322 if (followedSone == null) {
2323 logger.log(Level.WARNING, String.format("Ignoring Sone with invalid ID: %s", soneId));
2325 synchronized (soneFollowingTimes) {
2326 soneFollowingTimes.put(getSone(soneId), time);
2332 /* load known posts. */
2333 int postCounter = 0;
2335 String knownPostId = configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").getValue(null);
2336 if (knownPostId == null) {
2339 synchronized (knownPosts) {
2340 knownPosts.add(knownPostId);
2344 /* load known replies. */
2345 int replyCounter = 0;
2347 String knownReplyId = configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").getValue(null);
2348 if (knownReplyId == null) {
2351 synchronized (knownReplies) {
2352 knownReplies.add(knownReplyId);
2356 /* load bookmarked posts. */
2357 int bookmarkedPostCounter = 0;
2359 String bookmarkedPostId = configuration.getStringValue("Bookmarks/Post/" + bookmarkedPostCounter++ + "/ID").getValue(null);
2360 if (bookmarkedPostId == null) {
2363 synchronized (bookmarkedPosts) {
2364 bookmarkedPosts.add(bookmarkedPostId);
2371 * Loads an {@link Integer} configuration value for the option with the
2372 * given name, logging validation failures.
2375 * The name of the option to load
2377 private void loadConfigurationValue(String optionName) {
2379 options.getIntegerOption(optionName).set(configuration.getIntValue("Option/" + optionName).getValue(null));
2380 } catch (IllegalArgumentException iae1) {
2381 logger.log(Level.WARNING, "Invalid value for " + optionName + " in configuration, using default.");
2386 * Generate a Sone URI from the given URI and latest edition.
2389 * The URI to derive the Sone URI from
2390 * @return The derived URI
2392 private FreenetURI getSoneUri(String uriString) {
2394 FreenetURI uri = new FreenetURI(uriString).setDocName("Sone").setMetaString(new String[0]);
2396 } catch (MalformedURLException mue1) {
2397 logger.log(Level.WARNING, "Could not create Sone URI from URI: " + uriString, mue1);
2403 // INTERFACE IdentityListener
2410 public void ownIdentityAdded(OwnIdentity ownIdentity) {
2411 logger.log(Level.FINEST, "Adding OwnIdentity: " + ownIdentity);
2412 if (ownIdentity.hasContext("Sone")) {
2413 trustedIdentities.put(ownIdentity, Collections.synchronizedSet(new HashSet<Identity>()));
2414 addLocalSone(ownIdentity);
2422 public void ownIdentityRemoved(OwnIdentity ownIdentity) {
2423 logger.log(Level.FINEST, "Removing OwnIdentity: " + ownIdentity);
2424 trustedIdentities.remove(ownIdentity);
2431 public void identityAdded(OwnIdentity ownIdentity, Identity identity) {
2432 logger.log(Level.FINEST, "Adding Identity: " + identity);
2433 trustedIdentities.get(ownIdentity).add(identity);
2434 addRemoteSone(identity);
2441 public void identityUpdated(OwnIdentity ownIdentity, final Identity identity) {
2442 new Thread(new Runnable() {
2445 @SuppressWarnings("synthetic-access")
2447 Sone sone = getRemoteSone(identity.getId(), false);
2448 sone.setIdentity(identity);
2449 sone.setLatestEdition(Numbers.safeParseLong(identity.getProperty("Sone.LatestEdition"), sone.getLatestEdition()));
2450 soneDownloader.addSone(sone);
2451 soneDownloader.fetchSone(sone);
2460 public void identityRemoved(OwnIdentity ownIdentity, Identity identity) {
2461 trustedIdentities.get(ownIdentity).remove(identity);
2462 boolean foundIdentity = false;
2463 for (Entry<OwnIdentity, Set<Identity>> trustedIdentity : trustedIdentities.entrySet()) {
2464 if (trustedIdentity.getKey().equals(ownIdentity)) {
2467 if (trustedIdentity.getValue().contains(identity)) {
2468 foundIdentity = true;
2471 if (foundIdentity) {
2472 /* some local identity still trusts this identity, don’t remove. */
2475 Sone sone = getSone(identity.getId(), false);
2477 /* TODO - we don’t have the Sone anymore. should this happen? */
2480 synchronized (posts) {
2481 synchronized (knownPosts) {
2482 for (Post post : sone.getPosts()) {
2483 posts.remove(post.getId());
2484 coreListenerManager.firePostRemoved(post);
2488 synchronized (replies) {
2489 synchronized (knownReplies) {
2490 for (PostReply reply : sone.getReplies()) {
2491 replies.remove(reply.getId());
2492 coreListenerManager.fireReplyRemoved(reply);
2496 synchronized (remoteSones) {
2497 remoteSones.remove(identity.getId());
2499 coreListenerManager.fireSoneRemoved(sone);
2503 // INTERFACE UpdateListener
2510 public void updateFound(Version version, long releaseTime, long latestEdition) {
2511 coreListenerManager.fireUpdateFound(version, releaseTime, latestEdition);
2515 // INTERFACE ImageInsertListener
2522 public void insertStarted(Sone sone) {
2523 coreListenerManager.fireSoneInserting(sone);
2530 public void insertFinished(Sone sone, long insertDuration) {
2531 coreListenerManager.fireSoneInserted(sone, insertDuration);
2538 public void insertAborted(Sone sone, Throwable cause) {
2539 coreListenerManager.fireSoneInsertAborted(sone, cause);
2543 // SONEINSERTLISTENER METHODS
2550 public void imageInsertStarted(Image image) {
2551 logger.log(Level.WARNING, "Image insert started for " + image);
2552 coreListenerManager.fireImageInsertStarted(image);
2559 public void imageInsertAborted(Image image) {
2560 logger.log(Level.WARNING, "Image insert aborted for " + image);
2561 coreListenerManager.fireImageInsertAborted(image);
2568 public void imageInsertFinished(Image image, FreenetURI key) {
2569 logger.log(Level.WARNING, "Image insert finished for " + image + ": " + key);
2570 image.setKey(key.toString());
2571 deleteTemporaryImage(image.getId());
2572 saveSone(image.getSone());
2573 coreListenerManager.fireImageInsertFinished(image);
2580 public void imageInsertFailed(Image image, Throwable cause) {
2581 logger.log(Level.WARNING, "Image insert failed for " + image, cause);
2582 coreListenerManager.fireImageInsertFailed(image, cause);
2586 * Convenience interface for external classes that want to access the core’s
2589 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
2591 public static class Preferences {
2593 /** The wrapped options. */
2594 private final Options options;
2597 * Creates a new preferences object wrapped around the given options.
2600 * The options to wrap
2602 public Preferences(Options options) {
2603 this.options = options;
2607 * Returns the insertion delay.
2609 * @return The insertion delay
2611 public int getInsertionDelay() {
2612 return options.getIntegerOption("InsertionDelay").get();
2616 * Validates the given insertion delay.
2618 * @param insertionDelay
2619 * The insertion delay to validate
2620 * @return {@code true} if the given insertion delay was valid,
2621 * {@code false} otherwise
2623 public boolean validateInsertionDelay(Integer insertionDelay) {
2624 return options.getIntegerOption("InsertionDelay").validate(insertionDelay);
2628 * Sets the insertion delay
2630 * @param insertionDelay
2631 * The new insertion delay, or {@code null} to restore it to
2633 * @return This preferences
2635 public Preferences setInsertionDelay(Integer insertionDelay) {
2636 options.getIntegerOption("InsertionDelay").set(insertionDelay);
2641 * Returns the number of posts to show per page.
2643 * @return The number of posts to show per page
2645 public int getPostsPerPage() {
2646 return options.getIntegerOption("PostsPerPage").get();
2650 * Validates the number of posts per page.
2652 * @param postsPerPage
2653 * The number of posts per page
2654 * @return {@code true} if the number of posts per page was valid,
2655 * {@code false} otherwise
2657 public boolean validatePostsPerPage(Integer postsPerPage) {
2658 return options.getIntegerOption("PostsPerPage").validate(postsPerPage);
2662 * Sets the number of posts to show per page.
2664 * @param postsPerPage
2665 * The number of posts to show per page
2666 * @return This preferences object
2668 public Preferences setPostsPerPage(Integer postsPerPage) {
2669 options.getIntegerOption("PostsPerPage").set(postsPerPage);
2674 * Returns the number of characters per post, or <code>-1</code> if the
2675 * posts should not be cut off.
2677 * @return The numbers of characters per post
2679 public int getCharactersPerPost() {
2680 return options.getIntegerOption("CharactersPerPost").get();
2684 * Validates the number of characters per post.
2686 * @param charactersPerPost
2687 * The number of characters per post
2688 * @return {@code true} if the number of characters per post was valid,
2689 * {@code false} otherwise
2691 public boolean validateCharactersPerPost(Integer charactersPerPost) {
2692 return options.getIntegerOption("CharactersPerPost").validate(charactersPerPost);
2696 * Sets the number of characters per post.
2698 * @param charactersPerPost
2699 * The number of characters per post, or <code>-1</code> to
2700 * not cut off the posts
2701 * @return This preferences objects
2703 public Preferences setCharactersPerPost(Integer charactersPerPost) {
2704 options.getIntegerOption("CharactersPerPost").set(charactersPerPost);
2709 * Returns the number of characters the shortened post should have.
2711 * @return The number of characters of the snippet
2713 public int getPostCutOffLength() {
2714 return options.getIntegerOption("PostCutOffLength").get();
2718 * Validates the number of characters after which to cut off the post.
2720 * @param postCutOffLength
2721 * The number of characters of the snippet
2722 * @return {@code true} if the number of characters of the snippet is
2723 * valid, {@code false} otherwise
2725 public boolean validatePostCutOffLength(Integer postCutOffLength) {
2726 return options.getIntegerOption("PostCutOffLength").validate(postCutOffLength);
2730 * Sets the number of characters the shortened post should have.
2732 * @param postCutOffLength
2733 * The number of characters of the snippet
2734 * @return This preferences
2736 public Preferences setPostCutOffLength(Integer postCutOffLength) {
2737 options.getIntegerOption("PostCutOffLength").set(postCutOffLength);
2742 * Returns whether Sone requires full access to be even visible.
2744 * @return {@code true} if Sone requires full access, {@code false}
2747 public boolean isRequireFullAccess() {
2748 return options.getBooleanOption("RequireFullAccess").get();
2752 * Sets whether Sone requires full access to be even visible.
2754 * @param requireFullAccess
2755 * {@code true} if Sone requires full access, {@code false}
2758 public void setRequireFullAccess(Boolean requireFullAccess) {
2759 options.getBooleanOption("RequireFullAccess").set(requireFullAccess);
2763 * Returns the positive trust.
2765 * @return The positive trust
2767 public int getPositiveTrust() {
2768 return options.getIntegerOption("PositiveTrust").get();
2772 * Validates the positive trust.
2774 * @param positiveTrust
2775 * The positive trust to validate
2776 * @return {@code true} if the positive trust was valid, {@code false}
2779 public boolean validatePositiveTrust(Integer positiveTrust) {
2780 return options.getIntegerOption("PositiveTrust").validate(positiveTrust);
2784 * Sets the positive trust.
2786 * @param positiveTrust
2787 * The new positive trust, or {@code null} to restore it to
2789 * @return This preferences
2791 public Preferences setPositiveTrust(Integer positiveTrust) {
2792 options.getIntegerOption("PositiveTrust").set(positiveTrust);
2797 * Returns the negative trust.
2799 * @return The negative trust
2801 public int getNegativeTrust() {
2802 return options.getIntegerOption("NegativeTrust").get();
2806 * Validates the negative trust.
2808 * @param negativeTrust
2809 * The negative trust to validate