mirror-nourybot/cmd/nourybot/main.go

307 lines
7.5 KiB
Go
Raw Normal View History

2022-08-06 23:45:02 +02:00
package main
2022-08-07 01:34:31 +02:00
import (
"context"
"database/sql"
2023-12-03 16:35:34 +01:00
"fmt"
"io"
"os"
"os/signal"
"time"
2023-08-08 01:00:14 +02:00
"github.com/gempir/go-twitch-irc/v4"
"github.com/golang-migrate/migrate/v4"
_ "github.com/golang-migrate/migrate/v4/database/postgres"
_ "github.com/golang-migrate/migrate/v4/source/file"
"github.com/jakecoffman/cron"
"github.com/joho/godotenv"
_ "github.com/lib/pq"
2024-05-13 01:50:26 +02:00
"github.com/nicklaw5/helix/v2"
2024-03-31 20:57:16 +02:00
"github.com/nouryxd/nourybot/internal/data"
"github.com/nouryxd/nourybot/pkg/common"
2023-08-04 20:57:40 +02:00
2022-08-07 03:09:09 +02:00
"go.uber.org/zap"
2022-08-07 01:34:31 +02:00
)
type config struct {
2022-08-29 21:24:30 +02:00
twitchUsername string
twitchOauth string
twitchClientId string
twitchClientSecret string
eventSubSecret string
twitchID string
migrate string
2023-12-17 17:17:55 +01:00
wolframAlphaAppID string
2022-08-29 21:24:30 +02:00
commandPrefix string
env string
2022-08-29 21:24:30 +02:00
db struct {
dsn string
maxOpenConns int
maxIdleConns int
maxIdleTime string
}
}
2023-08-04 20:57:40 +02:00
type application struct {
TwitchClient *twitch.Client
2022-08-29 21:24:30 +02:00
HelixClient *helix.Client
2023-08-04 20:57:40 +02:00
Log *zap.SugaredLogger
Db *sql.DB
Models data.Models
Scheduler *cron.Cron
Environment string
2023-12-17 17:17:55 +01:00
Config config
2023-08-04 20:57:40 +02:00
// Rdb *redis.Client
}
2022-08-06 23:45:02 +02:00
func main() {
ctx := context.Background()
ctx, cancel := signal.NotifyContext(ctx, os.Interrupt)
defer cancel()
if err := run(ctx, os.Stdout, os.Args); err != nil {
fmt.Fprintf(os.Stderr, "%s\n", err)
os.Exit(1)
}
}
func run(_ context.Context, _ io.Writer, _ []string) error {
var cfg config
2024-02-28 11:53:39 +01:00
2023-03-04 05:34:46 +01:00
logger := zap.NewExample()
2023-08-08 02:37:37 +02:00
defer func() {
if err := logger.Sync(); err != nil {
logger.Sugar().Errorw("error syncing logger",
2023-08-08 02:37:37 +02:00
"error", err,
)
}
}()
2023-03-04 05:34:46 +01:00
sugar := logger.Sugar()
2022-08-08 23:58:25 +02:00
common.StartTime()
err := godotenv.Load()
if err != nil {
2023-08-04 20:57:40 +02:00
sugar.Fatal("Error loading .env")
}
2022-08-07 03:09:09 +02:00
// Twitch config variables
cfg.twitchUsername = os.Getenv("TWITCH_USERNAME")
cfg.twitchOauth = os.Getenv("TWITCH_OAUTH")
2022-08-29 21:24:30 +02:00
cfg.twitchClientId = os.Getenv("TWITCH_CLIENT_ID")
cfg.twitchClientSecret = os.Getenv("TWITCH_CLIENT_SECRET")
cfg.migrate = os.Getenv("MIGRATE")
cfg.eventSubSecret = os.Getenv("EVENTSUB_SECRET")
2023-12-17 17:17:55 +01:00
cfg.wolframAlphaAppID = os.Getenv("WOLFRAMALPHA_APP_ID")
cfg.twitchID = os.Getenv("TWITCH_ID")
cfg.env = os.Getenv("ENV")
2022-08-08 23:58:25 +02:00
tc := twitch.NewClient(cfg.twitchUsername, cfg.twitchOauth)
switch cfg.env {
2023-03-03 22:16:32 +01:00
case "dev":
cfg.db.dsn = os.Getenv("DSN")
cfg.commandPrefix = "!!"
2023-03-03 22:16:32 +01:00
case "prod":
cfg.db.dsn = os.Getenv("DSN")
cfg.commandPrefix = "()"
2023-03-03 22:16:32 +01:00
}
// Database config variables
cfg.db.maxOpenConns = 25
cfg.db.maxIdleConns = 25
cfg.db.maxIdleTime = "15m"
if cfg.migrate != "no" {
sugar.Infow("Running database migration",
"direction", cfg.migrate)
if cfg.migrate == "up" {
migrateDB("up", cfg.db.dsn, sugar)
} else if cfg.migrate == "down" {
migrateDB("down", cfg.db.dsn, sugar)
}
}
// Initialize a new Helix Client, request a new AppAccessToken
// and set the token on the client.
2022-08-29 21:24:30 +02:00
helixClient, err := helix.NewClient(&helix.Options{
ClientID: cfg.twitchClientId,
ClientSecret: cfg.twitchClientSecret,
2022-08-29 21:24:30 +02:00
})
if err != nil {
sugar.Fatalw("Error creating new helix client",
"helixClient", helixClient,
2022-08-29 21:24:30 +02:00
"err", err,
)
}
helixResp, err := helixClient.RequestAppAccessToken([]string{"user:read:email"})
if err != nil {
sugar.Fatalw("Helix: Error getting new helix AppAcessToken",
"resp", helixResp,
"err", err,
)
}
// Set the access token on the client
helixClient.SetAppAccessToken(helixResp.Data.AccessToken)
2022-08-12 00:08:39 +02:00
// Establish database connection
db, err := openDB(cfg)
if err != nil {
2023-08-04 20:57:40 +02:00
sugar.Fatalw("could not establish database connection",
"err", err,
)
}
2023-08-04 20:57:40 +02:00
app := &application{
2022-08-07 02:27:40 +02:00
TwitchClient: tc,
2022-08-29 21:24:30 +02:00
HelixClient: helixClient,
2023-08-04 20:57:40 +02:00
Log: sugar,
Db: db,
Models: data.NewModels(db),
Scheduler: cron.New(),
2023-12-17 17:17:55 +01:00
Config: cfg,
Environment: cfg.env,
2022-08-07 01:34:31 +02:00
}
2022-08-07 03:17:29 +02:00
app.Log.Infow("db.Stats",
"db.Stats", db.Stats(),
)
2022-08-07 21:43:40 +02:00
// Received a PrivateMessage (normal chat message).
2022-08-07 01:34:31 +02:00
app.TwitchClient.OnPrivateMessage(func(message twitch.PrivateMessage) {
// roomId is the Twitch UserID of the channel the message originated from.
// If there is no roomId something went really wrong.
roomId := message.Tags["room-id"]
if roomId == "" {
return
}
2023-08-08 02:37:37 +02:00
// Message was shorter than our prefix is therefore it's irrelevant for us.
if len(message.Message) >= 2 {
// This bots prefix is "()" configured above at cfg.commandPrefix,
// Check if the first 2 characters of the mesage were our prefix.
// if they were forward the message to the command handler.
if message.Message[:2] == cfg.commandPrefix {
go app.handleCommand(message)
2023-08-08 02:37:37 +02:00
return
}
// Special rule for #pajlada.
if message.Message == "!nourybot" {
2023-10-23 13:48:27 +02:00
app.Send(message.Channel, "Lidl Twitch bot made by @nouryxd. Prefix: ()", message)
2023-08-08 02:37:37 +02:00
}
}
2022-08-07 03:09:09 +02:00
})
2022-08-06 23:45:02 +02:00
2023-12-03 16:35:34 +01:00
app.TwitchClient.OnClearChatMessage(func(message twitch.ClearChatMessage) {
if message.BanDuration == 0 && message.Channel == "forsen" {
2024-02-29 21:17:39 +01:00
app.TwitchClient.Say("nouryxd",
fmt.Sprintf("MODS https://logs.ivr.fi/?channel=forsen&username=%v",
message.TargetUsername))
2023-12-03 16:35:34 +01:00
}
if message.BanDuration >= 28700 && message.Channel == "forsen" {
2024-02-29 21:17:39 +01:00
app.TwitchClient.Say("nouryxd",
fmt.Sprintf("monkaS -%v https://logs.ivr.fi/?channel=forsen&username=%v",
message.BanDuration, message.TargetUsername))
2023-12-03 16:35:34 +01:00
}
})
2023-12-03 19:13:52 +01:00
app.InitialJoin()
// Load the initial timers from the database.
app.InitialTimers()
// Start the timers.
app.Scheduler.Start()
2023-08-08 02:37:37 +02:00
app.TwitchClient.OnConnect(func() {
2023-11-01 19:40:00 +01:00
app.TwitchClient.Say("nouryxd", "gopherDance")
app.TwitchClient.Say("nourybot", "gopherDance")
2023-11-01 19:40:00 +01:00
app.TwitchClient.Say("xnoury", "alienPls")
app.TwitchClient.Say("uudelleenkykeytynyt", "pajaDink")
2023-08-08 02:37:37 +02:00
// Successfully connected to Twitch
app.Log.Infow("Successfully connected to Twitch Servers",
"Bot username", cfg.twitchUsername,
"Environment", cfg.env,
2023-08-08 02:37:37 +02:00
"Database Open Conns", cfg.db.maxOpenConns,
"Database Idle Conns", cfg.db.maxIdleConns,
"Database Idle Time", cfg.db.maxIdleTime,
"Database", db.Stats(),
"Helix", helixResp,
)
2022-08-18 18:57:29 +02:00
})
2023-12-10 20:13:06 +01:00
// Start status page
go app.startRouter()
2022-08-08 23:58:25 +02:00
// Actually connect to chat.
err = app.TwitchClient.Connect()
2022-08-06 23:45:02 +02:00
if err != nil {
panic(err)
}
return nil
2022-08-06 23:45:02 +02:00
}
2022-08-08 23:58:25 +02:00
// openDB returns the sql.DB connection pool.
func openDB(cfg config) (*sql.DB, error) {
2022-08-08 23:58:25 +02:00
// sql.Open() creates an empty connection pool with the provided DSN
db, err := sql.Open("postgres", cfg.db.dsn)
if err != nil {
return nil, err
}
2022-08-08 23:58:25 +02:00
// Set database restraints.
db.SetMaxOpenConns(cfg.db.maxOpenConns)
db.SetMaxIdleConns(cfg.db.maxIdleConns)
2022-08-08 23:58:25 +02:00
// Parse the maxIdleTime string into an actual duration and set it.
duration, err := time.ParseDuration(cfg.db.maxIdleTime)
if err != nil {
return nil, err
}
db.SetConnMaxIdleTime(duration)
2022-08-08 23:58:25 +02:00
// Create a new context with a 5 second timeout.
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
2022-08-08 23:58:25 +02:00
// db.PingContext() is needed to actually check if the
// connection to the database was successful.
err = db.PingContext(ctx)
if err != nil {
return nil, err
}
return db, nil
}
func migrateDB(direction string, dsn string, logger *zap.SugaredLogger) {
defer os.Exit(69)
m, err := migrate.New(
"file://migrations/prod",
dsn)
if err != nil {
logger.Fatal(err)
}
switch direction {
case "up":
if err := m.Up(); err != nil {
logger.Fatalw("Error migrating database",
"err", err)
}
logger.Infow("Database migration successful",
"direction", direction)
case "down":
if err := m.Down(); err != nil {
logger.Fatalw("Error migrating database",
"err", err)
}
logger.Infow("Database migration successful",
"direction", direction)
default:
}
}