76 lines
2.8 KiB
Go
76 lines
2.8 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/disgoorg/disgo/discord"
|
|
"github.com/disgoorg/disgo/events"
|
|
"github.com/disgoorg/json"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/vaporvee/acecore/struct_cmd"
|
|
)
|
|
|
|
var cmd_autojoinroles struct_cmd.Command = struct_cmd.Command{
|
|
Definition: discord.SlashCommandCreate{
|
|
Name: "autojoinroles",
|
|
Description: "Give users a role when they join",
|
|
DefaultMemberPermissions: json.NewNullablePtr(discord.PermissionManageRoles),
|
|
Contexts: []discord.InteractionContextType{
|
|
discord.InteractionContextTypeGuild,
|
|
discord.InteractionContextTypePrivateChannel},
|
|
IntegrationTypes: []discord.ApplicationIntegrationType{
|
|
discord.ApplicationIntegrationTypeGuildInstall},
|
|
Options: []discord.ApplicationCommandOption{
|
|
&discord.ApplicationCommandOptionSubCommand{
|
|
Name: "bot",
|
|
Description: "Give bots a role when they join (Leave empty to remove current)",
|
|
Options: []discord.ApplicationCommandOption{
|
|
&discord.ApplicationCommandOptionRole{
|
|
Name: "role",
|
|
Description: "The role bots should get when they join the server",
|
|
},
|
|
},
|
|
},
|
|
&discord.ApplicationCommandOptionSubCommand{
|
|
Name: "user",
|
|
Description: "Give users a role when they join (Leave empty to remove current)",
|
|
Options: []discord.ApplicationCommandOption{
|
|
&discord.ApplicationCommandOptionRole{
|
|
Name: "role",
|
|
Description: "The role users should get when they join the server",
|
|
}},
|
|
},
|
|
},
|
|
},
|
|
Interact: func(e *events.ApplicationCommandInteractionCreate) {
|
|
var role string
|
|
option := *e.SlashCommandInteractionData().SubCommandName
|
|
var content string
|
|
if len(e.SlashCommandInteractionData().Options) == 1 {
|
|
var givenRole discord.Role = e.SlashCommandInteractionData().Role("role")
|
|
role = givenRole.ID.String()
|
|
botrole, err := getHighestRole(e.GuildID().String(), e.Client())
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
if givenRole.Position >= botrole.Position {
|
|
content = "<@&" + role + "> is not below the Bot's current highest role(<@&" + botrole.ID.String() + ">). That makes it unable to manage it."
|
|
} else {
|
|
if setAutoJoinRole(e.GuildID().String(), option, role) {
|
|
content = "Updated auto join role for " + option + "s as <@&" + role + ">"
|
|
} else {
|
|
content = "Setup auto join role for " + option + "s as <@&" + role + ">"
|
|
}
|
|
}
|
|
} else if setAutoJoinRole(e.GuildID().String(), option, role) {
|
|
content = "Deleted auto join role for " + option + "s"
|
|
}
|
|
if content == "" {
|
|
content = "No auto join role set for " + option + "s to delete."
|
|
}
|
|
err := e.CreateMessage(discord.NewMessageCreateBuilder().SetContent(content).SetEphemeral(true).Build())
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
purgeUnusedAutoJoinRoles(e.GuildID().String())
|
|
},
|
|
}
|