2017-11-19 22:16:11 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
|
|
|
|
package squaderinterface
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/go-telegram-bot-api/telegram-bot-api"
|
2017-11-24 00:16:22 +04:00
|
|
|
|
"lab.pztrn.name/fat0troll/i2_bot/lib/dbmapping"
|
2017-11-19 22:16:11 +04:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// SquaderInterface implements Squader for importing via appcontext.
|
|
|
|
|
type SquaderInterface interface {
|
|
|
|
|
Init()
|
2017-11-24 00:16:22 +04:00
|
|
|
|
|
2017-11-24 13:24:36 +04:00
|
|
|
|
GetAllSquadChats() ([]dbmapping.Chat, bool)
|
2017-11-26 06:48:13 +04:00
|
|
|
|
GetAllSquadFloodChats() ([]dbmapping.Chat, bool)
|
|
|
|
|
GetAvailableSquadChatsForUser(playerRaw *dbmapping.Player) ([]dbmapping.Chat, bool)
|
2017-11-24 00:16:22 +04:00
|
|
|
|
GetSquadByID(squadID int) (dbmapping.SquadChat, bool)
|
2017-11-26 15:28:55 +04:00
|
|
|
|
GetSquadChatsBySquadsIDs(squadsID string) ([]dbmapping.Chat, bool)
|
2017-11-24 00:16:22 +04:00
|
|
|
|
GetUserRolesInSquads(playerRaw *dbmapping.Player) ([]dbmapping.SquadPlayerFull, bool)
|
2017-11-26 06:48:13 +04:00
|
|
|
|
IsChatASquadEnabled(chatRaw *dbmapping.Chat) string
|
2017-11-24 00:16:22 +04:00
|
|
|
|
|
|
|
|
|
AddUserToSquad(update *tgbotapi.Update, adderRaw *dbmapping.Player) string
|
2017-11-19 22:16:11 +04:00
|
|
|
|
CreateSquad(update *tgbotapi.Update) string
|
2017-11-24 00:16:22 +04:00
|
|
|
|
|
|
|
|
|
SquadInfo(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
|
|
|
|
SquadsList(update *tgbotapi.Update, playerRaw *dbmapping.Player) string
|
2017-11-26 06:48:13 +04:00
|
|
|
|
|
|
|
|
|
ProcessMessage(update *tgbotapi.Update, chatRaw *dbmapping.Chat) string
|
2017-11-26 17:28:26 +04:00
|
|
|
|
ProtectBastion(update *tgbotapi.Update, newUser *tgbotapi.User) string
|
2017-11-29 19:11:52 +04:00
|
|
|
|
FilterBastion(update *tgbotapi.Update) string
|
2017-11-19 22:16:11 +04:00
|
|
|
|
}
|