2 * Sone - Sone.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.data;
20 import static com.google.common.collect.FluentIterable.from;
21 import static java.util.Arrays.asList;
22 import static net.pterodactylus.sone.data.Album.FLATTENER;
23 import static net.pterodactylus.sone.data.Album.IMAGES;
25 import java.util.Collection;
26 import java.util.Collections;
27 import java.util.Comparator;
28 import java.util.List;
31 import javax.annotation.Nonnull;
32 import javax.annotation.Nullable;
34 import net.pterodactylus.sone.freenet.wot.Identity;
35 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
36 import net.pterodactylus.sone.template.SoneAccessor;
38 import freenet.keys.FreenetURI;
40 import com.google.common.base.Function;
41 import com.google.common.base.Predicate;
42 import com.google.common.primitives.Ints;
45 * A Sone defines everything about a user: her profile, her status updates, her
46 * replies, her likes and dislikes, etc.
48 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
50 public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
53 * Enumeration for the possible states of a {@link Sone}.
55 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
57 public enum SoneStatus {
59 /** The Sone is unknown, i.e. not yet downloaded. */
62 /** The Sone is idle, i.e. not being downloaded or inserted. */
65 /** The Sone is currently being inserted. */
68 /** The Sone is currently being downloaded. */
73 * The possible values for the “show custom avatars” option.
75 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
77 public static enum ShowCustomAvatars {
79 /** Never show custom avatars. */
82 /** Only show custom avatars of followed Sones. */
85 /** Only show custom avatars of Sones you manually trust. */
88 /** Only show custom avatars of automatically trusted Sones. */
91 /** Always show custom avatars. */
96 /** comparator that sorts Sones by their nice name. */
97 public static final Comparator<Sone> NICE_NAME_COMPARATOR = new Comparator<Sone>() {
100 public int compare(Sone leftSone, Sone rightSone) {
101 int diff = SoneAccessor.getNiceName(leftSone).compareToIgnoreCase(SoneAccessor.getNiceName(rightSone));
105 return leftSone.getId().compareToIgnoreCase(rightSone.getId());
110 /** Comparator that sorts Sones by last activity (least recent active first). */
111 public static final Comparator<Sone> LAST_ACTIVITY_COMPARATOR = new Comparator<Sone>() {
114 public int compare(Sone firstSone, Sone secondSone) {
115 return (int) Math.min(Integer.MAX_VALUE, Math.max(Integer.MIN_VALUE, secondSone.getTime() - firstSone.getTime()));
119 /** Comparator that sorts Sones by numbers of posts (descending). */
120 public static final Comparator<Sone> POST_COUNT_COMPARATOR = new Comparator<Sone>() {
126 public int compare(Sone leftSone, Sone rightSone) {
127 return (leftSone.getPosts().size() != rightSone.getPosts().size()) ? (rightSone.getPosts().size() - leftSone.getPosts().size()) : (rightSone.getReplies().size() - leftSone.getReplies().size());
131 /** Comparator that sorts Sones by number of images (descending). */
132 public static final Comparator<Sone> IMAGE_COUNT_COMPARATOR = new Comparator<Sone>() {
138 public int compare(Sone leftSone, Sone rightSone) {
139 int rightSoneImageCount = from(asList(rightSone.getRootAlbum())).transformAndConcat(FLATTENER).transformAndConcat(IMAGES).size();
140 int leftSoneImageCount = from(asList(leftSone.getRootAlbum())).transformAndConcat(FLATTENER).transformAndConcat(IMAGES).size();
141 /* sort descending. */
142 return Ints.compare(rightSoneImageCount, leftSoneImageCount);
146 /** Filter to remove Sones that have not been downloaded. */
147 public static final Predicate<Sone> EMPTY_SONE_FILTER = new Predicate<Sone>() {
150 public boolean apply(Sone sone) {
151 return (sone != null) && (sone.getTime() != 0);
155 /** Filter that matches all {@link Sone#isLocal() local Sones}. */
156 public static final Predicate<Sone> LOCAL_SONE_FILTER = new Predicate<Sone>() {
159 public boolean apply(Sone sone) {
160 return (sone != null) && (sone.getIdentity() instanceof OwnIdentity);
165 /** Filter that matches Sones that have at least one album. */
166 public static final Predicate<Sone> HAS_ALBUM_FILTER = new Predicate<Sone>() {
169 public boolean apply(Sone sone) {
170 return (sone != null) && !sone.getRootAlbum().getAlbums().isEmpty();
174 public static final Function<Sone, String> toSoneXmlUri =
175 new Function<Sone, String>() {
178 public String apply(@Nullable Sone input) {
179 return input.getRequestUri()
180 .setMetaString(new String[] { "sone.xml" })
185 public static final Function<Sone, List<Album>> toAllAlbums = new Function<Sone, List<Album>>() {
187 public List<Album> apply(@Nullable Sone sone) {
188 return (sone == null) ? Collections.<Album>emptyList() : FLATTENER.apply(
189 sone.getRootAlbum());
193 public static final Function<Sone, List<Image>> toAllImages = new Function<Sone, List<Image>>() {
195 public List<Image> apply(@Nullable Sone sone) {
196 return (sone == null) ? Collections.<Image>emptyList() :
197 from(FLATTENER.apply(sone.getRootAlbum()))
198 .transformAndConcat(IMAGES).toList();
203 * Returns the identity of this Sone.
205 * @return The identity of this Sone
207 Identity getIdentity();
210 * Returns the name of this Sone.
212 * @return The name of this Sone
217 * Returns whether this Sone is a local Sone.
219 * @return {@code true} if this Sone is a local Sone, {@code false} otherwise
224 * Returns the request URI of this Sone.
226 * @return The request URI of this Sone
228 FreenetURI getRequestUri();
231 * Returns the insert URI of this Sone.
233 * @return The insert URI of this Sone
235 FreenetURI getInsertUri();
238 * Returns the latest edition of this Sone.
240 * @return The latest edition of this Sone
242 long getLatestEdition();
245 * Sets the latest edition of this Sone. If the given latest edition is not
246 * greater than the current latest edition, the latest edition of this Sone is
249 * @param latestEdition
250 * The latest edition of this Sone
252 void setLatestEdition(long latestEdition);
255 * Return the time of the last inserted update of this Sone.
257 * @return The time of the update (in milliseconds since Jan 1, 1970 UTC)
262 * Returns the status of this Sone.
264 * @return The status of this Sone
266 SoneStatus getStatus();
269 * Sets the new status of this Sone.
272 * The new status of this Sone
274 * @throws IllegalArgumentException
275 * if {@code status} is {@code null}
277 Sone setStatus(SoneStatus status);
280 * Returns a copy of the profile. If you want to update values in the profile
281 * of this Sone, update the values in the returned {@link Profile} and use
282 * {@link #setProfile(Profile)} to change the profile in this Sone.
284 * @return A copy of the profile
286 Profile getProfile();
289 * Sets the profile of this Sone. A copy of the given profile is stored so that
290 * subsequent modifications of the given profile are not reflected in this
296 void setProfile(Profile profile);
299 * Returns the client used by this Sone.
301 * @return The client used by this Sone, or {@code null}
306 * Returns whether this Sone is known.
308 * @return {@code true} if this Sone is known, {@code false} otherwise
313 * Sets whether this Sone is known.
316 * {@code true} if this Sone is known, {@code false} otherwise
319 Sone setKnown(boolean known);
322 * Returns all friend Sones of this Sone.
324 * @return The friend Sones of this Sone
326 Collection<String> getFriends();
329 * Returns whether this Sone has the given Sone as a friend Sone.
331 * @param friendSoneId
332 * The ID of the Sone to check for
333 * @return {@code true} if this Sone has the given Sone as a friend, {@code
336 boolean hasFriend(String friendSoneId);
339 * Returns the list of posts of this Sone, sorted by time, newest first.
341 * @return All posts of this Sone
343 List<Post> getPosts();
346 * Sets all posts of this Sone at once.
349 * The new (and only) posts of this Sone
350 * @return This Sone (for method chaining)
352 Sone setPosts(Collection<Post> posts);
355 * Adds the given post to this Sone. The post will not be added if its {@link
356 * Post#getSone() Sone} is not this Sone.
361 void addPost(Post post);
364 * Removes the given post from this Sone.
369 void removePost(Post post);
372 * Returns all replies this Sone made.
374 * @return All replies this Sone made
376 Set<PostReply> getReplies();
379 * Sets all replies of this Sone at once.
382 * The new (and only) replies of this Sone
383 * @return This Sone (for method chaining)
385 Sone setReplies(Collection<PostReply> replies);
388 * Adds a reply to this Sone. If the given reply was not made by this Sone,
389 * nothing is added to this Sone.
394 void addReply(PostReply reply);
397 * Removes a reply from this Sone.
400 * The reply to remove
402 void removeReply(PostReply reply);
405 * Returns the IDs of all liked posts.
407 * @return All liked posts’ IDs
409 Set<String> getLikedPostIds();
412 * Sets the IDs of all liked posts.
414 * @param likedPostIds
415 * All liked posts’ IDs
416 * @return This Sone (for method chaining)
418 Sone setLikePostIds(Set<String> likedPostIds);
421 * Checks whether the given post ID is liked by this Sone.
425 * @return {@code true} if this Sone likes the given post, {@code false}
428 boolean isLikedPostId(String postId);
431 * Adds the given post ID to the list of posts this Sone likes.
435 * @return This Sone (for method chaining)
437 Sone addLikedPostId(String postId);
440 * Removes the given post ID from the list of posts this Sone likes.
444 * @return This Sone (for method chaining)
446 Sone removeLikedPostId(String postId);
449 * Returns the IDs of all liked replies.
451 * @return All liked replies’ IDs
453 Set<String> getLikedReplyIds();
456 * Sets the IDs of all liked replies.
458 * @param likedReplyIds
459 * All liked replies’ IDs
460 * @return This Sone (for method chaining)
462 Sone setLikeReplyIds(Set<String> likedReplyIds);
465 * Checks whether the given reply ID is liked by this Sone.
468 * The ID of the reply
469 * @return {@code true} if this Sone likes the given reply, {@code false}
472 boolean isLikedReplyId(String replyId);
475 * Adds the given reply ID to the list of replies this Sone likes.
478 * The ID of the reply
479 * @return This Sone (for method chaining)
481 Sone addLikedReplyId(String replyId);
484 * Removes the given post ID from the list of replies this Sone likes.
487 * The ID of the reply
488 * @return This Sone (for method chaining)
490 Sone removeLikedReplyId(String replyId);
493 * Returns the root album that contains all visible albums of this Sone.
495 * @return The root album of this Sone
497 Album getRootAlbum();
500 * Returns Sone-specific options.
502 * @return The options of this Sone
504 SoneOptions getOptions();
507 * Sets the options of this Sone.
510 * The options of this Sone
512 /* TODO - remove this method again, maybe add an option provider */
513 void setOptions(SoneOptions options);