Compare commits

...
12 Commits
6 changed files with 40 additions and 84 deletions
+14 -62
View File
@@ -9,10 +9,10 @@ package disgoman
import ( import (
"errors" "errors"
"fmt" "fmt"
"regexp"
"strings" "strings"
"github.com/bwmarrin/discordgo" "github.com/dustinpianalto/discordgo"
"github.com/kballard/go-shellquote"
) )
// AddCommand adds the Command at the address passed in to the Commands array on the CommandManager. // AddCommand adds the Command at the address passed in to the Commands array on the CommandManager.
@@ -91,14 +91,6 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
guild, _ := session.Guild(m.GuildID) guild, _ := session.Guild(m.GuildID)
var cmd []string
// If we found our prefix then remove it and split the command into pieces
cmd, err = shellquote.Split(strings.TrimPrefix(content, prefix))
if err != nil {
fmt.Println(err.Error())
if strings.Contains(err.Error(), "Unterminated") {
cmd = strings.Split(strings.TrimPrefix(content, prefix), " ")
} else {
ctx := Context{ ctx := Context{
Session: session, Session: session,
Channel: channel, Channel: channel,
@@ -107,15 +99,16 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
Guild: guild, Guild: guild,
Member: m.Member, Member: m.Member,
Invoked: "", Invoked: "",
ErrorChannel: c.ErrorChannel, CommandManager: c,
}
c.ErrorChannel <- CommandError{
Context: ctx,
Message: "",
Error: err,
}
return
} }
var cmd []string
// If we found our prefix then remove it and split the command into pieces
content = strings.TrimPrefix(content, prefix)
r := regexp.MustCompile(`[^ "]+|"([^"]*)"`)
cmd = r.FindAllString(content, -1)
for i, val := range cmd {
cmd[i] = strings.Trim(val, "\"")
} }
if len(cmd) < 1 { if len(cmd) < 1 {
@@ -123,8 +116,8 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
} }
var command *Command var command *Command
invoked := cmd[0] ctx.Invoked = cmd[0]
if cmnd, ok := c.Commands[invoked]; ok { if cmnd, ok := c.Commands[ctx.Invoked]; ok {
command = cmnd command = cmnd
} else { } else {
fmt.Println("Command Not Found") fmt.Println("Command Not Found")
@@ -139,16 +132,6 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
} }
if !CheckPermissions(session, m.Author.ID, *channel, command.RequiredPermissions) { if !CheckPermissions(session, m.Author.ID, *channel, command.RequiredPermissions) {
ctx := Context{
Session: session,
Channel: channel,
Message: m.Message,
User: m.Author,
Guild: guild,
Member: m.Member,
Invoked: cmd[0],
ErrorChannel: c.ErrorChannel,
}
c.ErrorChannel <- CommandError{ c.ErrorChannel <- CommandError{
Context: ctx, Context: ctx,
Message: "You don't have the correct permissions to run this command.", Message: "You don't have the correct permissions to run this command.",
@@ -158,16 +141,6 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
} }
if !CheckPermissions(session, session.State.User.ID, *channel, command.RequiredPermissions) { if !CheckPermissions(session, session.State.User.ID, *channel, command.RequiredPermissions) {
ctx := Context{
Session: session,
Channel: channel,
Message: m.Message,
User: m.Author,
Guild: guild,
Member: m.Member,
Invoked: cmd[0],
ErrorChannel: c.ErrorChannel,
}
c.ErrorChannel <- CommandError{ c.ErrorChannel <- CommandError{
Context: ctx, Context: ctx,
Message: "I don't have the correct permissions to run this command.", Message: "I don't have the correct permissions to run this command.",
@@ -178,16 +151,6 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
} }
if command.OwnerOnly && !c.IsOwner(m.Author.ID) { if command.OwnerOnly && !c.IsOwner(m.Author.ID) {
ctx := Context{
Session: session,
Channel: channel,
Message: m.Message,
User: m.Author,
Guild: guild,
Member: m.Member,
Invoked: cmd[0],
ErrorChannel: c.ErrorChannel,
}
c.ErrorChannel <- CommandError{ c.ErrorChannel <- CommandError{
Context: ctx, Context: ctx,
Message: "Sorry, only the bot owner(s) can run that command!", Message: "Sorry, only the bot owner(s) can run that command!",
@@ -197,16 +160,5 @@ func (c *CommandManager) OnMessage(session *discordgo.Session, m *discordgo.Mess
} }
context := Context{ go command.Invoke(ctx, cmd[1:])
Session: session,
Channel: channel,
Message: m.Message,
User: m.Author,
Guild: guild,
Member: m.Member,
Invoked: invoked,
ErrorChannel: c.ErrorChannel,
}
go command.Invoke(context, cmd[1:])
} }
+4 -3
View File
@@ -1,8 +1,9 @@
package disgoman package disgoman
import ( import (
"github.com/bwmarrin/discordgo"
"io" "io"
"github.com/bwmarrin/discordgo"
) )
/* context.go: /* context.go:
@@ -32,8 +33,8 @@ func (c *Context) SendFile(filename string, file io.Reader) (*discordgo.Message,
// Will block if the channel buffer is full. It is up to the client to implement a channel for the errors as well as // Will block if the channel buffer is full. It is up to the client to implement a channel for the errors as well as
// a function to handle the errors from said channel. If the ErrorChannel is nil then this does nothing. // a function to handle the errors from said channel. If the ErrorChannel is nil then this does nothing.
func (c *Context) SendError(message string, err error) { func (c *Context) SendError(message string, err error) {
if c.ErrorChannel != nil { if c.CommandManager.ErrorChannel != nil {
c.ErrorChannel <- CommandError{ c.CommandManager.ErrorChannel <- CommandError{
Context: *c, Context: *c,
Message: message, Message: message,
Error: err, Error: err,
+4 -2
View File
@@ -1,10 +1,11 @@
package disgoman package disgoman
import ( import (
"github.com/bwmarrin/discordgo"
"log" "log"
"math/rand" "math/rand"
"time" "time"
"github.com/bwmarrin/discordgo"
) )
/* status-manager.go: /* status-manager.go:
@@ -37,7 +38,8 @@ func (s *StatusManager) SetInterval(interval string) {
// UpdateStatus updates the status of the bot // UpdateStatus updates the status of the bot
func (s *StatusManager) UpdateStatus(session *discordgo.Session) error { func (s *StatusManager) UpdateStatus(session *discordgo.Session) error {
i := rand.Intn(len(s.Values)) i := rand.Intn(len(s.Values))
err := session.UpdateStatus(0, s.Values[i]) err := session.UpdateGameStatus(0, s.Values[i])
log.Println(err)
return err return err
} }
+2 -2
View File
@@ -80,6 +80,6 @@ type Context struct {
Member *discordgo.Member Member *discordgo.Member
// Name of the command as it was invoked (this is so you know what alias was used to call the command) // Name of the command as it was invoked (this is so you know what alias was used to call the command)
Invoked string Invoked string
// Error channel // Command Manager
ErrorChannel chan CommandError CommandManager *CommandManager
} }
+1 -1
View File
@@ -13,7 +13,7 @@ type CommandInvokeFunc func(Context, []string)
type PrefixesFunc func(string) []string type PrefixesFunc func(string) []string
// Permission type to help with managing permissions for commands // Permission type to help with managing permissions for commands
type Permission int type Permission int64
// Defining permissions based on the Discord API // Defining permissions based on the Discord API
const ( const (
+8 -7
View File
@@ -9,8 +9,9 @@ package disgoman
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/bwmarrin/discordgo"
"sort" "sort"
"github.com/bwmarrin/discordgo"
) )
// GetDefaultStatusManager returns a default Status Manager // GetDefaultStatusManager returns a default Status Manager
@@ -72,9 +73,9 @@ func CheckPermissions(session *discordgo.Session, memberID string, channel disco
for _, overwrite := range channel.PermissionOverwrites { for _, overwrite := range channel.PermissionOverwrites {
if overwrite.ID == memberID { if overwrite.ID == memberID {
if overwrite.Allow&int(perms) != 0 { if overwrite.Allow&int64(perms) != 0 {
return true // If the channel has an overwrite for the user then true return true // If the channel has an overwrite for the user then true
} else if overwrite.Deny&int(perms) != 0 { } else if overwrite.Deny&int64(perms) != 0 {
return false // If there is an explicit deny then false return false // If there is an explicit deny then false
} }
} }
@@ -93,19 +94,19 @@ func CheckPermissions(session *discordgo.Session, memberID string, channel disco
for _, overwrite := range channel.PermissionOverwrites { for _, overwrite := range channel.PermissionOverwrites {
if overwrite.ID == roleID { if overwrite.ID == roleID {
if overwrite.Allow&int(perms) != 0 { if overwrite.Allow&int64(perms) != 0 {
return true // If the channel has an overwrite for the role then true return true // If the channel has an overwrite for the role then true
} else if overwrite.Deny&int(perms) != 0 { } else if overwrite.Deny&int64(perms) != 0 {
return false // If there is an explicit deny then false return false // If there is an explicit deny then false
} }
} }
} }
if role.Permissions&int(PermissionAdministrator) != 0 { if role.Permissions&int64(PermissionAdministrator) != 0 {
return true // If they are an administrator then they automatically have all permissions return true // If they are an administrator then they automatically have all permissions
} }
if role.Permissions&int(perms) != 0 { if role.Permissions&int64(perms) != 0 {
return true // The role has the required permissions return true // The role has the required permissions
} }
} }