X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FPost.kt;h=57815084303ef12841b07ee4e241b6e204efa7a5;hp=d87bd3c2e75518c3c0097928d95a4d8bb031ffec;hb=549af4fa7323c58e0660f21dd8605cbc812db286;hpb=2a9ef0e07136d8c56f4eea32ed49e43bfd5e576f diff --git a/src/main/kotlin/net/pterodactylus/sone/data/Post.kt b/src/main/kotlin/net/pterodactylus/sone/data/Post.kt index d87bd3c..5781508 100644 --- a/src/main/kotlin/net/pterodactylus/sone/data/Post.kt +++ b/src/main/kotlin/net/pterodactylus/sone/data/Post.kt @@ -1,5 +1,6 @@ package net.pterodactylus.sone.data +import net.pterodactylus.sone.database.PostBuilder import java.util.Comparator.comparing /** @@ -14,3 +15,12 @@ val noFuturePost: (Post) -> Boolean = { it.time <= System.currentTimeMillis() } */ @get:JvmName("newestPostFirst") val newestPostFirst: Comparator = comparing(Post::getTime).reversed() + +data class PostShell(val id: String, val soneId: String, val recipientId: String?, val time: Long, val text: String) { + + fun build(postBuilder: PostBuilder) = + postBuilder.withId(id).from(soneId).let { if (recipientId != null) it.to(recipientId) else it }.withTime(time).withText(text).build() + +} + +fun Post.toShell() = PostShell(id, sone!!.id, recipient.orNull()?.id, time, text)