Merge branch 'release-0.9.6'
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / PostReplyBuilderImpl.java
1 /*
2  * Sone - PostReplyBuilderImpl.java - Copyright © 2013–2016 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.checkState;
21
22 import java.util.UUID;
23
24 import net.pterodactylus.sone.data.PostReply;
25 import net.pterodactylus.sone.database.PostProvider;
26 import net.pterodactylus.sone.database.PostReplyBuilder;
27 import net.pterodactylus.sone.database.SoneProvider;
28
29 /**
30  * {@link PostReplyBuilder} implementation that creates {@link PostReplyImpl}
31  * objects.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  */
35 public class PostReplyBuilderImpl extends AbstractPostReplyBuilder {
36
37         /** The Sone provider. */
38         private final SoneProvider soneProvider;
39
40         /** The post provider. */
41         private final PostProvider postProvider;
42
43         /**
44          * Creates a new post reply builder.
45          *
46          * @param soneProvider
47          *            The Sone provider
48          * @param postProvider
49          *            The post provider
50          */
51         public PostReplyBuilderImpl(SoneProvider soneProvider, PostProvider postProvider) {
52                 this.soneProvider = soneProvider;
53                 this.postProvider = postProvider;
54         }
55
56         /**
57          * {@inheritDoc}
58          */
59         @Override
60         public PostReply build() {
61                 checkState((randomId && (id == null)) || (!randomId && (id != null)), "either random ID nor custom ID must be set");
62                 checkState(senderId != null, "sender must not be null");
63                 checkState((currentTime && (time == 0)) || (!currentTime && (time >= 0)), "either current time or custom time must be set");
64                 checkState((text != null) && !text.trim().isEmpty(), "text must not be empty");
65                 checkState(postId != null, "post must not be null");
66
67                 /* create new post reply. */
68                 return new PostReplyImpl(soneProvider, postProvider, randomId ? UUID.randomUUID().toString() : id, senderId, currentTime ? System.currentTimeMillis() : time, text, postId);
69         }
70
71 }