8213faa90c218bd1dd64814ea384aeeae6ae11e4
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / DefaultPostReplyBuilder.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 net.pterodactylus.sone.data.PostReply;
21 import net.pterodactylus.sone.database.Database;
22 import net.pterodactylus.sone.database.PostReplyBuilder;
23
24 import com.google.common.base.Optional;
25
26 /**
27  * {@link PostReplyBuilder} implementation that creates {@link DefaultPostReply}
28  * objects.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class DefaultPostReplyBuilder extends AbstractPostReplyBuilder {
33
34         private final Database database;
35
36         public DefaultPostReplyBuilder(Database database, String senderId, String postId) {
37                 super(senderId, postId);
38                 this.database = database;
39         }
40
41         /**
42          * {@inheritDoc}
43          */
44         @Override
45         public PostReply build(Optional<PostReplyCreated> postReplyCreated) {
46                 validate();
47
48                 DefaultPostReply postReply = new DefaultPostReply(database, getId(), senderId, getTime(), text, postId);
49                 if (postReplyCreated.isPresent()) {
50                         postReplyCreated.get().postReplyCreated(postReply);
51                 }
52                 return postReply;
53         }
54
55 }