Remove Identified interface
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Sone.java
1 /*
2  * Sone - Sone.java - Copyright © 2010–2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.data;
19
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;
24
25 import java.util.Collection;
26 import java.util.Collections;
27 import java.util.Comparator;
28 import java.util.List;
29 import java.util.Set;
30
31 import javax.annotation.Nonnull;
32 import javax.annotation.Nullable;
33
34 import net.pterodactylus.sone.freenet.wot.Identity;
35 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
36 import net.pterodactylus.sone.template.SoneAccessor;
37
38 import com.google.common.base.Optional;
39 import freenet.keys.FreenetURI;
40
41 import com.google.common.base.Function;
42 import com.google.common.base.Predicate;
43 import com.google.common.primitives.Ints;
44
45 /**
46  * A Sone defines everything about a user: her profile, her status updates, her
47  * replies, her likes and dislikes, etc.
48  *
49  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
50  */
51 public interface Sone extends Fingerprintable, Comparable<Sone> {
52
53         /**
54          * Enumeration for the possible states of a {@link Sone}.
55          *
56          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
57          */
58         public enum SoneStatus {
59
60                 /** The Sone is unknown, i.e. not yet downloaded. */
61                 unknown,
62
63                 /** The Sone is idle, i.e. not being downloaded or inserted. */
64                 idle,
65
66                 /** The Sone is currently being inserted. */
67                 inserting,
68
69                 /** The Sone is currently being downloaded. */
70                 downloading,
71         }
72
73         /**
74          * The possible values for the “show custom avatars” option.
75          *
76          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
77          */
78         public static enum ShowCustomAvatars {
79
80                 /** Never show custom avatars. */
81                 NEVER,
82
83                 /** Only show custom avatars of followed Sones. */
84                 FOLLOWED,
85
86                 /** Only show custom avatars of Sones you manually trust. */
87                 MANUALLY_TRUSTED,
88
89                 /** Only show custom avatars of automatically trusted Sones. */
90                 TRUSTED,
91
92                 /** Always show custom avatars. */
93                 ALWAYS,
94
95         }
96
97         /** comparator that sorts Sones by their nice name. */
98         public static final Comparator<Sone> NICE_NAME_COMPARATOR = new Comparator<Sone>() {
99
100                 @Override
101                 public int compare(Sone leftSone, Sone rightSone) {
102                         int diff = SoneAccessor.getNiceName(leftSone).compareToIgnoreCase(SoneAccessor.getNiceName(rightSone));
103                         if (diff != 0) {
104                                 return diff;
105                         }
106                         return leftSone.getId().compareToIgnoreCase(rightSone.getId());
107                 }
108
109         };
110
111         /** Comparator that sorts Sones by last activity (least recent active first). */
112         public static final Comparator<Sone> LAST_ACTIVITY_COMPARATOR = new Comparator<Sone>() {
113
114                 @Override
115                 public int compare(Sone firstSone, Sone secondSone) {
116                         return (int) Math.min(Integer.MAX_VALUE, Math.max(Integer.MIN_VALUE, secondSone.getTime() - firstSone.getTime()));
117                 }
118         };
119
120         /** Comparator that sorts Sones by numbers of posts (descending). */
121         public static final Comparator<Sone> POST_COUNT_COMPARATOR = new Comparator<Sone>() {
122
123                 /**
124                  * {@inheritDoc}
125                  */
126                 @Override
127                 public int compare(Sone leftSone, Sone rightSone) {
128                         return (leftSone.getPosts().size() != rightSone.getPosts().size()) ? (rightSone.getPosts().size() - leftSone.getPosts().size()) : (rightSone.getReplies().size() - leftSone.getReplies().size());
129                 }
130         };
131
132         /** Comparator that sorts Sones by number of images (descending). */
133         public static final Comparator<Sone> IMAGE_COUNT_COMPARATOR = new Comparator<Sone>() {
134
135                 /**
136                  * {@inheritDoc}
137                  */
138                 @Override
139                 public int compare(Sone leftSone, Sone rightSone) {
140                         int rightSoneImageCount = from(asList(rightSone.getRootAlbum())).transformAndConcat(FLATTENER).transformAndConcat(IMAGES).size();
141                         int leftSoneImageCount = from(asList(leftSone.getRootAlbum())).transformAndConcat(FLATTENER).transformAndConcat(IMAGES).size();
142                         /* sort descending. */
143                         return Ints.compare(rightSoneImageCount, leftSoneImageCount);
144                 }
145         };
146
147         /** Filter to remove Sones that have not been downloaded. */
148         public static final Predicate<Sone> EMPTY_SONE_FILTER = new Predicate<Sone>() {
149
150                 @Override
151                 public boolean apply(Sone sone) {
152                         return (sone != null) && (sone.getTime() != 0);
153                 }
154         };
155
156         /** Filter that matches all {@link Sone#isLocal() local Sones}. */
157         public static final Predicate<Sone> LOCAL_SONE_FILTER = new Predicate<Sone>() {
158
159                 @Override
160                 public boolean apply(Sone sone) {
161                         return (sone != null) && (sone.getIdentity() instanceof OwnIdentity);
162                 }
163
164         };
165
166         /** Filter that matches Sones that have at least one album. */
167         public static final Predicate<Sone> HAS_ALBUM_FILTER = new Predicate<Sone>() {
168
169                 @Override
170                 public boolean apply(Sone sone) {
171                         return (sone != null) && !sone.getRootAlbum().getAlbums().isEmpty();
172                 }
173         };
174
175         public static final Function<Sone, List<Album>> toAllAlbums = new Function<Sone, List<Album>>() {
176                 @Override
177                 public List<Album> apply(@Nullable Sone sone) {
178                         return (sone == null) ? Collections.<Album>emptyList() : FLATTENER.apply(
179                                         sone.getRootAlbum());
180                 }
181         };
182
183         public static final Function<Sone, List<Image>> toAllImages = new Function<Sone, List<Image>>() {
184                 @Override
185                 public List<Image> apply(@Nullable Sone sone) {
186                         return (sone == null) ? Collections.<Image>emptyList() :
187                                         from(FLATTENER.apply(sone.getRootAlbum()))
188                                                         .transformAndConcat(IMAGES).toList();
189                 }
190         };
191
192         Function<Sone, Collection<Post>> toAllPosts = new Function<Sone, Collection<Post>>() {
193                 @Override
194                 public Collection<Post> apply(@Nullable Sone sone) {
195                         return (sone != null) ? sone.getPosts() : Collections.<Post>emptyList();
196                 }
197         };
198
199         String getId();
200         
201         /**
202          * Returns the identity of this Sone.
203          *
204          * @return The identity of this Sone
205          */
206         Identity getIdentity();
207
208         /**
209          * Returns the name of this Sone.
210          *
211          * @return The name of this Sone
212          */
213         String getName();
214
215         /**
216          * Returns whether this Sone is a local Sone.
217          *
218          * @return {@code true} if this Sone is a local Sone, {@code false} otherwise
219          */
220         boolean isLocal();
221
222         /**
223          * Returns the request URI of this Sone.
224          *
225          * @return The request URI of this Sone
226          */
227         FreenetURI getRequestUri();
228
229         /**
230          * Returns the insert URI of this Sone.
231          *
232          * @return The insert URI of this Sone
233          */
234         FreenetURI getInsertUri();
235
236         /**
237          * Returns the latest edition of this Sone.
238          *
239          * @return The latest edition of this Sone
240          */
241         long getLatestEdition();
242
243         /**
244          * Sets the latest edition of this Sone. If the given latest edition is not
245          * greater than the current latest edition, the latest edition of this Sone is
246          * not changed.
247          *
248          * @param latestEdition
249          *              The latest edition of this Sone
250          */
251         void setLatestEdition(long latestEdition);
252
253         /**
254          * Return the time of the last inserted update of this Sone.
255          *
256          * @return The time of the update (in milliseconds since Jan 1, 1970 UTC)
257          */
258         long getTime();
259
260         /**
261          * Sets the time of the last inserted update of this Sone.
262          *
263          * @param time
264          *              The time of the update (in milliseconds since Jan 1, 1970 UTC)
265          * @return This Sone (for method chaining)
266          */
267         Sone setTime(long time);
268
269         /**
270          * Returns the status of this Sone.
271          *
272          * @return The status of this Sone
273          */
274         SoneStatus getStatus();
275
276         /**
277          * Sets the new status of this Sone.
278          *
279          * @param status
280          *              The new status of this Sone
281          * @return This Sone
282          * @throws IllegalArgumentException
283          *              if {@code status} is {@code null}
284          */
285         Sone setStatus(SoneStatus status);
286
287         /**
288          * Returns a copy of the profile. If you want to update values in the profile
289          * of this Sone, update the values in the returned {@link Profile} and use
290          * {@link #setProfile(Profile)} to change the profile in this Sone.
291          *
292          * @return A copy of the profile
293          */
294         Profile getProfile();
295
296         /**
297          * Sets the profile of this Sone. A copy of the given profile is stored so that
298          * subsequent modifications of the given profile are not reflected in this
299          * Sone!
300          *
301          * @param profile
302          *              The profile to set
303          */
304         void setProfile(Profile profile);
305
306         /**
307          * Returns the client used by this Sone.
308          *
309          * @return The client used by this Sone, or {@code null}
310          */
311         Client getClient();
312
313         /**
314          * Sets the client used by this Sone.
315          *
316          * @param client
317          *              The client used by this Sone, or {@code null}
318          * @return This Sone (for method chaining)
319          */
320         Sone setClient(Client client);
321
322         /**
323          * Returns whether this Sone is known.
324          *
325          * @return {@code true} if this Sone is known, {@code false} otherwise
326          */
327         boolean isKnown();
328
329         /**
330          * Sets whether this Sone is known.
331          *
332          * @param known
333          *              {@code true} if this Sone is known, {@code false} otherwise
334          * @return This Sone
335          */
336         Sone setKnown(boolean known);
337
338         /**
339          * Returns all friend Sones of this Sone.
340          *
341          * @return The friend Sones of this Sone
342          */
343         Collection<String> getFriends();
344
345         /**
346          * Returns whether this Sone has the given Sone as a friend Sone.
347          *
348          * @param friendSoneId
349          *              The ID of the Sone to check for
350          * @return {@code true} if this Sone has the given Sone as a friend, {@code
351          *         false} otherwise
352          */
353         boolean hasFriend(String friendSoneId);
354
355         /**
356          * Returns the list of posts of this Sone, sorted by time, newest first.
357          *
358          * @return All posts of this Sone
359          */
360         List<Post> getPosts();
361
362         /**
363          * Sets all posts of this Sone at once.
364          *
365          * @param posts
366          *              The new (and only) posts of this Sone
367          * @return This Sone (for method chaining)
368          */
369         Sone setPosts(Collection<Post> posts);
370
371         /**
372          * Adds the given post to this Sone. The post will not be added if its {@link
373          * Post#getSone() Sone} is not this Sone.
374          *
375          * @param post
376          *              The post to add
377          */
378         void addPost(Post post);
379
380         /**
381          * Removes the given post from this Sone.
382          *
383          * @param post
384          *              The post to remove
385          */
386         void removePost(Post post);
387
388         /**
389          * Returns all replies this Sone made.
390          *
391          * @return All replies this Sone made
392          */
393         Set<PostReply> getReplies();
394
395         /**
396          * Sets all replies of this Sone at once.
397          *
398          * @param replies
399          *              The new (and only) replies of this Sone
400          * @return This Sone (for method chaining)
401          */
402         Sone setReplies(Collection<PostReply> replies);
403
404         /**
405          * Adds a reply to this Sone. If the given reply was not made by this Sone,
406          * nothing is added to this Sone.
407          *
408          * @param reply
409          *              The reply to add
410          */
411         void addReply(PostReply reply);
412
413         /**
414          * Removes a reply from this Sone.
415          *
416          * @param reply
417          *              The reply to remove
418          */
419         void removeReply(PostReply reply);
420
421         /**
422          * Returns the IDs of all liked posts.
423          *
424          * @return All liked posts’ IDs
425          */
426         Set<String> getLikedPostIds();
427
428         /**
429          * Sets the IDs of all liked posts.
430          *
431          * @param likedPostIds
432          *              All liked posts’ IDs
433          * @return This Sone (for method chaining)
434          */
435         Sone setLikePostIds(Set<String> likedPostIds);
436
437         /**
438          * Checks whether the given post ID is liked by this Sone.
439          *
440          * @param postId
441          *              The ID of the post
442          * @return {@code true} if this Sone likes the given post, {@code false}
443          *         otherwise
444          */
445         boolean isLikedPostId(String postId);
446
447         /**
448          * Adds the given post ID to the list of posts this Sone likes.
449          *
450          * @param postId
451          *              The ID of the post
452          * @return This Sone (for method chaining)
453          */
454         Sone addLikedPostId(String postId);
455
456         /**
457          * Removes the given post ID from the list of posts this Sone likes.
458          *
459          * @param postId
460          *              The ID of the post
461          * @return This Sone (for method chaining)
462          */
463         Sone removeLikedPostId(String postId);
464
465         /**
466          * Returns the IDs of all liked replies.
467          *
468          * @return All liked replies’ IDs
469          */
470         Set<String> getLikedReplyIds();
471
472         /**
473          * Sets the IDs of all liked replies.
474          *
475          * @param likedReplyIds
476          *              All liked replies’ IDs
477          * @return This Sone (for method chaining)
478          */
479         Sone setLikeReplyIds(Set<String> likedReplyIds);
480
481         /**
482          * Checks whether the given reply ID is liked by this Sone.
483          *
484          * @param replyId
485          *              The ID of the reply
486          * @return {@code true} if this Sone likes the given reply, {@code false}
487          *         otherwise
488          */
489         boolean isLikedReplyId(String replyId);
490
491         /**
492          * Adds the given reply ID to the list of replies this Sone likes.
493          *
494          * @param replyId
495          *              The ID of the reply
496          * @return This Sone (for method chaining)
497          */
498         Sone addLikedReplyId(String replyId);
499
500         /**
501          * Removes the given post ID from the list of replies this Sone likes.
502          *
503          * @param replyId
504          *              The ID of the reply
505          * @return This Sone (for method chaining)
506          */
507         Sone removeLikedReplyId(String replyId);
508
509         /**
510          * Returns the root album that contains all visible albums of this Sone.
511          *
512          * @return The root album of this Sone
513          */
514         Album getRootAlbum();
515         Optional<Image> getImageByInternalId(final String internalId);
516
517         /**
518          * Returns Sone-specific options.
519          *
520          * @return The options of this Sone
521          */
522         SoneOptions getOptions();
523
524         /**
525          * Sets the options of this Sone.
526          *
527          * @param options
528          *              The options of this Sone
529          */
530         /* TODO - remove this method again, maybe add an option provider */
531         void setOptions(SoneOptions options);
532
533 }