c435084ac2c5c89049d6bae44550fcf9e0125c3f
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / database / memory / MemoryPost.kt
1 /*
2  * Sone - MemoryPost.kt - Copyright © 2010–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 net.pterodactylus.sone.data.Post
20 import net.pterodactylus.sone.data.Sone
21 import net.pterodactylus.sone.database.SoneProvider
22 import net.pterodactylus.sone.utils.asOptional
23
24 /**
25  * A post is a short message that a user writes in his Sone to let other users
26  * know what is going on.
27  */
28 internal class MemoryPost(
29                 private val postDatabase: MemoryDatabase,
30                 private val soneProvider: SoneProvider,
31                 override val id: String,
32                 private val soneId: String,
33                 private val recipientId: String?,
34                 private val time: Long,
35                 private val text: String
36 ) : Post {
37
38         override fun isLoaded() = true
39
40         override fun getSone(): Sone = soneProvider.getSone(soneId)!!
41
42         override fun getRecipientId() = recipientId.asOptional()
43
44         override fun getRecipient() = recipientId?.let(soneProvider::getSone).asOptional()
45
46         override fun getTime() = time
47
48         override fun getText() = text
49
50         override fun isKnown() = postDatabase.isPostKnown(this)
51
52         override fun setKnown(known: Boolean) = apply {
53                 postDatabase.setPostKnown(this, known)
54         }
55
56         override fun hashCode() = id.hashCode()
57
58         override fun equals(other: Any?) = (other is MemoryPost) && (other.id == id)
59
60         override fun toString() = "${javaClass.name}[id=$id,sone=$soneId,recipient=$recipientId,time=$time,text=$text]"
61
62 }