2017-11-03 21:33:02 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
2017-11-13 22:51:50 +04:00
|
|
|
|
package welcomer
|
2017-11-03 21:33:02 +04:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/go-telegram-bot-api/telegram-bot-api"
|
2017-11-14 03:44:21 +04:00
|
|
|
|
"time"
|
2017-11-03 21:33:02 +04:00
|
|
|
|
)
|
|
|
|
|
|
2017-11-14 03:44:21 +04:00
|
|
|
|
func (w *Welcomer) groupWelcomeUser(update *tgbotapi.Update, newUser *tgbotapi.User) string {
|
2017-11-21 06:06:32 +04:00
|
|
|
|
playerRaw, ok := c.Users.GetOrCreatePlayer(newUser.ID)
|
2017-11-03 21:33:02 +04:00
|
|
|
|
if !ok {
|
|
|
|
|
return "fail"
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 06:06:32 +04:00
|
|
|
|
profileRaw, profileExist := c.Users.GetProfile(playerRaw.ID)
|
2017-11-03 21:33:02 +04:00
|
|
|
|
|
|
|
|
|
message := "*Бот Инстинкта приветствует тебя, *@"
|
2017-11-26 15:45:55 +04:00
|
|
|
|
message += c.Users.FormatUsername(newUser.UserName)
|
2017-11-03 21:33:02 +04:00
|
|
|
|
message += "*!*\n\n"
|
|
|
|
|
|
|
|
|
|
if profileExist {
|
|
|
|
|
if playerRaw.LeagueID == 1 {
|
|
|
|
|
message += "Рад тебя видеть! Не забывай обновлять профиль почаще, и да пребудет с тобой Рандом!\n"
|
|
|
|
|
message += "Последнее обновление твоего профиля: " + profileRaw.CreatedAt.Format("02.01.2006 15:04:05") + "."
|
|
|
|
|
} else {
|
|
|
|
|
message += "Обнови профиль, отправив его боту в личку. Так надо."
|
2017-11-13 22:51:50 +04:00
|
|
|
|
|
2017-11-14 03:44:21 +04:00
|
|
|
|
w.alertSpyUser(update, newUser)
|
2017-11-03 21:33:02 +04:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// newbie
|
|
|
|
|
message += "Добавь себе бота @i2\\_bot в список контактов и скинь в него игровой профиль. Это важно для успешной игры!\n"
|
2017-11-13 22:51:50 +04:00
|
|
|
|
|
2017-11-14 03:44:21 +04:00
|
|
|
|
w.alertUserWithoutProfile(update, newUser)
|
2017-11-03 21:33:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
msg := tgbotapi.NewMessage(update.Message.Chat.ID, message)
|
|
|
|
|
msg.ParseMode = "Markdown"
|
|
|
|
|
|
|
|
|
|
c.Bot.Send(msg)
|
|
|
|
|
|
|
|
|
|
return "ok"
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-14 03:44:21 +04:00
|
|
|
|
func (w *Welcomer) groupStartMessage(update *tgbotapi.Update) string {
|
2017-11-03 21:33:02 +04:00
|
|
|
|
message := "*Бот Инстинкта приветствует этот чатик!*\n\n"
|
2017-11-26 15:49:11 +04:00
|
|
|
|
message += "На службе здравого смысла с " + time.Now().Format("02.01.2006 15:04:05") + "."
|
2017-11-03 21:33:02 +04:00
|
|
|
|
|
|
|
|
|
msg := tgbotapi.NewMessage(update.Message.Chat.ID, message)
|
|
|
|
|
msg.ParseMode = "Markdown"
|
|
|
|
|
|
|
|
|
|
c.Bot.Send(msg)
|
|
|
|
|
|
|
|
|
|
return "ok"
|
2017-11-26 15:45:55 +04:00
|
|
|
|
}
|