2018-01-29 23:50:25 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
|
|
|
|
package datacache
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"errors"
|
2018-05-02 07:25:39 +04:00
|
|
|
|
"strconv"
|
2018-05-02 08:48:22 +04:00
|
|
|
|
"strings"
|
2018-05-02 07:25:39 +04:00
|
|
|
|
|
2018-04-30 19:46:28 +04:00
|
|
|
|
"gopkg.in/yaml.v2"
|
2018-03-31 08:34:27 +04:00
|
|
|
|
"source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping"
|
2018-04-30 19:46:28 +04:00
|
|
|
|
"source.wtfteam.pro/i2_bot/i2_bot/static"
|
2018-01-29 23:50:25 +04:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func (dc *DataCache) initLeagues() {
|
|
|
|
|
c.Log.Info("Initializing Leagues storage...")
|
2018-03-31 08:34:27 +04:00
|
|
|
|
dc.leagues = make(map[int]*datamapping.League)
|
2018-01-29 23:50:25 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (dc *DataCache) loadLeagues() {
|
2018-03-31 08:34:27 +04:00
|
|
|
|
c.Log.Info("Load current Leagues data to DataCache...")
|
|
|
|
|
leagues := dc.getLeagues()
|
2018-01-29 23:50:25 +04:00
|
|
|
|
|
|
|
|
|
for i := range leagues {
|
|
|
|
|
dc.leagues[leagues[i].ID] = &leagues[i]
|
|
|
|
|
}
|
|
|
|
|
c.Log.Info("Loaded leagues in DataCache: " + strconv.Itoa(len(dc.leagues)))
|
2018-03-31 08:34:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (dc *DataCache) getLeagues() []datamapping.League {
|
|
|
|
|
leagues := []datamapping.League{}
|
|
|
|
|
|
2018-04-30 19:46:28 +04:00
|
|
|
|
yamlFile, err := static.ReadFile("leagues.yml")
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.Log.Error(err.Error())
|
|
|
|
|
c.Log.Fatal("Can't read leagues data file")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = yaml.Unmarshal(yamlFile, &leagues)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.Log.Error(err.Error())
|
|
|
|
|
c.Log.Fatal("Can't parse leagues data file")
|
|
|
|
|
}
|
2018-03-31 08:34:27 +04:00
|
|
|
|
|
|
|
|
|
return leagues
|
2018-01-29 23:50:25 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// External functions
|
|
|
|
|
|
2018-03-31 08:34:27 +04:00
|
|
|
|
// GetLeagueByID returns league from datacache by ID
|
|
|
|
|
func (dc *DataCache) GetLeagueByID(leagueID int) (*datamapping.League, error) {
|
|
|
|
|
if dc.leagues[leagueID] != nil {
|
|
|
|
|
return dc.leagues[leagueID], nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil, errors.New("There is no league with ID = " + strconv.Itoa(leagueID))
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-02 08:48:22 +04:00
|
|
|
|
// GetLeagueByName returns league from datacache by name
|
|
|
|
|
func (dc *DataCache) GetLeagueByName(name string) (*datamapping.League, error) {
|
|
|
|
|
for i := range dc.leagues {
|
|
|
|
|
if strings.Contains(dc.leagues[i].Name, name) {
|
|
|
|
|
return dc.leagues[i], nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil, errors.New("There is no league with name = " + name)
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 23:50:25 +04:00
|
|
|
|
// GetLeagueBySymbol returns league from datacache by emoji
|
2018-03-31 08:34:27 +04:00
|
|
|
|
func (dc *DataCache) GetLeagueBySymbol(symbol string) (*datamapping.League, error) {
|
2018-01-29 23:50:25 +04:00
|
|
|
|
for i := range dc.leagues {
|
|
|
|
|
if dc.leagues[i].Symbol == symbol {
|
|
|
|
|
return dc.leagues[i], nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil, errors.New("There is no league with symbol = " + symbol)
|
|
|
|
|
}
|