2017-11-14 03:44:21 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
|
|
|
|
package forwarder
|
|
|
|
|
|
|
|
|
|
import (
|
2018-02-13 22:05:32 +04:00
|
|
|
|
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
|
2018-01-23 20:50:21 +04:00
|
|
|
|
"github.com/go-telegram-bot-api/telegram-bot-api"
|
2017-11-14 03:44:21 +04:00
|
|
|
|
"regexp"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ProcessForward process forwards for single-user chats
|
|
|
|
|
func (f *Forwarder) ProcessForward(update *tgbotapi.Update, playerRaw *dbmapping.Player) string {
|
|
|
|
|
text := update.Message.Text
|
|
|
|
|
// Forwards
|
|
|
|
|
var pokememeMsg = regexp.MustCompile("(Уровень)(.+)(Опыт)(.+)\n(Элементы:)(.+)\n(.+)(💙MP)")
|
|
|
|
|
var profileMsg = regexp.MustCompile(`(Онлайн: )(\d+)\n(Турнир через)(.+)\n\n((.*)\n|(.*)\n(.*)\n)(Элементы)(.+)\n(.*)\n\n(.+)(Уровень)(.+)\n`)
|
2018-01-23 20:50:21 +04:00
|
|
|
|
var profileWithEffectsMsg = regexp.MustCompile(`(Онлайн: )(\d+)\n(Турнир через)(.+)\n\n((.*)\n|(.*)\n(.*)\n)(Элементы)(.+)\n(.*)\n(Эффекты)(.*)\n\n(.+)(Уровень)(.+)\n`)
|
2017-11-14 03:44:21 +04:00
|
|
|
|
|
|
|
|
|
switch {
|
|
|
|
|
case pokememeMsg.MatchString(text):
|
|
|
|
|
c.Log.Debug("Pokememe posted!")
|
2017-12-04 23:14:41 +04:00
|
|
|
|
if c.Users.PlayerBetterThan(playerRaw, "admin") {
|
2017-11-21 06:06:32 +04:00
|
|
|
|
return c.Pokedexer.ParsePokememe(update, playerRaw)
|
2017-11-14 03:44:21 +04:00
|
|
|
|
}
|
2017-12-04 23:14:41 +04:00
|
|
|
|
|
|
|
|
|
return c.Talkers.AnyMessageUnauthorized(update)
|
2017-11-14 03:44:21 +04:00
|
|
|
|
case profileMsg.MatchString(text):
|
|
|
|
|
c.Log.Debug("Profile posted!")
|
2017-11-21 06:06:32 +04:00
|
|
|
|
return c.Users.ParseProfile(update, playerRaw)
|
2018-01-23 20:50:21 +04:00
|
|
|
|
case profileWithEffectsMsg.MatchString(text):
|
|
|
|
|
return c.Users.ProfileAddEffectsMessage(update)
|
2017-11-14 03:44:21 +04:00
|
|
|
|
default:
|
|
|
|
|
c.Log.Debug(text)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "fail"
|
|
|
|
|
}
|