X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FPost.java;h=c8a3229c707eb61f33ae65608a68979f3e256b41;hb=d429bc07de2c62921323f300024c2df348ae71cf;hp=9cf986f2365e27fb1b7f4c567e722bbf25ac5368;hpb=4a28e7fad7083a11fb676c6dfe5da96eac358dca;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Post.java b/src/main/java/net/pterodactylus/sone/data/Post.java index 9cf986f..c8a3229 100644 --- a/src/main/java/net/pterodactylus/sone/data/Post.java +++ b/src/main/java/net/pterodactylus/sone/data/Post.java @@ -17,6 +17,14 @@ package net.pterodactylus.sone.data; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.UUID; + /** * A post is a short message that a user writes in his Sone to let other users * know what is going on. @@ -25,25 +33,110 @@ package net.pterodactylus.sone.data; */ public class Post { + /** The GUID of the post. */ + private final UUID id; + + /** The Sone this post belongs to. */ + private Sone sone; + /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */ - private final long time; + private long time; /** The text of the post. */ - private final String text; + private String text; + + /** The replies that have been loaded for this post. */ + private final Set replies = new HashSet(); + + /** + * Creates a new post. + * + * @param id + * The ID of the post + */ + public Post(String id) { + this(id, null, 0, null); + } + + /** + * Creates a new post. + * + * @param sone + * The Sone this post belongs to + * @param text + * The text of the post + */ + public Post(Sone sone, String text) { + this(sone, System.currentTimeMillis(), text); + } + + /** + * Creates a new post. + * + * @param sone + * The Sone this post belongs to + * @param time + * The time of the post (in milliseconds since Jan 1, 1970 UTC) + * @param text + * The text of the post + */ + public Post(Sone sone, long time, String text) { + this(UUID.randomUUID().toString(), sone, time, text); + } /** * Creates a new post. * + * @param id + * The ID of the post + * @param sone + * The Sone this post belongs to * @param time * The time of the post (in milliseconds since Jan 1, 1970 UTC) * @param text * The text of the post */ - public Post(long time, String text) { + public Post(String id, Sone sone, long time, String text) { + this.id = UUID.fromString(id); + this.sone = sone; this.time = time; this.text = text; } + // + // ACCESSORS + // + + /** + * Returns the ID of the post. + * + * @return The ID of the post + */ + public String getId() { + return id.toString(); + } + + /** + * Returns the Sone this post belongs to. + * + * @return The Sone of this post + */ + public Sone getSone() { + return sone; + } + + /** + * Sets the Sone of this post. + * + * @param sone + * The Sone of this post + * @return This post (for method chaining) + */ + public Post setSone(Sone sone) { + this.sone = sone; + return this; + } + /** * Returns the time of the post. * @@ -54,6 +147,18 @@ public class Post { } /** + * Sets the time of this post. + * + * @param time + * The time of this post (in milliseconds since Jan 1, 1970 UTC) + * @return This post (for method chaining) + */ + public Post setTime(long time) { + this.time = time; + return this; + } + + /** * Returns the text of the post. * * @return The text of the post @@ -62,4 +167,91 @@ public class Post { return text; } + /** + * Sets the text of this post. + * + * @param text + * The text of this post + * @return This post (for method chaining) + */ + public Post setText(String text) { + this.text = text; + return this; + } + + /** + * Returns all replies to this post in unspecified order. + * + * @return All replies to this post + */ + public List getReplies() { + List sortedReplies = new ArrayList(replies); + Collections.sort(sortedReplies, new Comparator() { + + @Override + public int compare(Reply leftReply, Reply rightReply) { + return (int) Math.max(Integer.MIN_VALUE, Math.min(Integer.MAX_VALUE, leftReply.getTime() - rightReply.getTime())); + } + + }); + return sortedReplies; + } + + /** + * Adds a reply to this post. The reply will not be added if its + * {@link Reply#getPost() post} is not equal to this post. + * + * @param reply + * The reply to add + */ + public void addReply(Reply reply) { + if (reply.getPost().equals(this)) { + replies.add(reply); + } + } + + /** + * Removes a reply from this post. + * + * @param reply + * The reply to remove + */ + public void removeReply(Reply reply) { + if (reply.getPost().equals(this)) { + replies.remove(reply); + } + } + + // + // OBJECT METHODS + // + + /** + * {@inheritDoc} + */ + @Override + public int hashCode() { + return id.hashCode() ^ sone.hashCode() ^ (int) (time >> 32) ^ (int) (time & 0xffffffff) ^ text.hashCode(); + } + + /** + * {@inheritDoc} + */ + @Override + public boolean equals(Object object) { + if (!(object instanceof Post)) { + return false; + } + Post post = (Post) object; + return post.id.equals(id) && post.sone.equals(sone) && (post.time == time) && post.text.equals(text); + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return getClass().getName() + "[id=" + id + ",sone=" + sone + ",time=" + time + ",text=" + text + ",replies(" + replies.size() + ")]"; + } + }