⚡️ Use shell to store reply data
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / database / memory / MemoryPostReply.kt
1 /*
2  * Sone - MemoryPostReply.kt - Copyright © 2013–2020 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 package net.pterodactylus.sone.database.memory
18
19 import com.google.common.base.Optional
20 import net.pterodactylus.sone.data.Post
21 import net.pterodactylus.sone.data.PostReply
22 import net.pterodactylus.sone.database.PostReplyBuilder
23 import net.pterodactylus.sone.database.SoneProvider
24 import net.pterodactylus.sone.utils.asOptional
25
26 /**
27  * Memory-based [PostReply] implementation.
28  */
29 class MemoryPostReply(
30                 private val database: MemoryDatabase,
31                 private val soneProvider: SoneProvider,
32                 override val id: String,
33                 private val soneId: String,
34                 private val time: Long,
35                 private val text: String,
36                 private val postId: String) : PostReply {
37
38         override fun getSone() = soneProvider.getSone(soneId)!!
39
40         override fun getTime() = time
41
42         override fun getText() = text
43
44         override fun isKnown() = database.isPostReplyKnown(this)
45
46         override fun getPostId() = postId
47
48         override fun getPost(): Optional<Post> = database.getPost(postId).asOptional()
49
50         override fun hashCode() = id.hashCode()
51
52         override fun equals(other: Any?): Boolean {
53                 if (other !is MemoryPostReply) {
54                         return false
55                 }
56                 return other.id == id
57         }
58
59         override fun toString(): String {
60                 return "MemoryPostReply{" +
61                                 "database=" + database +
62                                 ", soneProvider=" + soneProvider +
63                                 ", id='" + id + '\'' +
64                                 ", soneId='" + soneId + '\'' +
65                                 ", time=" + time +
66                                 ", text='" + text + '\'' +
67                                 ", postId='" + postId + '\'' +
68                                 '}'
69         }
70
71         class Shell(val id: String, val soneId: String, val postId: String, val time: Long, val text: String) {
72
73                 fun build(postReplyBuilder: PostReplyBuilder): PostReply {
74                         return postReplyBuilder.withId(id).from(soneId).to(postId).withTime(time).withText(text).build()
75                 }
76
77         }
78
79 }
80
81 fun PostReply.toShell() = MemoryPostReply.Shell(id, sone.id, postId, time, text)