mirror of
https://github.com/lyx0/ollama-twitch-bot.git
synced 2024-11-06 18:52:03 +01:00
127 lines
2.8 KiB
Go
127 lines
2.8 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
|
||
|
"github.com/gempir/go-twitch-irc/v4"
|
||
|
"github.com/joho/godotenv"
|
||
|
"go.uber.org/zap"
|
||
|
)
|
||
|
|
||
|
type config struct {
|
||
|
twitchUsername string
|
||
|
twitchOauth string
|
||
|
twitchClientId string
|
||
|
twitchClientSecret string
|
||
|
eventSubSecret string
|
||
|
twitchID string
|
||
|
wolframAlphaAppID string
|
||
|
commandPrefix string
|
||
|
env string
|
||
|
db struct {
|
||
|
dsn string
|
||
|
maxOpenConns int
|
||
|
maxIdleConns int
|
||
|
maxIdleTime string
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type application struct {
|
||
|
TwitchClient *twitch.Client
|
||
|
Log *zap.SugaredLogger
|
||
|
Environment string
|
||
|
Config config
|
||
|
}
|
||
|
|
||
|
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(ctx context.Context, w io.Writer, args []string) error {
|
||
|
var cfg config
|
||
|
|
||
|
logger := zap.NewExample()
|
||
|
defer func() {
|
||
|
if err := logger.Sync(); err != nil {
|
||
|
logger.Sugar().Errorw("error syncing logger",
|
||
|
"error", err,
|
||
|
)
|
||
|
}
|
||
|
}()
|
||
|
sugar := logger.Sugar()
|
||
|
|
||
|
err := godotenv.Load()
|
||
|
if err != nil {
|
||
|
sugar.Fatal("Error loading .env")
|
||
|
}
|
||
|
|
||
|
// Twitch config variables
|
||
|
cfg.twitchUsername = os.Getenv("TWITCH_USERNAME")
|
||
|
cfg.twitchOauth = os.Getenv("TWITCH_OAUTH")
|
||
|
tc := twitch.NewClient(cfg.twitchUsername, cfg.twitchOauth)
|
||
|
|
||
|
app := &application{
|
||
|
TwitchClient: tc,
|
||
|
Log: sugar,
|
||
|
Config: cfg,
|
||
|
Environment: cfg.env,
|
||
|
}
|
||
|
|
||
|
// Received a PrivateMessage (normal chat message).
|
||
|
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
|
||
|
}
|
||
|
|
||
|
// 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] == "()" {
|
||
|
go app.handleCommand(message)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Special rule for #pajlada.
|
||
|
if message.Message == "!nourybot" {
|
||
|
app.Send(message.Channel, "Lidl Twitch bot made by @nouryxd. Prefix: ()")
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
app.TwitchClient.OnConnect(func() {
|
||
|
app.TwitchClient.Say("nouryxd", "MrDestructoid")
|
||
|
app.TwitchClient.Say("nourybot", "MrDestructoid")
|
||
|
|
||
|
// Successfully connected to Twitch
|
||
|
app.Log.Infow("Successfully connected to Twitch Servers",
|
||
|
"Bot username", cfg.twitchUsername,
|
||
|
"Environment", cfg.env,
|
||
|
)
|
||
|
})
|
||
|
|
||
|
app.TwitchClient.Join("nouryxd")
|
||
|
|
||
|
// Actually connect to chat.
|
||
|
err = app.TwitchClient.Connect()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|