mirror of
https://github.com/Luzifer/discord-community.git
synced 2024-11-08 15:10:02 +00:00
147 lines
3.7 KiB
Go
147 lines
3.7 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/bwmarrin/discordgo"
|
|
"github.com/robfig/cron/v3"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
httpHelpers "github.com/Luzifer/go_helpers/v2/http"
|
|
"github.com/Luzifer/go_helpers/v2/str"
|
|
"github.com/Luzifer/rconfig/v2"
|
|
)
|
|
|
|
var (
|
|
cfg = struct {
|
|
Config string `flag:"config,c" default:"config.yaml" description:"Path to config file"`
|
|
Listen string `flag:"listen" default:":3000" description:"Port/IP to listen on"`
|
|
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
|
|
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
|
|
}{}
|
|
|
|
config *configFile
|
|
store *metaStore
|
|
|
|
version = "dev"
|
|
)
|
|
|
|
func init() {
|
|
rconfig.AutoEnv(true)
|
|
if err := rconfig.ParseAndValidate(&cfg); err != nil {
|
|
log.Fatalf("Unable to parse commandline options: %s", err)
|
|
}
|
|
|
|
if cfg.VersionAndExit {
|
|
fmt.Printf("discord-community %s\n", version)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if l, err := log.ParseLevel(cfg.LogLevel); err != nil {
|
|
log.WithError(err).Fatal("Unable to parse log level")
|
|
} else {
|
|
log.SetLevel(l)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
var (
|
|
crontab = cron.New()
|
|
discord *discordgo.Session
|
|
err error
|
|
activeModules []module
|
|
)
|
|
|
|
if config, err = newConfigFromFile(cfg.Config); err != nil {
|
|
log.WithError(err).Fatal("Unable to load config file")
|
|
}
|
|
|
|
if config.StoreLocation == "" {
|
|
log.Fatal("Config contains no store location")
|
|
}
|
|
|
|
if store, err = newMetaStoreFromDisk(config.StoreLocation); err != nil {
|
|
log.WithError(err).Fatal("Unable to load store")
|
|
}
|
|
|
|
// Connect to Discord
|
|
if discord, err = discordgo.New(strings.Join([]string{"Bot", config.BotToken}, " ")); err != nil {
|
|
log.WithError(err).Fatal("Unable to create discord client")
|
|
}
|
|
|
|
discord.Identify.Intents = discordgo.IntentsAll
|
|
|
|
var activeIDs []string
|
|
for i, mc := range config.ModuleConfigs {
|
|
logger := log.WithFields(log.Fields{
|
|
"id": mc.ID,
|
|
"idx": i,
|
|
"module": mc.Type,
|
|
})
|
|
|
|
if str.StringInSlice(mc.ID, activeIDs) {
|
|
logger.Error("Found duplicate module ID, module will be disabled")
|
|
continue
|
|
}
|
|
|
|
if mc.ID == "" {
|
|
logger.Error("Module contains no ID and will be disabled")
|
|
continue
|
|
}
|
|
|
|
mod := GetModuleByName(mc.Type)
|
|
if mod == nil {
|
|
logger.Fatal("Found configuration for unsupported module")
|
|
}
|
|
|
|
if err = mod.Initialize(mc.ID, crontab, discord, mc.Attributes); err != nil {
|
|
logger.WithError(err).Fatal("Unable to initialize module")
|
|
}
|
|
|
|
activeModules = append(activeModules, mod)
|
|
activeIDs = append(activeIDs, mc.ID)
|
|
|
|
logger.Debug("Enabled module")
|
|
}
|
|
|
|
if len(activeModules) == 0 {
|
|
log.Warn("No modules were enabled, quitting now")
|
|
return
|
|
}
|
|
|
|
if err = discord.Open(); err != nil {
|
|
log.WithError(err).Fatal("Unable to connect discord client")
|
|
}
|
|
defer discord.Close()
|
|
log.Debug("Discord connected")
|
|
|
|
guild, err := discord.Guild(config.GuildID)
|
|
if err != nil {
|
|
log.WithError(err).Fatal("Unable to get guild for given guild-id in config: Is the bot added and the ID correct?")
|
|
}
|
|
log.WithField("name", guild.Name).Info("Found specified guild for operation")
|
|
|
|
// Run Crontab
|
|
crontab.Start()
|
|
defer crontab.Stop()
|
|
log.Debug("Crontab started")
|
|
|
|
// Execute Setup methods now after we're connected
|
|
for i, mod := range activeModules {
|
|
if err = mod.Setup(); err != nil {
|
|
log.WithError(err).WithField("idx", i).Fatal("Unable to run setup for module")
|
|
}
|
|
}
|
|
|
|
// Run HTTP server
|
|
var h http.Handler = http.DefaultServeMux
|
|
h = httpHelpers.GzipHandler(h)
|
|
h = httpHelpers.NewHTTPLogHandler(h)
|
|
|
|
log.WithField("version", version).Info("Bot setup done, bot is now running")
|
|
|
|
http.ListenAndServe(cfg.Listen, h)
|
|
}
|