2017-10-04 17:56:18 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
|
|
|
|
package appcontext
|
|
|
|
|
|
|
|
|
|
import (
|
2017-10-07 19:58:14 +04:00
|
|
|
|
"github.com/go-telegram-bot-api/telegram-bot-api"
|
2017-10-18 07:03:34 +04:00
|
|
|
|
"github.com/jmoiron/sqlx"
|
2017-11-24 13:24:36 +04:00
|
|
|
|
"github.com/robfig/cron"
|
2018-01-21 23:28:53 +04:00
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/broadcaster/broadcasterinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/chatter/chatterinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/config"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/connections"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/forwarder/forwarderinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/migrations/migrationsinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/orders/ordersinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/pinner/pinnerinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/pokedexer/pokedexerinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/reminder/reminderinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/router/routerinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/squader/squaderinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/statistics/statisticsinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/talkers/talkersinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/users/usersinterface"
|
|
|
|
|
"git.wtfteam.pro/fat0troll/i2_bot/lib/welcomer/welcomerinterface"
|
2017-11-22 16:32:10 +04:00
|
|
|
|
"lab.pztrn.name/golibs/flagger"
|
2017-11-14 03:44:21 +04:00
|
|
|
|
"lab.pztrn.name/golibs/mogrus"
|
|
|
|
|
"os"
|
2017-10-04 17:56:18 +04:00
|
|
|
|
)
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// Context is an application context struct
|
2017-10-04 17:56:18 +04:00
|
|
|
|
type Context struct {
|
2017-11-22 16:32:10 +04:00
|
|
|
|
StartupFlags *flagger.Flagger
|
|
|
|
|
Cfg *config.Config
|
2017-11-24 13:24:36 +04:00
|
|
|
|
Cron *cron.Cron
|
2017-11-22 16:32:10 +04:00
|
|
|
|
Log *mogrus.LoggerHandler
|
|
|
|
|
Bot *tgbotapi.BotAPI
|
|
|
|
|
Forwarder forwarderinterface.ForwarderInterface
|
|
|
|
|
Migrations migrationsinterface.MigrationsInterface
|
|
|
|
|
Router routerinterface.RouterInterface
|
|
|
|
|
Pokedexer pokedexerinterface.PokedexerInterface
|
|
|
|
|
Db *sqlx.DB
|
|
|
|
|
Talkers talkersinterface.TalkersInterface
|
|
|
|
|
Broadcaster broadcasterinterface.BroadcasterInterface
|
|
|
|
|
Welcomer welcomerinterface.WelcomerInterface
|
|
|
|
|
Pinner pinnerinterface.PinnerInterface
|
2017-12-23 01:40:36 +04:00
|
|
|
|
Reminder reminderinterface.ReminderInterface
|
2017-11-22 16:32:10 +04:00
|
|
|
|
Chatter chatterinterface.ChatterInterface
|
|
|
|
|
Squader squaderinterface.SquaderInterface
|
|
|
|
|
Users usersinterface.UsersInterface
|
|
|
|
|
Statistics statisticsinterface.StatisticsInterface
|
2017-11-26 15:28:55 +04:00
|
|
|
|
Orders ordersinterface.OrdersInterface
|
2017-10-04 17:56:18 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// Init is a initialization function for context
|
2017-10-04 17:56:18 +04:00
|
|
|
|
func (c *Context) Init() {
|
2017-11-14 03:44:21 +04:00
|
|
|
|
l := mogrus.New()
|
|
|
|
|
l.Initialize()
|
|
|
|
|
|
|
|
|
|
log := l.CreateLogger("i2_bot")
|
|
|
|
|
log.CreateOutput("stdout", os.Stdout, true, "debug")
|
2017-11-22 16:32:10 +04:00
|
|
|
|
c.Log = log
|
|
|
|
|
|
|
|
|
|
c.StartupFlags = flagger.New(c.Log)
|
|
|
|
|
c.StartupFlags.Initialize()
|
|
|
|
|
|
|
|
|
|
// Adding available startup flags here
|
|
|
|
|
configFlag := flagger.Flag{}
|
|
|
|
|
configFlag.Name = "config"
|
|
|
|
|
configFlag.Description = "Configuration file path"
|
|
|
|
|
configFlag.Type = "string"
|
|
|
|
|
configFlag.DefaultValue = "./config.yaml"
|
|
|
|
|
err := c.StartupFlags.AddFlag(&configFlag)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.Log.Errorln(err)
|
|
|
|
|
}
|
|
|
|
|
c.StartupFlags.Parse()
|
|
|
|
|
|
|
|
|
|
configPath, err := c.StartupFlags.GetStringValue("config")
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.Log.Errorln(err)
|
|
|
|
|
c.Log.Fatal("Can't get config file parameter from command line. Exiting.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c.Cfg = config.New()
|
|
|
|
|
c.Cfg.Init(c.Log, configPath)
|
2017-11-14 03:44:21 +04:00
|
|
|
|
|
|
|
|
|
logFile, err := os.OpenFile(c.Cfg.Logs.LogPath, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0660)
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Fatalln(err)
|
|
|
|
|
}
|
2017-11-22 16:32:10 +04:00
|
|
|
|
c.Log.CreateOutput("file="+c.Cfg.Logs.LogPath, logFile, true, "debug")
|
2017-11-14 03:44:21 +04:00
|
|
|
|
|
|
|
|
|
c.Bot = connections.BotInit(c.Cfg, c.Log)
|
|
|
|
|
c.Db = connections.DBInit(c.Cfg, c.Log)
|
2017-11-22 16:32:10 +04:00
|
|
|
|
|
2017-11-24 13:24:36 +04:00
|
|
|
|
crontab := cron.New()
|
|
|
|
|
c.Cron = crontab
|
2017-11-22 16:32:10 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// RegisterRouterInterface registering router interface in application
|
2017-10-04 17:56:18 +04:00
|
|
|
|
func (c *Context) RegisterRouterInterface(ri routerinterface.RouterInterface) {
|
|
|
|
|
c.Router = ri
|
|
|
|
|
c.Router.Init()
|
|
|
|
|
}
|
2017-10-06 02:56:06 +04:00
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// RegisterMigrationsInterface registering migrations interface in application
|
2017-10-06 02:56:06 +04:00
|
|
|
|
func (c *Context) RegisterMigrationsInterface(mi migrationsinterface.MigrationsInterface) {
|
2017-10-18 07:03:34 +04:00
|
|
|
|
c.Migrations = mi
|
|
|
|
|
c.Migrations.Init()
|
2017-10-06 02:56:06 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 06:06:32 +04:00
|
|
|
|
// RegisterPokedexerInterface registering parsers interface in application
|
|
|
|
|
func (c *Context) RegisterPokedexerInterface(pi pokedexerinterface.PokedexerInterface) {
|
|
|
|
|
c.Pokedexer = pi
|
2017-10-06 02:56:06 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// RegisterTalkersInterface registering talkers interface in application
|
2017-10-07 02:23:25 +04:00
|
|
|
|
func (c *Context) RegisterTalkersInterface(ti talkersinterface.TalkersInterface) {
|
2017-10-18 07:03:34 +04:00
|
|
|
|
c.Talkers = ti
|
2017-11-14 03:44:21 +04:00
|
|
|
|
c.Talkers.Init()
|
2017-10-07 02:23:25 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 06:06:32 +04:00
|
|
|
|
// RegisterBroadcasterInterface registering broadcaster interface in application
|
|
|
|
|
func (c *Context) RegisterBroadcasterInterface(bi broadcasterinterface.BroadcasterInterface) {
|
|
|
|
|
c.Broadcaster = bi
|
|
|
|
|
c.Broadcaster.Init()
|
2017-10-13 00:31:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-13 22:51:50 +04:00
|
|
|
|
// RegisterWelcomerInterface registering welcomer interface in application
|
|
|
|
|
func (c *Context) RegisterWelcomerInterface(wi welcomerinterface.WelcomerInterface) {
|
|
|
|
|
c.Welcomer = wi
|
2017-11-14 03:44:21 +04:00
|
|
|
|
c.Welcomer.Init()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RegisterPinnerInterface registering pinner interface in application
|
|
|
|
|
func (c *Context) RegisterPinnerInterface(pi pinnerinterface.PinnerInterface) {
|
|
|
|
|
c.Pinner = pi
|
|
|
|
|
c.Pinner.Init()
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-23 01:40:36 +04:00
|
|
|
|
// RegisterReminderInterface registering reminder interface in application
|
|
|
|
|
func (c *Context) RegisterReminderInterface(ri reminderinterface.ReminderInterface) {
|
|
|
|
|
c.Reminder = ri
|
|
|
|
|
c.Reminder.Init()
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-14 03:44:21 +04:00
|
|
|
|
// RegisterForwarderInterface registers forwarder interface in application
|
|
|
|
|
func (c *Context) RegisterForwarderInterface(fi forwarderinterface.ForwarderInterface) {
|
|
|
|
|
c.Forwarder = fi
|
|
|
|
|
c.Forwarder.Init()
|
2017-11-13 22:51:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 22:16:11 +04:00
|
|
|
|
// RegisterChatterInterface registers chatter interface in application
|
|
|
|
|
func (c *Context) RegisterChatterInterface(ci chatterinterface.ChatterInterface) {
|
|
|
|
|
c.Chatter = ci
|
|
|
|
|
c.Chatter.Init()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RegisterSquaderInterface registers squader interface in application
|
|
|
|
|
func (c *Context) RegisterSquaderInterface(si squaderinterface.SquaderInterface) {
|
|
|
|
|
c.Squader = si
|
|
|
|
|
c.Squader.Init()
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 15:28:55 +04:00
|
|
|
|
// RegisterOrdersInterface registers orders interface in application
|
|
|
|
|
func (c *Context) RegisterOrdersInterface(oi ordersinterface.OrdersInterface) {
|
|
|
|
|
c.Orders = oi
|
|
|
|
|
c.Orders.Init()
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 06:06:32 +04:00
|
|
|
|
// RegisterUsersInterface registers users interface in application
|
|
|
|
|
func (c *Context) RegisterUsersInterface(ui usersinterface.UsersInterface) {
|
|
|
|
|
c.Users = ui
|
|
|
|
|
c.Users.Init()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RegisterStatisticsInterface registers statistics interface in application
|
|
|
|
|
func (c *Context) RegisterStatisticsInterface(si statisticsinterface.StatisticsInterface) {
|
|
|
|
|
c.Statistics = si
|
|
|
|
|
c.Statistics.Init()
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
// RunDatabaseMigrations applies migrations on bot's startup
|
2017-10-06 02:56:06 +04:00
|
|
|
|
func (c *Context) RunDatabaseMigrations() {
|
2017-10-18 07:03:34 +04:00
|
|
|
|
c.Migrations.SetDialect("mysql")
|
|
|
|
|
c.Migrations.Migrate()
|
2017-10-06 02:56:06 +04:00
|
|
|
|
}
|