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