2016-01-17 13:00:44 -05:00
|
|
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
2013-12-10 18:37:07 -05:00
|
|
|
|
2012-08-17 16:38:15 -04:00
|
|
|
package main
|
|
|
|
|
2024-02-27 10:11:01 -05:00
|
|
|
//go:generate templ generate
|
|
|
|
|
2012-08-17 16:38:15 -04:00
|
|
|
import (
|
2013-05-09 18:30:15 -04:00
|
|
|
"flag"
|
2024-03-07 11:53:49 -05:00
|
|
|
"github.com/velour/catbase/plugins"
|
2021-05-04 13:57:57 -04:00
|
|
|
"io"
|
2018-07-23 13:00:19 -04:00
|
|
|
"math/rand"
|
2019-03-07 11:35:42 -05:00
|
|
|
"os"
|
2018-07-23 13:00:19 -04:00
|
|
|
"time"
|
2014-04-20 12:54:01 -04:00
|
|
|
|
2019-03-07 11:35:42 -05:00
|
|
|
"github.com/rs/zerolog"
|
|
|
|
"github.com/rs/zerolog/log"
|
2024-03-07 11:53:49 -05:00
|
|
|
"github.com/velour/catbase/bot/msg"
|
|
|
|
"github.com/velour/catbase/connectors/discord"
|
2019-03-07 11:35:42 -05:00
|
|
|
|
2016-01-17 13:00:44 -05:00
|
|
|
"github.com/velour/catbase/bot"
|
|
|
|
"github.com/velour/catbase/config"
|
2019-02-05 22:52:49 -05:00
|
|
|
"github.com/velour/catbase/connectors/irc"
|
|
|
|
"github.com/velour/catbase/connectors/slackapp"
|
2013-06-01 21:59:55 -04:00
|
|
|
)
|
2012-08-17 16:38:15 -04:00
|
|
|
|
2019-01-21 14:24:03 -05:00
|
|
|
var (
|
2019-03-07 11:35:42 -05:00
|
|
|
key = flag.String("set", "", "Configuration key to set")
|
|
|
|
val = flag.String("val", "", "Configuration value to set")
|
2021-07-21 14:52:45 -04:00
|
|
|
initDB = flag.Bool("init", false, "Initialize the configuration db")
|
2019-03-07 11:35:42 -05:00
|
|
|
prettyLog = flag.Bool("pretty", false, "Use pretty console logger")
|
|
|
|
debug = flag.Bool("debug", false, "Turn on debug logging")
|
2019-01-21 14:24:03 -05:00
|
|
|
)
|
|
|
|
|
2013-06-01 21:59:55 -04:00
|
|
|
func main() {
|
2018-07-23 13:00:19 -04:00
|
|
|
rand.Seed(time.Now().Unix())
|
|
|
|
|
2019-01-20 15:21:26 -05:00
|
|
|
var dbpath = flag.String("db", "catbase.db",
|
|
|
|
"Database file to load. (Defaults to catbase.db)")
|
2012-08-17 16:38:15 -04:00
|
|
|
flag.Parse() // parses the logging flags.
|
|
|
|
|
2021-05-04 13:57:57 -04:00
|
|
|
var output io.Writer = os.Stdout
|
2019-03-07 11:35:42 -05:00
|
|
|
if *prettyLog {
|
2021-05-04 13:57:57 -04:00
|
|
|
output = zerolog.ConsoleWriter{Out: output}
|
2019-03-07 11:35:42 -05:00
|
|
|
}
|
2021-05-04 13:57:57 -04:00
|
|
|
log.Logger = log.Output(output).With().Caller().Stack().Logger()
|
|
|
|
|
2019-03-07 11:35:42 -05:00
|
|
|
zerolog.SetGlobalLevel(zerolog.InfoLevel)
|
|
|
|
if *debug {
|
|
|
|
zerolog.SetGlobalLevel(zerolog.DebugLevel)
|
|
|
|
}
|
|
|
|
|
2019-01-20 15:21:26 -05:00
|
|
|
c := config.ReadConfig(*dbpath)
|
2019-01-21 14:24:03 -05:00
|
|
|
|
|
|
|
if *key != "" && *val != "" {
|
|
|
|
c.Set(*key, *val)
|
2019-03-07 11:35:42 -05:00
|
|
|
log.Info().Msgf("Set config %s: %s", *key, *val)
|
2019-01-21 14:24:03 -05:00
|
|
|
return
|
|
|
|
}
|
2019-01-21 19:16:57 -05:00
|
|
|
if (*initDB && len(flag.Args()) != 2) || (!*initDB && c.GetInt("init", 0) != 1) {
|
2019-03-07 11:35:42 -05:00
|
|
|
log.Fatal().Msgf(`You must run "catbase -init <channel> <nick>"`)
|
2019-01-21 14:24:03 -05:00
|
|
|
} else if *initDB {
|
|
|
|
c.SetDefaults(flag.Arg(0), flag.Arg(1))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-10 13:37:07 -05:00
|
|
|
var client bot.Connector
|
2013-06-01 21:59:55 -04:00
|
|
|
|
2019-02-05 22:52:49 -05:00
|
|
|
switch c.Get("type", "slackapp") {
|
2016-03-10 13:37:07 -05:00
|
|
|
case "irc":
|
|
|
|
client = irc.New(c)
|
2019-02-05 22:52:49 -05:00
|
|
|
case "slackapp":
|
|
|
|
client = slackapp.New(c)
|
2020-08-31 12:20:52 -04:00
|
|
|
case "discord":
|
|
|
|
client = discord.New(c)
|
2016-03-10 13:37:07 -05:00
|
|
|
default:
|
2019-03-07 11:35:42 -05:00
|
|
|
log.Fatal().Msgf("Unknown connection type: %s", c.Get("type", "UNSET"))
|
2013-06-01 21:59:55 -04:00
|
|
|
}
|
|
|
|
|
2016-03-30 10:00:20 -04:00
|
|
|
b := bot.New(c, client)
|
2016-03-10 13:37:07 -05:00
|
|
|
|
2021-07-28 11:32:59 -04:00
|
|
|
if r, path := client.GetRouter(); r != nil {
|
2024-02-27 14:29:54 -05:00
|
|
|
b.GetWeb().RegisterWeb(r, path)
|
2021-07-28 11:32:59 -04:00
|
|
|
}
|
|
|
|
|
2024-03-07 11:53:49 -05:00
|
|
|
plugins.Register(b)
|
2013-01-22 19:22:32 -05:00
|
|
|
|
2019-02-07 14:45:59 -05:00
|
|
|
if err := client.Serve(); err != nil {
|
2019-03-07 11:35:42 -05:00
|
|
|
log.Fatal().Err(err)
|
2017-09-07 00:32:53 -04:00
|
|
|
}
|
2019-02-07 14:45:59 -05:00
|
|
|
|
2022-07-23 00:17:44 -04:00
|
|
|
log.Debug().Msgf("Sending bot.Startup message")
|
2021-02-14 16:57:22 -05:00
|
|
|
b.Receive(client, bot.Startup, msg.Message{})
|
|
|
|
|
2021-07-21 14:52:45 -04:00
|
|
|
b.ListenAndServe()
|
2012-08-17 16:38:15 -04:00
|
|
|
}
|