mirror of
https://github.com/watn3y/steamsalty.git
synced 2025-04-19 16:01:22 +02:00
- Fixed SLEEPTIME not working (always 0) - Refined logging - Added metadata to /info command - Bot now automatically sets own commands for autocompletion
27 lines
645 B
Go
27 lines
645 B
Go
package botIO
|
|
|
|
import (
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
|
|
"github.com/rs/zerolog/log"
|
|
"watn3y/steamsalty/config"
|
|
)
|
|
|
|
func Authenticate() (tgbotapi.UpdatesChannel, *tgbotapi.BotAPI) {
|
|
bot, err := tgbotapi.NewBotAPI(config.BotConfig.TelegramAPIToken)
|
|
if err != nil {
|
|
log.Panic().Err(err).Msg("Failed to authenticate")
|
|
}
|
|
|
|
bot.Debug = false
|
|
if config.BotConfig.LogLevel == -1 {
|
|
bot.Debug = true
|
|
}
|
|
|
|
updates := tgbotapi.NewUpdate(0)
|
|
updates.Timeout = 60
|
|
|
|
log.Info().Int64("ID", bot.Self.ID).Str("username", bot.Self.UserName).Msg("Authenticated to Telegram API")
|
|
|
|
return bot.GetUpdatesChan(updates), bot
|
|
|
|
}
|