Vladimir Hodakov
b8226d8aa8
Recent game update changed pokememes view in pokedeks, so we need to reflect it by updating parser. Introducing DataCache - a silver bullet for eliminating lags linked to database queries. Less queries, more in RAM, faster work. Needs testing in production environment.
28 lines
886 B
Go
28 lines
886 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package usersinterface
|
||
|
||
import (
|
||
"git.wtfteam.pro/fat0troll/i2_bot/lib/dbmapping"
|
||
"github.com/go-telegram-bot-api/telegram-bot-api"
|
||
)
|
||
|
||
// UsersInterface implements Users for importing via appcontex
|
||
type UsersInterface interface {
|
||
Init()
|
||
|
||
ParseProfile(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
|
||
GetPrettyName(user *tgbotapi.User) string
|
||
PlayerBetterThan(playerRaw *dbmapping.Player, powerLevel string) bool
|
||
|
||
FindByLevel(update *tgbotapi.Update) string
|
||
FindByName(update *tgbotapi.Update) string
|
||
ForeignProfileMessage(update *tgbotapi.Update) string
|
||
FormatUsername(userName string) string
|
||
ProfileAddEffectsMessage(update *tgbotapi.Update) string
|
||
ProfileMessage(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
||
UsersList(update *tgbotapi.Update) string
|
||
}
|