2022-08-07 01:34:31 +02:00
|
|
|
package main
|
2022-06-21 00:31:17 +02:00
|
|
|
|
|
|
|
import (
|
2022-08-15 00:53:41 +02:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2022-06-21 00:31:17 +02:00
|
|
|
|
|
|
|
"github.com/gempir/go-twitch-irc/v3"
|
2023-01-04 15:32:17 +01:00
|
|
|
"github.com/lyx0/nourybot/internal/common"
|
2022-08-17 14:45:35 +02:00
|
|
|
"github.com/lyx0/nourybot/internal/data"
|
2022-06-21 00:31:17 +02:00
|
|
|
)
|
|
|
|
|
2023-03-04 02:52:52 +01:00
|
|
|
// AddCommand splits a message into two parts and passes on the
|
|
|
|
// name and text to the database handler.
|
2022-08-15 00:53:41 +02:00
|
|
|
func (app *Application) AddCommand(name string, message twitch.PrivateMessage) {
|
2023-03-04 02:52:52 +01:00
|
|
|
// snipLength is the length we need to "snip" off of the start of `message`.
|
|
|
|
// `()addcommand` = +12
|
|
|
|
// trailing space = +1
|
|
|
|
// zero-based = +1
|
|
|
|
// = 14
|
|
|
|
snipLength := 14
|
2022-08-15 00:53:41 +02:00
|
|
|
|
2023-03-04 02:52:52 +01: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)]
|
2022-08-17 14:45:35 +02:00
|
|
|
command := &data.Command{
|
|
|
|
Name: name,
|
|
|
|
Text: text,
|
|
|
|
Category: "uncategorized",
|
|
|
|
Level: 0,
|
2023-03-04 01:04:28 +01:00
|
|
|
Help: "",
|
2022-08-17 14:45:35 +02:00
|
|
|
}
|
|
|
|
err := app.Models.Commands.Insert(command)
|
2022-08-15 00:53:41 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
reply := fmt.Sprintf("Something went wrong FeelsBadMan %s", err)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
2022-08-08 13:17:42 +02:00
|
|
|
return
|
2022-08-15 00:53:41 +02:00
|
|
|
} else {
|
|
|
|
reply := fmt.Sprintf("Successfully added command: %s", name)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
2022-08-08 13:17:42 +02:00
|
|
|
return
|
2022-08-15 00:53:41 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-11 21:49:19 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
// 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(name, username string) (string, error) {
|
|
|
|
// Fetch the command from the database if it exists.
|
|
|
|
command, err := app.Models.Commands.Get(name)
|
|
|
|
if err != nil {
|
|
|
|
// It probably did not exist
|
|
|
|
return "", err
|
|
|
|
}
|
2022-08-08 16:43:21 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
// 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.Text, 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
|
2022-08-07 21:43:40 +02:00
|
|
|
}
|
2022-08-15 00:53:41 +02:00
|
|
|
if user.Level >= command.Level {
|
|
|
|
// Userlevel is sufficient so return the command.Text
|
|
|
|
return command.Text, nil
|
2022-08-08 16:43:21 +02:00
|
|
|
}
|
2022-08-15 00:53:41 +02:00
|
|
|
}
|
2022-08-11 21:49:19 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
// Userlevel was not enough so return an empty string and error.
|
|
|
|
return "", ErrUserInsufficientLevel
|
|
|
|
}
|
2022-08-08 16:43:21 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
// 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.Logger.Error(err)
|
|
|
|
common.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrCommandLevelNotInteger), app.TwitchClient)
|
2022-08-07 21:43:40 +02:00
|
|
|
return
|
2022-08-15 00:53:41 +02:00
|
|
|
}
|
2022-08-11 21:49:19 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
err = app.Models.Commands.SetLevel(name, level)
|
2022-08-08 16:43:21 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
if err != nil {
|
|
|
|
common.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), app.TwitchClient)
|
|
|
|
app.Logger.Error(err)
|
2022-08-08 13:45:37 +02:00
|
|
|
return
|
2022-08-15 00:53:41 +02:00
|
|
|
} else {
|
|
|
|
reply := fmt.Sprintf("Updated command %s to level %v", name, level)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
2022-08-08 13:45:37 +02:00
|
|
|
return
|
2022-08-15 00:53:41 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-11 19:31:58 +02:00
|
|
|
|
2022-08-15 13:53:07 +02:00
|
|
|
// EditCommandCategory takes in a name and category string and updates the command
|
|
|
|
// in the databse with the passed in new category.
|
2022-08-15 00:53:41 +02:00
|
|
|
func (app *Application) EditCommandCategory(name, category string, message twitch.PrivateMessage) {
|
|
|
|
err := app.Models.Commands.SetCategory(name, category)
|
2022-08-11 21:49:19 +02:00
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
if err != nil {
|
|
|
|
common.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), app.TwitchClient)
|
|
|
|
app.Logger.Error(err)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
reply := fmt.Sprintf("Updated command %s to category %v", name, category)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-08-11 21:49:19 +02:00
|
|
|
|
2023-03-04 02:29:29 +01:00
|
|
|
// 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`.
|
|
|
|
// `()editcommand` = +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, text)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
common.Send(message.Channel, fmt.Sprintf("Something went wrong FeelsBadMan %s", ErrRecordNotFound), app.TwitchClient)
|
|
|
|
app.Logger.Error(err)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
reply := fmt.Sprintf("Updated help text for command %s to: %v", name, text)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-15 00:53:41 +02:00
|
|
|
// 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)
|
|
|
|
if err != nil {
|
|
|
|
common.Send(message.Channel, "Something went wrong FeelsBadMan", app.TwitchClient)
|
|
|
|
app.Logger.Error(err)
|
2022-08-11 01:49:49 +02:00
|
|
|
return
|
2022-06-21 00:31:17 +02:00
|
|
|
}
|
2022-08-15 00:53:41 +02:00
|
|
|
|
|
|
|
reply := fmt.Sprintf("Deleted command %s", name)
|
|
|
|
common.Send(message.Channel, reply, app.TwitchClient)
|
2022-06-21 00:31:17 +02:00
|
|
|
}
|