All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dehuckakpyt.telegrambot.config.DatabaseSourceConfig.kt Maven / Gradle / Ivy

There is a newer version: 0.11.2
Show newest version
package io.github.dehuckakpyt.telegrambot.config

import io.github.dehuckakpyt.telegrambot.constant.Default.MAX_CALLBACK_CONTENTS_PER_USER
import io.github.dehuckakpyt.telegrambot.context.SpringContext.autowired
import io.github.dehuckakpyt.telegrambot.repository.callback.DatabaseCallbackContentRepository
import io.github.dehuckakpyt.telegrambot.repository.chain.DatabaseChainRepository
import io.github.dehuckakpyt.telegrambot.repository.message.DatabaseTelegramMessageRepository
import io.github.dehuckakpyt.telegrambot.source.callback.CallbackContentSource
import io.github.dehuckakpyt.telegrambot.source.callback.DatabaseCallbackContentSource
import io.github.dehuckakpyt.telegrambot.source.chain.ChainSource
import io.github.dehuckakpyt.telegrambot.source.chain.DatabaseChainSource
import io.github.dehuckakpyt.telegrambot.source.message.DatabaseTelegramMessageSource
import io.github.dehuckakpyt.telegrambot.source.message.MessageSource


/**
 * Created on 30.11.2023.
 *

* * @author Denis Matytsin */ fun CallbackContentSource.Companion.inDatabase( /** * Максимальное количество записей с содержанием callback'а для одного пользователя. * -1 для игнорирования ограничения. * ВАЖНО: эта проперть должна быть задана раньше, чем callbackContentSource */ maxCallbackContentsPerUser: Long = MAX_CALLBACK_CONTENTS_PER_USER, ): CallbackContentSource { return DatabaseCallbackContentSource( repository = autowired(), maxCallbackContentsPerUser = maxCallbackContentsPerUser, ) } val CallbackContentSource.Companion.inDatabase: CallbackContentSource get() { return DatabaseCallbackContentSource( repository = autowired(), maxCallbackContentsPerUser = MAX_CALLBACK_CONTENTS_PER_USER, ) } val ChainSource.Companion.inDatabase: ChainSource get() { return DatabaseChainSource( repository = autowired(), ) } val MessageSource.Companion.inDatabase: MessageSource get() { return DatabaseTelegramMessageSource( repository = autowired(), ) }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy