mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-25 08:58:45 +00:00
update dependencies and add interactive mode for ratings
This commit is contained in:
parent
4024b040e0
commit
0dc459d5dc
@ -4,10 +4,10 @@ kotlin = "1.7.22"
|
|||||||
kotlin-serialization = "1.4.1"
|
kotlin-serialization = "1.4.1"
|
||||||
|
|
||||||
plagubot = "3.2.0"
|
plagubot = "3.2.0"
|
||||||
tgbotapi = "4.2.0"
|
tgbotapi = "4.2.1"
|
||||||
microutils = "0.15.0"
|
microutils = "0.16.0"
|
||||||
kslog = "0.5.4"
|
kslog = "0.5.4"
|
||||||
krontab = "0.8.3"
|
krontab = "0.8.4"
|
||||||
tgbotapi-libraries = "0.6.5"
|
tgbotapi-libraries = "0.6.5"
|
||||||
plagubot-plugins = "0.6.4"
|
plagubot-plugins = "0.6.4"
|
||||||
|
|
||||||
|
@ -10,4 +10,5 @@ import dev.inmo.tgbotapi.types.MessageIdentifier
|
|||||||
interface ReadPostsRepo : ReadCRUDRepo<RegisteredPost, PostId> {
|
interface ReadPostsRepo : ReadCRUDRepo<RegisteredPost, PostId> {
|
||||||
suspend fun getIdByChatAndMessage(chatId: IdChatIdentifier, messageId: MessageIdentifier): PostId?
|
suspend fun getIdByChatAndMessage(chatId: IdChatIdentifier, messageId: MessageIdentifier): PostId?
|
||||||
suspend fun getPostCreationTime(postId: PostId): DateTime?
|
suspend fun getPostCreationTime(postId: PostId): DateTime?
|
||||||
|
suspend fun getFirstMessageInfo(postId: PostId): PostContentInfo?
|
||||||
}
|
}
|
||||||
|
@ -165,4 +165,10 @@ class ExposedPostsRepo(
|
|||||||
override suspend fun getPostCreationTime(postId: PostId): DateTime? = transaction(database) {
|
override suspend fun getPostCreationTime(postId: PostId): DateTime? = transaction(database) {
|
||||||
select { selectById(postId) }.limit(1).firstOrNull() ?.get(createdColumn) ?.let(::DateTime)
|
select { selectById(postId) }.limit(1).firstOrNull() ?.get(createdColumn) ?.let(::DateTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override suspend fun getFirstMessageInfo(postId: PostId): PostContentInfo? = transaction(database) {
|
||||||
|
with(contentRepo) {
|
||||||
|
select { postIdColumn.eq(postId.string) }.limit(1).firstOrNull() ?.asObject
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
package dev.inmo.plaguposter.ratings.source.buttons
|
package dev.inmo.plaguposter.ratings.source.buttons
|
||||||
|
|
||||||
|
import com.soywiz.klock.DateFormat
|
||||||
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
||||||
import dev.inmo.micro_utils.pagination.FirstPagePagination
|
import dev.inmo.micro_utils.pagination.FirstPagePagination
|
||||||
import dev.inmo.micro_utils.pagination.Pagination
|
import dev.inmo.micro_utils.pagination.Pagination
|
||||||
import dev.inmo.micro_utils.pagination.SimplePagination
|
import dev.inmo.micro_utils.pagination.SimplePagination
|
||||||
import dev.inmo.micro_utils.pagination.utils.paginate
|
import dev.inmo.micro_utils.pagination.utils.paginate
|
||||||
|
import dev.inmo.plaguposter.posts.repo.ReadPostsRepo
|
||||||
import dev.inmo.plaguposter.ratings.models.Rating
|
import dev.inmo.plaguposter.ratings.models.Rating
|
||||||
import dev.inmo.plaguposter.ratings.repo.RatingsRepo
|
import dev.inmo.plaguposter.ratings.repo.RatingsRepo
|
||||||
import dev.inmo.plaguposter.ratings.utils.postsByRatings
|
import dev.inmo.plaguposter.ratings.utils.postsByRatings
|
||||||
@ -12,8 +14,10 @@ import dev.inmo.tgbotapi.extensions.api.answers.answer
|
|||||||
import dev.inmo.tgbotapi.extensions.api.edit.edit
|
import dev.inmo.tgbotapi.extensions.api.edit.edit
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.BehaviourContext
|
||||||
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onMessageDataCallbackQuery
|
import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.onMessageDataCallbackQuery
|
||||||
|
import dev.inmo.tgbotapi.extensions.utils.formatting.makeLinkToMessage
|
||||||
import dev.inmo.tgbotapi.extensions.utils.types.buttons.dataButton
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.dataButton
|
||||||
import dev.inmo.tgbotapi.extensions.utils.types.buttons.inlineKeyboard
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.inlineKeyboard
|
||||||
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.urlButton
|
||||||
import dev.inmo.tgbotapi.types.ChatIdentifier
|
import dev.inmo.tgbotapi.types.ChatIdentifier
|
||||||
import dev.inmo.tgbotapi.types.buttons.InlineKeyboardMarkup
|
import dev.inmo.tgbotapi.types.buttons.InlineKeyboardMarkup
|
||||||
import dev.inmo.tgbotapi.utils.row
|
import dev.inmo.tgbotapi.utils.row
|
||||||
@ -49,46 +53,63 @@ suspend fun RatingsRepo.buildRootButtons(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val defaultPostCreationTimeFormat: DateFormat = DateFormat("dd.MM.yy HH:mm")
|
||||||
|
|
||||||
suspend fun RatingsRepo.buildRatingButtons(
|
suspend fun RatingsRepo.buildRatingButtons(
|
||||||
|
postsRepo: ReadPostsRepo,
|
||||||
rating: Rating,
|
rating: Rating,
|
||||||
pagination: Pagination = FirstPagePagination(8),
|
pagination: Pagination = FirstPagePagination(8),
|
||||||
rowSize: Int = 2
|
rowSize: Int = 2,
|
||||||
|
postCreationTimeFormat: DateFormat = defaultPostCreationTimeFormat
|
||||||
): InlineKeyboardMarkup {
|
): InlineKeyboardMarkup {
|
||||||
val postsByRatings = getPosts(rating .. rating, true).keys.paginate(pagination)
|
val postsByRatings = getPosts(rating .. rating, true).keys.paginate(pagination)
|
||||||
return inlineKeyboard {
|
return inlineKeyboard {
|
||||||
if (postsByRatings.pagesNumber > 1) {
|
if (postsByRatings.pagesNumber > 1) {
|
||||||
row {
|
row {
|
||||||
if (postsByRatings.page > 0) {
|
if (postsByRatings.page > 0) {
|
||||||
dataButton("<", "$RootButtonsShowRatingPageData ${postsByRatings.page - 1} ${postsByRatings.size}")
|
dataButton("<", "$RootButtonsShowRatingPageData ${postsByRatings.page - 1} ${postsByRatings.size} ${rating.double}")
|
||||||
}
|
}
|
||||||
dataButton("${postsByRatings.page}: \uD83D\uDD04", "$RootButtonsShowRatingPageData ${postsByRatings.page} ${postsByRatings.size}")
|
dataButton("${postsByRatings.page}: \uD83D\uDD04", "$RootButtonsShowRatingPageData ${postsByRatings.page} ${postsByRatings.size} ${rating.double}")
|
||||||
if (postsByRatings.pagesNumber - postsByRatings.page > 1) {
|
if (postsByRatings.pagesNumber - postsByRatings.page > 1) {
|
||||||
dataButton(">", "$RootButtonsShowRatingPageData ${postsByRatings.page + 1} ${postsByRatings.size}")
|
dataButton(">", "$RootButtonsShowRatingPageData ${postsByRatings.page + 1} ${postsByRatings.size} ${rating.double}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
postsByRatings.results.chunked(rowSize).map {
|
postsByRatings.results.chunked(rowSize).map {
|
||||||
row {
|
row {
|
||||||
it.forEach { (rating, posts) ->
|
it.forEach { postId ->
|
||||||
dataButton("${rating.double}: ${posts.size}", "$RootButtonsShowRatingData ${rating.double}")
|
val firstMessageInfo = postsRepo.getFirstMessageInfo(postId) ?: return@forEach
|
||||||
|
val postCreationTime = postsRepo.getPostCreationTime(postId) ?: return@forEach
|
||||||
|
urlButton(
|
||||||
|
postCreationTime.format(postCreationTimeFormat),
|
||||||
|
makeLinkToMessage(
|
||||||
|
firstMessageInfo.chatId,
|
||||||
|
firstMessageInfo.messageId
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
row {
|
||||||
|
dataButton("↩️", "$RootButtonsToPageData 0 16")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun BehaviourContext.includeRootNavigationButtonsHandler(
|
suspend fun BehaviourContext.includeRootNavigationButtonsHandler(
|
||||||
allowedChats: Set<ChatIdentifier>,
|
allowedChats: Set<ChatIdentifier>,
|
||||||
ratingsRepo: RatingsRepo
|
ratingsRepo: RatingsRepo,
|
||||||
|
postsRepo: ReadPostsRepo
|
||||||
) {
|
) {
|
||||||
suspend fun registerPageQueryListener(
|
suspend fun registerPageQueryListener(
|
||||||
dataPrefix: String,
|
dataPrefix: String,
|
||||||
onPageUpdate: suspend (pagination: Pagination) -> InlineKeyboardMarkup?
|
onPageUpdate: suspend (pagination: Pagination, additionalParams: Array<String>) -> InlineKeyboardMarkup?
|
||||||
) {
|
) {
|
||||||
onMessageDataCallbackQuery(
|
onMessageDataCallbackQuery(
|
||||||
initialFilter = { it.message.chat.id in allowedChats }
|
initialFilter = { it.message.chat.id in allowedChats }
|
||||||
) {
|
) {
|
||||||
val (prefix, pageRaw, sizeRaw) = it.data.split(" ").takeIf { it.size == 3 } ?: return@onMessageDataCallbackQuery
|
val args = it.data.split(" ").takeIf { it.size >= 3 } ?: return@onMessageDataCallbackQuery
|
||||||
|
val (prefix, pageRaw, sizeRaw) = args
|
||||||
|
|
||||||
if (prefix == dataPrefix) {
|
if (prefix == dataPrefix) {
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
@ -97,7 +118,7 @@ suspend fun BehaviourContext.includeRootNavigationButtonsHandler(
|
|||||||
|
|
||||||
edit(
|
edit(
|
||||||
it.message,
|
it.message,
|
||||||
onPageUpdate(SimplePagination(page, size)) ?: return@runCatchingSafely
|
onPageUpdate(SimplePagination(page, size), args.drop(3).toTypedArray()) ?: return@runCatchingSafely
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,27 +126,21 @@ suspend fun BehaviourContext.includeRootNavigationButtonsHandler(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
suspend fun registerPageQueryListener(
|
||||||
|
dataPrefix: String,
|
||||||
|
onPageUpdate: suspend (pagination: Pagination) -> InlineKeyboardMarkup?
|
||||||
|
) = registerPageQueryListener(dataPrefix) { pagination, _ ->
|
||||||
|
onPageUpdate(pagination)
|
||||||
|
}
|
||||||
registerPageQueryListener(
|
registerPageQueryListener(
|
||||||
RootButtonsToPageData,
|
RootButtonsToPageData,
|
||||||
ratingsRepo::buildRootButtons
|
ratingsRepo::buildRootButtons
|
||||||
)
|
)
|
||||||
onMessageDataCallbackQuery(
|
registerPageQueryListener(
|
||||||
initialFilter = { it.message.chat.id in allowedChats }
|
RootButtonsShowRatingPageData
|
||||||
) {
|
) { pagination, params ->
|
||||||
val (prefix, pageRaw, sizeRaw) = it.data.split(" ").takeIf { it.size == 3 } ?: return@onMessageDataCallbackQuery
|
params.firstOrNull() ?.toDoubleOrNull() ?.let { rating ->
|
||||||
|
ratingsRepo.buildRatingButtons(postsRepo, Rating(rating), pagination)
|
||||||
if (prefix == RootButtonsToPageData) {
|
|
||||||
runCatchingSafely {
|
|
||||||
val page = pageRaw.toIntOrNull() ?: return@runCatchingSafely
|
|
||||||
val size = sizeRaw.toIntOrNull() ?: return@runCatchingSafely
|
|
||||||
|
|
||||||
edit(
|
|
||||||
it.message,
|
|
||||||
ratingsRepo.buildRootButtons(SimplePagination(page, size))
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
answer(it)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onMessageDataCallbackQuery(
|
onMessageDataCallbackQuery(
|
||||||
@ -136,6 +151,7 @@ suspend fun BehaviourContext.includeRootNavigationButtonsHandler(
|
|||||||
if (prefix == RootButtonsShowRatingData) {
|
if (prefix == RootButtonsShowRatingData) {
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
val rating = ratingRaw.toDoubleOrNull() ?: return@runCatchingSafely
|
val rating = ratingRaw.toDoubleOrNull() ?: return@runCatchingSafely
|
||||||
|
edit(it.message, ratingsRepo.buildRatingButtons(postsRepo, Rating(rating)))
|
||||||
}
|
}
|
||||||
|
|
||||||
answer(it)
|
answer(it)
|
||||||
|
@ -20,6 +20,8 @@ import dev.inmo.plaguposter.posts.panel.PanelButtonsAPI
|
|||||||
import dev.inmo.plaguposter.posts.repo.PostsRepo
|
import dev.inmo.plaguposter.posts.repo.PostsRepo
|
||||||
import dev.inmo.plaguposter.ratings.models.Rating
|
import dev.inmo.plaguposter.ratings.models.Rating
|
||||||
import dev.inmo.plaguposter.ratings.repo.RatingsRepo
|
import dev.inmo.plaguposter.ratings.repo.RatingsRepo
|
||||||
|
import dev.inmo.plaguposter.ratings.source.buttons.buildRootButtons
|
||||||
|
import dev.inmo.plaguposter.ratings.source.buttons.includeRootNavigationButtonsHandler
|
||||||
import dev.inmo.plaguposter.ratings.source.models.*
|
import dev.inmo.plaguposter.ratings.source.models.*
|
||||||
import dev.inmo.plaguposter.ratings.source.repos.*
|
import dev.inmo.plaguposter.ratings.source.repos.*
|
||||||
import dev.inmo.plaguposter.ratings.utils.postsByRatings
|
import dev.inmo.plaguposter.ratings.utils.postsByRatings
|
||||||
@ -34,6 +36,7 @@ import dev.inmo.tgbotapi.extensions.behaviour_builder.triggers_handling.*
|
|||||||
import dev.inmo.tgbotapi.extensions.utils.extensions.sameMessage
|
import dev.inmo.tgbotapi.extensions.utils.extensions.sameMessage
|
||||||
import dev.inmo.tgbotapi.extensions.utils.types.buttons.dataButton
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.dataButton
|
||||||
import dev.inmo.tgbotapi.extensions.utils.types.buttons.flatInlineKeyboard
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.flatInlineKeyboard
|
||||||
|
import dev.inmo.tgbotapi.extensions.utils.types.buttons.inlineKeyboard
|
||||||
import dev.inmo.tgbotapi.types.buttons.InlineKeyboardButtons.CallbackDataInlineKeyboardButton
|
import dev.inmo.tgbotapi.types.buttons.InlineKeyboardButtons.CallbackDataInlineKeyboardButton
|
||||||
import dev.inmo.tgbotapi.types.message.textsources.bold
|
import dev.inmo.tgbotapi.types.message.textsources.bold
|
||||||
import dev.inmo.tgbotapi.types.message.textsources.regular
|
import dev.inmo.tgbotapi.types.message.textsources.regular
|
||||||
@ -225,13 +228,23 @@ object Plugin : Plugin {
|
|||||||
+ "• " + bold("% 3.1f".format(it.first.double)) + ": " + bold(it.second.size.toString()) + "\n"
|
+ "• " + bold("% 3.1f".format(it.first.double)) + ": " + bold(it.second.size.toString()) + "\n"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
val keyboard = flatInlineKeyboard {
|
||||||
|
dataButton("Interactive mode", "ratings_interactive")
|
||||||
|
}
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
edit(it, textSources)
|
edit(it, textSources, replyMarkup = keyboard)
|
||||||
}.onFailure { _ ->
|
}.onFailure { _ ->
|
||||||
reply(it, textSources)
|
reply(it, textSources, replyMarkup = keyboard)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
includeRootNavigationButtonsHandler(setOf(chatConfig.sourceChatId), ratingsRepo, postsRepo)
|
||||||
|
onMessageDataCallbackQuery("ratings_interactive", initialFilter = { it.message.chat.id == chatConfig.sourceChatId }) {
|
||||||
|
edit(
|
||||||
|
it.message,
|
||||||
|
ratingsRepo.buildRootButtons()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
koin.getOrNull<InlineTemplatesRepo>() ?.apply {
|
koin.getOrNull<InlineTemplatesRepo>() ?.apply {
|
||||||
addTemplate(
|
addTemplate(
|
||||||
|
Loading…
Reference in New Issue
Block a user