mirror-nourybot/cmd/nourybot/command.go

307 lines
10 KiB
Go
Raw Normal View History

2023-09-08 00:18:09 +02:00
package main
import (
"fmt"
"strconv"
2023-12-03 17:24:42 +01:00
"strings"
2023-09-08 00:18:09 +02:00
"github.com/gempir/go-twitch-irc/v4"
"github.com/google/uuid"
2023-09-08 00:18:09 +02:00
"github.com/lyx0/nourybot/internal/data"
)
// AddCommand splits a message into two parts and passes on the
// name and text to the database handler.
func (app *application) AddCommand(name string, message twitch.PrivateMessage) {
// snipLength is the length we need to "snip" off of the start of `message`.
// `()add command` = +12
// trailing space = +1
// zero-based = +1
// = 15
2023-12-03 17:24:42 +01:00
snipLength := 15
2023-09-08 00:18:09 +02:00
// Split the twitch message at `snipLength` plus length of the name of the
// command that we want to add.
// The part of the message we are left over with is then passed on to the database
// handlers as the `text` part of the command.
//
// e.g. `()addcommand CoolSponsors Check out CoolSponsor.com they are the coolest sponsors!
// | <- snipLength + name -> | <--- command text with however many characters ---> |
// | <----- 14 + 12 ------> |
text := message.Message[snipLength+len(name) : len(message.Message)]
command := &data.Command{
Name: name,
Channel: message.Channel,
2023-09-08 00:18:09 +02:00
Text: text,
Category: "uncategorized",
Level: 0,
Help: "",
}
app.Log.Info(command)
err := app.Models.Commands.Insert(command)
if err != nil {
reply := fmt.Sprintf("Something went wrong FeelsBadMan %s", err)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
} else {
reply := fmt.Sprintf("Successfully added command: %s", name)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
}
}
// GetCommand queries the database for a name. If an entry exists it checks
// if the Command.Level is 0, if it is the command.Text value is returned.
//
// If the Command.Level is not 0 it queries the database for the level of the
// user who sent the message. If the users level is equal or higher
// the command.Text field is returned.
func (app *application) GetCommand(target, commandName string, userLevel int) (string, error) {
app.Log.Infow("command",
"target", target,
"commandname", commandName,
)
2023-09-08 00:18:09 +02:00
// Fetch the command from the database if it exists.
command, err := app.Models.Commands.Get(commandName, target)
2023-09-08 00:18:09 +02:00
if err != nil {
// It probably did not exist
return "", err
}
app.Log.Info("command", command)
2023-09-08 00:18:09 +02:00
if command.Level == 0 {
return command.Text, nil
} else if userLevel >= command.Level {
if command.Category == "ascii" {
// Cannot use app.Send() here since the command is a ascii pasta and will be
// timed out, thus not passing the banphrase check app.Send() does before actually
// sending the message.
app.SendNoBanphrase(target, command.Text)
return "", nil
} else {
2023-09-08 00:18:09 +02:00
// Userlevel is sufficient so return the command.Text
return command.Text, nil
}
// If the command has no level set just return the text.
// Otherwise check if the level is high enough.
}
2023-09-08 00:18:09 +02:00
// Userlevel was not enough so return an empty string and error.
return "", ErrUserInsufficientLevel
}
// GetCommand queries the database for a name. If an entry exists it checks
// if the Command.Level is 0, if it is the command.Text value is returned.
//
// If the Command.Level is not 0 it queries the database for the level of the
// user who sent the message. If the users level is equal or higher
// the command.Text field is returned.
func (app *application) GetCommandHelp(name, channel, username string) (string, error) {
2023-09-08 00:18:09 +02:00
// Fetch the command from the database if it exists.
command, err := app.Models.Commands.Get(name, channel)
2023-09-08 00:18:09 +02:00
if err != nil {
// It probably did not exist
return "", err
}
// If the command has no level set just return the text.
// Otherwise check if the level is high enough.
if command.Level == 0 {
return command.Help, nil
} else {
// Get the user from the database to check if the userlevel is equal
// or higher than the command.Level.
user, err := app.Models.Users.Get(username)
if err != nil {
return "", err
}
if user.Level >= command.Level {
// Userlevel is sufficient so return the command.Text
return command.Help, nil
}
}
// Userlevel was not enough so return an empty string and error.
return "", ErrUserInsufficientLevel
}
// EditCommandLevel takes in a name and level string and updates the entry with name
// to the supplied level value.
func (app *application) EditCommandLevel(name, lvl string, message twitch.PrivateMessage) {
level, err := strconv.Atoi(lvl)
if err != nil {
app.Log.Error(err)
app.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrCommandLevelNotInteger), message)
2023-09-08 00:18:09 +02:00
return
}
err = app.Models.Commands.SetLevel(name, message.Channel, level)
2023-09-08 00:18:09 +02:00
if err != nil {
app.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), message)
2023-09-08 00:18:09 +02:00
app.Log.Error(err)
return
} else {
reply := fmt.Sprintf("Updated command %s to level %v", name, level)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
}
}
// EditCommandCategory takes in a name and category string and updates the command
// in the databse with the passed in new category.
func (app *application) EditCommandCategory(name, category string, message twitch.PrivateMessage) {
err := app.Models.Commands.SetCategory(name, message.Channel, category)
2023-09-08 00:18:09 +02:00
if err != nil {
app.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), message)
2023-09-08 00:18:09 +02:00
app.Log.Error(err)
return
} else {
reply := fmt.Sprintf("Updated command %s to category %v", name, category)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
}
}
// DebugCommand checks if a command with the provided name exists in the database
// and outputs information about it in the chat.
func (app *application) DebugCommand(name string, message twitch.PrivateMessage) {
// Query the database for a command with the provided name
cmd, err := app.Models.Commands.Get(name, message.Channel)
2023-09-08 00:18:09 +02:00
if err != nil {
reply := fmt.Sprintf("Something went wrong FeelsBadMan %s", err)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
} else {
reply := fmt.Sprintf("id=%v\nname=%v\nchannel=%v\nlevel=%v\ncategory=%v\ntext=%v\nhelp=%v\n",
2023-09-08 00:18:09 +02:00
cmd.ID,
cmd.Name,
cmd.Channel,
2023-09-08 00:18:09 +02:00
cmd.Level,
cmd.Category,
cmd.Text,
cmd.Help,
)
2023-09-14 17:40:35 +02:00
//app.Send(message.Channel, reply)
resp, err := app.uploadPaste(reply)
if err != nil {
app.Log.Errorln("Could not upload paste:", err)
app.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %v", ErrDuringPasteUpload), message)
return
}
app.Send(message.Channel, resp, message)
2023-09-16 19:39:10 +02:00
//app.SendEmail(fmt.Sprintf("DEBUG for command %s", name), reply)
2023-09-08 00:18:09 +02:00
return
}
}
// SetCommandHelp updates the `help` column of a given commands name in the
// database to the provided new help text.
func (app *application) EditCommandHelp(name string, message twitch.PrivateMessage) {
// snipLength is the length we need to "snip" off of the start of `message`.
// `()edit command` = +13
// trailing space = +1
// zero-based = +1
// `help` = +4
// = 19
snipLength := 19
// Split the twitch message at `snipLength` plus length of the name of the
// command that we want to set the help text for so that we get the
// actual help message left over and then assign this string to `text`.
//
// e.g. `()editcommand help FeelsDankMan Returns a FeelsDankMan ascii art. Requires user level 500.`
// | <---- snipLength + name ----> | <------ help text with however many characters. ----> |
// | <--------- 19 + 12 --------> |
text := message.Message[snipLength+len(name) : len(message.Message)]
err := app.Models.Commands.SetHelp(name, message.Channel, text)
2023-09-08 00:18:09 +02:00
if err != nil {
app.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), message)
2023-09-08 00:18:09 +02:00
app.Log.Error(err)
return
} else {
reply := fmt.Sprintf("Updated help text for command %s to: %v", name, text)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
return
}
}
// DeleteCommand takes in a name value and deletes the command from the database if it exists.
func (app *application) DeleteCommand(name string, message twitch.PrivateMessage) {
err := app.Models.Commands.Delete(name, message.Channel)
2023-09-08 00:18:09 +02:00
if err != nil {
app.Send(message.Channel, "Something went wrong FeelsBadMan", message)
2023-09-08 00:18:09 +02:00
app.Log.Error(err)
return
}
reply := fmt.Sprintf("Deleted command %s", name)
app.Send(message.Channel, reply, message)
2023-09-08 00:18:09 +02:00
}
func (app *application) LogCommand(msg twitch.PrivateMessage, commandName string, userLevel int) {
twitchLogin := msg.User.Name
twitchID := msg.User.ID
twitchMessage := msg.Message
twitchChannel := msg.Channel
identifier := uuid.NewString()
rawMsg := msg.Raw
go app.Models.CommandsLogs.Insert(twitchLogin, twitchID, twitchChannel, twitchMessage, commandName, userLevel, identifier, rawMsg)
}
2023-12-03 17:24:42 +01:00
// InitialTimers is called on startup and queries the database for a list of
// timers and then adds each onto the scheduler.
func (app *application) ListCommands() string {
command, err := app.Models.Commands.GetAll()
if err != nil {
app.Log.Errorw("Error trying to retrieve all timers from database", err)
return ""
}
// The slice of timers is only used to log them at
// the start so it looks a bit nicer.
var cs []string
// Iterate over all timers and then add them onto the scheduler.
for i, v := range command {
// idk why this works but it does so no touchy touchy.
// https://github.com/robfig/cron/issues/420#issuecomment-940949195
i, v := i, v
_ = i
// cronName is the internal, unique tag/name for the timer.
// A timer named "sponsor" in channel "forsen" will be named "forsensponsor"
c := fmt.Sprintf(
"ID: \t\t%v\n"+
"Name: \t\t%v\n"+
"Channel: \t%v\n"+
2023-12-03 17:24:42 +01:00
"Text: \t\t%v\n"+
"Category: \t%v\n"+
"Level: \t\t%v\n"+
"Help: \t\t%v\n"+
"\n\n",
v.ID, v.Name, v.Channel, v.Text, v.Category, v.Level, v.Help,
2023-12-03 17:24:42 +01:00
)
// Add new value to the slice
cs = append(cs, c)
//app.Scheduler.AddFunc(repeating, func() { app.newPrivateMessageTimer(v.Channel, v.Text) }, cronName)
}
reply, err := app.uploadPaste(strings.Join(cs, ""))
if err != nil {
app.Log.Errorw("Error trying to retrieve all timers from database", err)
return ""
}
return reply
}