2 * Sone - AbstractPostBuilder.java - Copyright © 2013–2016 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.impl;
20 import static com.google.common.base.Preconditions.checkState;
22 import net.pterodactylus.sone.data.Post;
23 import net.pterodactylus.sone.database.PostBuilder;
24 import net.pterodactylus.sone.database.SoneProvider;
27 * Abstract {@link PostBuilder} implementation. It stores the state of the new
28 * post and performs validation, you only need to implement {@link #build()}.
30 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
32 public abstract class AbstractPostBuilder implements PostBuilder {
34 /** The Sone provider for the created posts. */
35 protected final SoneProvider soneProvider;
37 /** Wether to create a post with a random ID. */
38 protected boolean randomId;
40 /** The ID of the post. */
43 /** The sender of the post. */
44 protected String senderId;
46 /** Whether to use the current time when creating the post. */
47 protected boolean currentTime;
49 /** The time of the post. */
52 /** The text of the post. */
53 protected String text;
55 /** The (optional) recipient of the post. */
56 protected String recipientId;
59 * Creates a new abstract post builder.
64 public AbstractPostBuilder(SoneProvider soneProvider) {
65 this.soneProvider = soneProvider;
69 // POSTBUILDER METHODS
76 public PostBuilder copyPost(Post post) {
77 this.randomId = false;
78 this.id = post.getId();
79 this.senderId = post.getSone().getId();
80 this.currentTime = false;
81 this.time = post.getTime();
82 this.text = post.getText();
83 this.recipientId = post.getRecipientId().orNull();
91 public PostBuilder randomId() {
100 public PostBuilder withId(String id) {
109 public PostBuilder from(String senderId) {
110 this.senderId = senderId;
118 public PostBuilder currentTime() {
127 public PostBuilder withTime(long time) {
136 public PostBuilder withText(String text) {
145 public PostBuilder to(String recipientId) {
146 this.recipientId = recipientId;
155 * Validates the state of this post builder.
157 * @throws IllegalStateException
158 * if the state is not valid for building a new post
160 protected void validate() throws IllegalStateException {
161 checkState((randomId && (id == null)) || (!randomId && (id != null)), "exactly one of random ID or custom ID must be set");
162 checkState(senderId != null, "sender must not be null");
163 checkState((currentTime && (time == 0)) || (!currentTime && (time > 0)), "one of current time or custom time must be set");
164 checkState((text != null) && !text.trim().isEmpty(), "text must not be empty");
165 checkState((recipientId == null) || !recipientId.equals(senderId), "sender and recipient must not be the same");