valera/internal/states/clear_bot_state/clear_bot_state.go

46 lines
989 B
Go
Raw Normal View History

2023-04-08 11:55:16 +00:00
package clear_bot_state
import (
"net/http"
tgbot "github.com/go-telegram-bot-api/telegram-bot-api"
"golang.org/x/exp/slices"
2023-04-16 10:08:40 +00:00
"valera/internal/db"
"valera/internal/states"
2023-04-08 11:55:16 +00:00
)
var names = []string{
"/c", // en
"/с", // ru
}
type clearBotState struct {
bot *tgbot.BotAPI
dataBase *db.DB
}
func NewClearBotState(bot *tgbot.BotAPI, dataBase *db.DB) states.BotState {
return &clearBotState{
bot: bot,
dataBase: dataBase,
}
}
2023-04-09 07:47:38 +00:00
func (s *clearBotState) Do(text string, chatInfo *db.ChatInfo) error {
2023-04-08 11:55:16 +00:00
if !slices.Contains(names, text) {
return nil
}
msg := tgbot.NewMessage(chatInfo.ChatID, "Чистка")
msg.ReplyMarkup = tgbot.NewRemoveKeyboard(false)
_, _ = s.bot.Send(msg)
return s.dataBase.SetStatusToChat(chatInfo.ChatID, db.UserStateNone)
}
func (s *clearBotState) GetHandler() (string, func(http.ResponseWriter, *http.Request)) {
return names[0], func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
}
}