mirror-nourybot/cmd/bot/channel.go

88 lines
2.5 KiB
Go
Raw Normal View History

2022-08-09 01:09:53 +02:00
package main
import (
"fmt"
"github.com/gempir/go-twitch-irc/v3"
"github.com/lyx0/nourybot/internal/data"
"github.com/lyx0/nourybot/pkg/commands/decapi"
"github.com/lyx0/nourybot/pkg/common"
)
2022-08-11 23:34:05 +02:00
// AddChannel takes in a channel name, then queries `GetIdByLogin` for the
// channels ID and inserts both the name and id value into the database.
// If there was no error thrown the `app.TwitchClient` joins the channel afterwards.
func (app *Application) AddChannel(login string, message twitch.PrivateMessage) {
2022-08-09 01:09:53 +02:00
userId, err := decapi.GetIdByLogin(login)
if err != nil {
app.Logger.Error(err)
return
}
2022-08-11 23:34:05 +02:00
// Initialize a new channel struct holding the values that will be
// passed into the `app.Models.Channels.Insert()` method.
2022-08-09 01:09:53 +02:00
channel := &data.Channel{
Login: login,
TwitchID: userId,
}
err = app.Models.Channels.Insert(channel)
if err != nil {
reply := fmt.Sprintf("Something went wrong FeelsBadMan %s", err)
common.Send(message.Channel, reply, app.TwitchClient)
return
} else {
app.TwitchClient.Join(login)
reply := fmt.Sprintf("Added channel %s", login)
common.Send(message.Channel, reply, app.TwitchClient)
return
2022-08-09 01:09:53 +02:00
}
2022-08-09 19:50:46 +02:00
}
2022-08-09 01:09:53 +02:00
2022-08-11 23:34:05 +02:00
// GetAllChannels() queries the database and lists all channels.
// Only used for debug/information purposes.
2022-08-09 23:19:08 +02:00
func (app *Application) GetAllChannels() {
channel, err := app.Models.Channels.GetAll()
if err != nil {
app.Logger.Error(err)
return
2022-08-09 23:19:08 +02:00
}
app.Logger.Infow("All channels:",
"channel", channel)
}
2022-08-11 23:34:05 +02:00
// DeleteChannel queries the database for a channel name and if it exists
// deletes the channel and makes the bot depart said channel.
func (app *Application) DeleteChannel(login string, message twitch.PrivateMessage) {
2022-08-09 19:50:46 +02:00
err := app.Models.Channels.Delete(login)
if err != nil {
common.Send(message.Channel, "Something went wrong FeelsBadMan", app.TwitchClient)
app.Logger.Error(err)
return
}
app.TwitchClient.Depart(login)
2022-08-09 19:50:46 +02:00
reply := fmt.Sprintf("Deleted channel %s", login)
common.Send(message.Channel, reply, app.TwitchClient)
2022-08-09 01:09:53 +02:00
}
2022-08-11 23:34:05 +02:00
// InitialJoin is called on startup and gets all the channels from the database
// so that the `app.TwitchClient` then joins each.
func (app *Application) InitialJoin() {
2022-08-11 23:34:05 +02:00
// GetJoinable returns a `[]string` containing the channel names.
channel, err := app.Models.Channels.GetJoinable()
if err != nil {
app.Logger.Error(err)
return
}
2022-08-11 23:34:05 +02:00
// Iterate over the `[]string` and join each.
for _, v := range channel {
app.TwitchClient.Join(v)
app.Logger.Infow("Joining channel:",
"channel", v)
}
}