
com.github.insanusmokrassar.AutoPostTelegramBot.plugins.rating.receivers.LikeReceiver.kt Maven / Gradle / Ivy
package com.github.insanusmokrassar.AutoPostTelegramBot.plugins.rating.receivers
import com.github.insanusmokrassar.AutoPostTelegramBot.plugins.rating.database.PostsLikesTable
import com.github.insanusmokrassar.AutoPostTelegramBot.utils.CallbackQueryReceiver
import com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions.queryAnswer
import com.github.insanusmokrassar.IObjectK.exceptions.ReadException
import com.github.insanusmokrassar.IObjectKRealisations.toIObject
import com.pengrad.telegrambot.TelegramBot
import com.pengrad.telegrambot.model.CallbackQuery
const val like = "\uD83D\uDC4D"
internal fun makeLikeText(likes: Int) = "$like $likes"
private const val likeIdentifier = "like"
fun makeLikeInline(postId: Int): String = "$likeIdentifier: $postId"
fun extractLikeInline(from: String): Int? = try {
from.toIObject().get(likeIdentifier).toInt()
} catch (e: ReadException) {
null
}
class LikeReceiver(
bot: TelegramBot,
private val postsLikesTable: PostsLikesTable
) : CallbackQueryReceiver(bot) {
override fun invoke(
query: CallbackQuery,
bot: TelegramBot?
) {
extractLikeInline(
query.data()
)?.let {
postId ->
postsLikesTable.userLikePost(
query.from().id().toLong(),
postId
)
bot ?. queryAnswer(
query.id(),
"Voted"
)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy