54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
package shared
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"velox-bot/internal/db/services"
|
|
|
|
"github.com/bwmarrin/discordgo"
|
|
)
|
|
|
|
func RespondEphemeral(s *discordgo.Session, i *discordgo.InteractionCreate, msg string) {
|
|
_ = s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
|
|
Type: discordgo.InteractionResponseChannelMessageWithSource,
|
|
Data: &discordgo.InteractionResponseData{
|
|
Content: msg,
|
|
Flags: discordgo.MessageFlagsEphemeral,
|
|
},
|
|
})
|
|
}
|
|
|
|
func RequireGuild(s *discordgo.Session, i *discordgo.InteractionCreate) bool {
|
|
if i.GuildID == "" {
|
|
RespondEphemeral(s, i, "This command can only be used in a server.")
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func RequireProjectsService(s *discordgo.Session, i *discordgo.InteractionCreate) bool {
|
|
if services.Global == nil || services.Global.Projects == nil {
|
|
RespondEphemeral(s, i, "Projects service is not available.")
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func RequireManageGuild(s *discordgo.Session, i *discordgo.InteractionCreate) bool {
|
|
if i.Member == nil || (i.Member.Permissions&discordgo.PermissionManageGuild) == 0 {
|
|
RespondEphemeral(s, i, "You don't have permission to manage projects.")
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func ParseGuildID(s *discordgo.Session, i *discordgo.InteractionCreate) (int64, bool) {
|
|
guildID, err := strconv.ParseInt(i.GuildID, 10, 64)
|
|
if err != nil {
|
|
RespondEphemeral(s, i, "Invalid guild ID.")
|
|
return 0, false
|
|
}
|
|
return guildID, true
|
|
}
|
|
|