eb2fc6ea78847fcd791863a12c0d042aee5ab1f3
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / SoneImpl.java
1 /*
2  * Sone - SoneImpl.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.impl;
19
20 import static com.google.common.base.Preconditions.checkNotNull;
21 import static java.lang.String.format;
22 import static java.util.logging.Logger.getLogger;
23
24 import java.net.MalformedURLException;
25 import java.util.ArrayList;
26 import java.util.Collection;
27 import java.util.Collections;
28 import java.util.HashSet;
29 import java.util.List;
30 import java.util.Set;
31 import java.util.concurrent.CopyOnWriteArraySet;
32 import java.util.logging.Level;
33 import java.util.logging.Logger;
34
35 import net.pterodactylus.sone.data.Album;
36 import net.pterodactylus.sone.data.Client;
37 import net.pterodactylus.sone.data.LocalSone;
38 import net.pterodactylus.sone.data.Post;
39 import net.pterodactylus.sone.data.PostReply;
40 import net.pterodactylus.sone.data.Profile;
41 import net.pterodactylus.sone.data.Reply;
42 import net.pterodactylus.sone.data.Sone;
43 import net.pterodactylus.sone.data.SoneOptions;
44 import net.pterodactylus.sone.data.SoneOptions.DefaultSoneOptions;
45 import net.pterodactylus.sone.database.Database;
46 import net.pterodactylus.sone.freenet.wot.Identity;
47 import net.pterodactylus.sone.freenet.wot.OwnIdentity;
48
49 import freenet.keys.FreenetURI;
50
51 import com.google.common.collect.FluentIterable;
52 import com.google.common.hash.Hasher;
53 import com.google.common.hash.Hashing;
54
55 /**
56  * {@link Sone} implementation.
57  * <p/>
58  * Operations that modify the Sone need to synchronize on the Sone in question.
59  *
60  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
61  */
62 public class SoneImpl implements LocalSone {
63
64         /** The logger. */
65         private static final Logger logger = getLogger("Sone.Data");
66
67         /** The database. */
68         private final Database database;
69
70         /** The ID of this Sone. */
71         private final String id;
72
73         /** Whether the Sone is local. */
74         private final boolean local;
75
76         /** The identity of this Sone. */
77         private final Identity identity;
78
79         /** The latest edition of the Sone. */
80         private volatile long latestEdition;
81
82         /** The time of the last inserted update. */
83         private final long time;
84
85         /** The status of this Sone. */
86         private volatile SoneStatus status = SoneStatus.unknown;
87
88         /** The profile of this Sone. */
89         private volatile Profile profile = new Profile(this);
90
91         /** The client used by the Sone. */
92         private final Client client;
93
94         /** Whether this Sone is known. */
95         private volatile boolean known;
96
97         /** All posts. */
98         private final Collection<Post> posts = new HashSet<Post>();
99
100         /** All replies. */
101         private final Set<PostReply> replies = new CopyOnWriteArraySet<PostReply>();
102
103         /** The IDs of all liked posts. */
104         private final Set<String> likedPostIds = new CopyOnWriteArraySet<String>();
105
106         /** The IDs of all liked replies. */
107         private final Set<String> likedReplyIds = new CopyOnWriteArraySet<String>();
108
109         /** The root album containing all albums. */
110         private final Album rootAlbum = new AlbumImpl(this);
111
112         /** Sone-specific options. */
113         private SoneOptions options = new DefaultSoneOptions();
114
115         /**
116          * Creates a new Sone.
117          *
118          * @param database The database
119          * @param identity
120          *              The identity of the Sone
121          * @param local
122          *              {@code true} if the Sone is a local Sone, {@code false} otherwise
123          */
124         public SoneImpl(Database database, Identity identity, boolean local, long time, Client client, Collection<Post> posts) {
125                 this.database = database;
126                 this.id = identity.getId();
127                 this.identity = identity;
128                 this.local = local;
129                 this.time = time;
130                 this.client = client;
131                 this.posts.addAll(posts);
132         }
133
134         //
135         // ACCESSORS
136         //
137
138         /**
139          * Returns the identity of this Sone.
140          *
141          * @return The identity of this Sone
142          */
143         public String getId() {
144                 return id;
145         }
146
147         /**
148          * Returns the identity of this Sone.
149          *
150          * @return The identity of this Sone
151          */
152         public Identity getIdentity() {
153                 return identity;
154         }
155
156         /**
157          * Returns the name of this Sone.
158          *
159          * @return The name of this Sone
160          */
161         public String getName() {
162                 return (identity != null) ? identity.getNickname() : null;
163         }
164
165         /**
166          * Returns whether this Sone is a local Sone.
167          *
168          * @return {@code true} if this Sone is a local Sone, {@code false} otherwise
169          */
170         public boolean isLocal() {
171                 return local;
172         }
173
174         /**
175          * Returns the request URI of this Sone.
176          *
177          * @return The request URI of this Sone
178          */
179         public FreenetURI getRequestUri() {
180                 try {
181                         return new FreenetURI(getIdentity().getRequestUri())
182                                         .setKeyType("USK")
183                                         .setDocName("Sone")
184                                         .setMetaString(new String[0])
185                                         .setSuggestedEdition(latestEdition);
186                 } catch (MalformedURLException e) {
187                         throw new IllegalStateException(
188                                         format("Identity %s's request URI is incorrect.",
189                                                         getIdentity()), e);
190                 }
191         }
192
193         /**
194          * Returns the insert URI of this Sone.
195          *
196          * @return The insert URI of this Sone
197          */
198         public FreenetURI getInsertUri() {
199                 if (!isLocal()) {
200                         return null;
201                 }
202                 try {
203                         return new FreenetURI(((OwnIdentity) getIdentity()).getInsertUri())
204                                         .setDocName("Sone")
205                                         .setMetaString(new String[0])
206                                         .setSuggestedEdition(latestEdition);
207                 } catch (MalformedURLException e) {
208                         throw new IllegalStateException(format("Own identity %s's insert URI is incorrect.", getIdentity()), e);
209                 }
210         }
211
212         /**
213          * Returns the latest edition of this Sone.
214          *
215          * @return The latest edition of this Sone
216          */
217         public long getLatestEdition() {
218                 return latestEdition;
219         }
220
221         /**
222          * Sets the latest edition of this Sone. If the given latest edition is not
223          * greater than the current latest edition, the latest edition of this Sone is
224          * not changed.
225          *
226          * @param latestEdition
227          *              The latest edition of this Sone
228          */
229         public void setLatestEdition(long latestEdition) {
230                 if (!(latestEdition > this.latestEdition)) {
231                         logger.log(Level.FINE, String.format("New latest edition %d is not greater than current latest edition %d!", latestEdition, this.latestEdition));
232                         return;
233                 }
234                 this.latestEdition = latestEdition;
235         }
236
237         /**
238          * Return the time of the last inserted update of this Sone.
239          *
240          * @return The time of the update (in milliseconds since Jan 1, 1970 UTC)
241          */
242         public long getTime() {
243                 return time;
244         }
245
246         /**
247          * Returns the status of this Sone.
248          *
249          * @return The status of this Sone
250          */
251         public SoneStatus getStatus() {
252                 return status;
253         }
254
255         /**
256          * Sets the new status of this Sone.
257          *
258          * @param status
259          *              The new status of this Sone
260          * @return This Sone
261          * @throws IllegalArgumentException
262          *              if {@code status} is {@code null}
263          */
264         public Sone setStatus(SoneStatus status) {
265                 this.status = checkNotNull(status, "status must not be null");
266                 return this;
267         }
268
269         /**
270          * Returns a copy of the profile. If you want to update values in the profile
271          * of this Sone, update the values in the returned {@link Profile} and use
272          * {@link #setProfile(Profile)} to change the profile in this Sone.
273          *
274          * @return A copy of the profile
275          */
276         public Profile getProfile() {
277                 return new Profile(profile);
278         }
279
280         /**
281          * Sets the profile of this Sone. A copy of the given profile is stored so that
282          * subsequent modifications of the given profile are not reflected in this
283          * Sone!
284          *
285          * @param profile
286          *              The profile to set
287          */
288         public void setProfile(Profile profile) {
289                 this.profile = new Profile(profile);
290         }
291
292         /**
293          * Returns the client used by this Sone.
294          *
295          * @return The client used by this Sone, or {@code null}
296          */
297         public Client getClient() {
298                 return client;
299         }
300
301         /**
302          * Sets the client used by this Sone.
303          *
304          * @param client
305          *              The client used by this Sone, or {@code null}
306          * @return This Sone (for method chaining)
307          */
308         public Sone setClient(Client client) {
309                 return this;
310         }
311
312         /**
313          * Returns whether this Sone is known.
314          *
315          * @return {@code true} if this Sone is known, {@code false} otherwise
316          */
317         public boolean isKnown() {
318                 return known;
319         }
320
321         /**
322          * Sets whether this Sone is known.
323          *
324          * @param known
325          *              {@code true} if this Sone is known, {@code false} otherwise
326          * @return This Sone
327          */
328         public Sone setKnown(boolean known) {
329                 this.known = known;
330                 return this;
331         }
332
333         /**
334          * Returns all friend Sones of this Sone.
335          *
336          * @return The friend Sones of this Sone
337          */
338         public Collection<String> getFriends() {
339                 return database.getFriends(this);
340         }
341
342         /**
343          * Returns whether this Sone has the given Sone as a friend Sone.
344          *
345          * @param friendSoneId
346          *              The ID of the Sone to check for
347          * @return {@code true} if this Sone has the given Sone as a friend, {@code
348          *         false} otherwise
349          */
350         public boolean hasFriend(String friendSoneId) {
351                 return database.isFriend(this, friendSoneId);
352         }
353
354         /**
355          * Returns the list of posts of this Sone, sorted by time, newest first.
356          *
357          * @return All posts of this Sone
358          */
359         public List<Post> getPosts() {
360                 synchronized (this) {
361                         return FluentIterable.from(posts).toSortedList(Post.TIME_COMPARATOR);
362                 }
363         }
364
365         /**
366          * Adds the given post to this Sone. The post will not be added if its {@link
367          * Post#getSone() Sone} is not this Sone.
368          *
369          * @param post
370          *              The post to add
371          */
372         public void addPost(Post post) {
373                 if (post.getSone().equals(this) && posts.add(post)) {
374                         logger.log(Level.FINEST, String.format("Adding %s to “%s”.", post, getName()));
375                 }
376         }
377
378         /**
379          * Removes the given post from this Sone.
380          *
381          * @param post
382          *              The post to remove
383          */
384         public void removePost(Post post) {
385                 if (post.getSone().equals(this)) {
386                         posts.remove(post);
387                 }
388         }
389
390         /**
391          * Returns all replies this Sone made.
392          *
393          * @return All replies this Sone made
394          */
395         public Set<PostReply> getReplies() {
396                 return Collections.unmodifiableSet(replies);
397         }
398
399         /**
400          * Sets all replies of this Sone at once.
401          *
402          * @param replies
403          *              The new (and only) replies of this Sone
404          * @return This Sone (for method chaining)
405          */
406         public Sone setReplies(Collection<PostReply> replies) {
407                 this.replies.clear();
408                 this.replies.addAll(replies);
409                 return this;
410         }
411
412         /**
413          * Adds a reply to this Sone. If the given reply was not made by this Sone,
414          * nothing is added to this Sone.
415          *
416          * @param reply
417          *              The reply to add
418          */
419         public void addReply(PostReply reply) {
420                 if (reply.getSone().equals(this)) {
421                         replies.add(reply);
422                 }
423         }
424
425         /**
426          * Removes a reply from this Sone.
427          *
428          * @param reply
429          *              The reply to remove
430          */
431         public void removeReply(PostReply reply) {
432                 if (reply.getSone().equals(this)) {
433                         replies.remove(reply);
434                 }
435         }
436
437         /**
438          * Returns the IDs of all liked posts.
439          *
440          * @return All liked posts’ IDs
441          */
442         public Set<String> getLikedPostIds() {
443                 return Collections.unmodifiableSet(likedPostIds);
444         }
445
446         /**
447          * Sets the IDs of all liked posts.
448          *
449          * @param likedPostIds
450          *              All liked posts’ IDs
451          * @return This Sone (for method chaining)
452          */
453         public Sone setLikePostIds(Set<String> likedPostIds) {
454                 this.likedPostIds.clear();
455                 this.likedPostIds.addAll(likedPostIds);
456                 return this;
457         }
458
459         /**
460          * Checks whether the given post ID is liked by this Sone.
461          *
462          * @param postId
463          *              The ID of the post
464          * @return {@code true} if this Sone likes the given post, {@code false}
465          *         otherwise
466          */
467         public boolean isLikedPostId(String postId) {
468                 return likedPostIds.contains(postId);
469         }
470
471         /**
472          * Adds the given post ID to the list of posts this Sone likes.
473          *
474          * @param postId
475          *              The ID of the post
476          * @return This Sone (for method chaining)
477          */
478         public Sone addLikedPostId(String postId) {
479                 likedPostIds.add(postId);
480                 return this;
481         }
482
483         /**
484          * Removes the given post ID from the list of posts this Sone likes.
485          *
486          * @param postId
487          *              The ID of the post
488          * @return This Sone (for method chaining)
489          */
490         public Sone removeLikedPostId(String postId) {
491                 likedPostIds.remove(postId);
492                 return this;
493         }
494
495         /**
496          * Returns the IDs of all liked replies.
497          *
498          * @return All liked replies’ IDs
499          */
500         public Set<String> getLikedReplyIds() {
501                 return Collections.unmodifiableSet(likedReplyIds);
502         }
503
504         /**
505          * Sets the IDs of all liked replies.
506          *
507          * @param likedReplyIds
508          *              All liked replies’ IDs
509          * @return This Sone (for method chaining)
510          */
511         public Sone setLikeReplyIds(Set<String> likedReplyIds) {
512                 this.likedReplyIds.clear();
513                 this.likedReplyIds.addAll(likedReplyIds);
514                 return this;
515         }
516
517         /**
518          * Checks whether the given reply ID is liked by this Sone.
519          *
520          * @param replyId
521          *              The ID of the reply
522          * @return {@code true} if this Sone likes the given reply, {@code false}
523          *         otherwise
524          */
525         public boolean isLikedReplyId(String replyId) {
526                 return likedReplyIds.contains(replyId);
527         }
528
529         /**
530          * Adds the given reply ID to the list of replies this Sone likes.
531          *
532          * @param replyId
533          *              The ID of the reply
534          * @return This Sone (for method chaining)
535          */
536         public Sone addLikedReplyId(String replyId) {
537                 likedReplyIds.add(replyId);
538                 return this;
539         }
540
541         /**
542          * Removes the given post ID from the list of replies this Sone likes.
543          *
544          * @param replyId
545          *              The ID of the reply
546          * @return This Sone (for method chaining)
547          */
548         public Sone removeLikedReplyId(String replyId) {
549                 likedReplyIds.remove(replyId);
550                 return this;
551         }
552
553         /**
554          * Returns the root album that contains all visible albums of this Sone.
555          *
556          * @return The root album of this Sone
557          */
558         public Album getRootAlbum() {
559                 return rootAlbum;
560         }
561
562         /**
563          * Returns Sone-specific options.
564          *
565          * @return The options of this Sone
566          */
567         public SoneOptions getOptions() {
568                 return options;
569         }
570
571         /**
572          * Sets the options of this Sone.
573          *
574          * @param options
575          *              The options of this Sone
576          */
577         /* TODO - remove this method again, maybe add an option provider */
578         public void setOptions(SoneOptions options) {
579                 this.options = options;
580         }
581
582         //
583         // FINGERPRINTABLE METHODS
584         //
585
586         /** {@inheritDoc} */
587         @Override
588         public synchronized String getFingerprint() {
589                 Hasher hash = Hashing.sha256().newHasher();
590                 hash.putString(profile.getFingerprint());
591
592                 hash.putString("Posts(");
593                 for (Post post : getPosts()) {
594                         hash.putString("Post(").putString(post.getId()).putString(")");
595                 }
596                 hash.putString(")");
597
598                 List<PostReply> replies = new ArrayList<PostReply>(getReplies());
599                 Collections.sort(replies, Reply.TIME_COMPARATOR);
600                 hash.putString("Replies(");
601                 for (PostReply reply : replies) {
602                         hash.putString("Reply(").putString(reply.getId()).putString(")");
603                 }
604                 hash.putString(")");
605
606                 List<String> likedPostIds = new ArrayList<String>(getLikedPostIds());
607                 Collections.sort(likedPostIds);
608                 hash.putString("LikedPosts(");
609                 for (String likedPostId : likedPostIds) {
610                         hash.putString("Post(").putString(likedPostId).putString(")");
611                 }
612                 hash.putString(")");
613
614                 List<String> likedReplyIds = new ArrayList<String>(getLikedReplyIds());
615                 Collections.sort(likedReplyIds);
616                 hash.putString("LikedReplies(");
617                 for (String likedReplyId : likedReplyIds) {
618                         hash.putString("Reply(").putString(likedReplyId).putString(")");
619                 }
620                 hash.putString(")");
621
622                 hash.putString("Albums(");
623                 for (Album album : rootAlbum.getAlbums()) {
624                         if (!Album.NOT_EMPTY.apply(album)) {
625                                 continue;
626                         }
627                         hash.putString(album.getFingerprint());
628                 }
629                 hash.putString(")");
630
631                 return hash.hash().toString();
632         }
633
634         //
635         // INTERFACE Comparable<Sone>
636         //
637
638         /** {@inheritDoc} */
639         @Override
640         public int compareTo(Sone sone) {
641                 return NICE_NAME_COMPARATOR.compare(this, sone);
642         }
643
644         //
645         // OBJECT METHODS
646         //
647
648         /** {@inheritDoc} */
649         @Override
650         public int hashCode() {
651                 return id.hashCode();
652         }
653
654         /** {@inheritDoc} */
655         @Override
656         public boolean equals(Object object) {
657                 if (!(object instanceof Sone)) {
658                         return false;
659                 }
660                 return ((Sone) object).getId().equals(id);
661         }
662
663         /** {@inheritDoc} */
664         @Override
665         public String toString() {
666                 return getClass().getName() + "[identity=" + identity + ",posts(" + posts.size() + "),replies(" + replies.size() + "),albums(" + getRootAlbum().getAlbums().size() + ")]";
667         }
668
669 }