77 lines
2.2 KiB
Go
77 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/disgoorg/disgo/bot"
|
|
"github.com/disgoorg/disgo/discord"
|
|
"github.com/disgoorg/disgo/events"
|
|
"github.com/disgoorg/json"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/vaporvee/acecore/shared"
|
|
)
|
|
|
|
var db *sql.DB
|
|
|
|
var dbCreateQuery string = `
|
|
CREATE TABLE IF NOT EXISTS autopublish (
|
|
guild_id TEXT NOT NULL,
|
|
news_channel_id TEXT NOT NULL,
|
|
PRIMARY KEY (guild_id, news_channel_id)
|
|
);
|
|
`
|
|
|
|
var Plugin = &shared.Plugin{
|
|
Name: "Auto Publish",
|
|
Init: func(d *sql.DB) error {
|
|
db = d
|
|
_, err := d.Exec(dbCreateQuery)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
shared.BotConfigs = append(shared.BotConfigs, bot.WithEventListenerFunc(messageCreate))
|
|
return nil
|
|
},
|
|
Commands: []shared.Command{
|
|
{
|
|
Definition: discord.SlashCommandCreate{
|
|
Name: "autopublish",
|
|
Description: "Toggle automatically publishing every post in a announcement channel",
|
|
DefaultMemberPermissions: json.NewNullablePtr(discord.PermissionManageChannels),
|
|
Contexts: []discord.InteractionContextType{
|
|
discord.InteractionContextTypeGuild,
|
|
discord.InteractionContextTypePrivateChannel},
|
|
IntegrationTypes: []discord.ApplicationIntegrationType{
|
|
discord.ApplicationIntegrationTypeGuildInstall},
|
|
},
|
|
Interact: func(e *events.ApplicationCommandInteractionCreate) {
|
|
channel := e.Channel()
|
|
if channel.Type() == discord.ChannelTypeGuildNews {
|
|
if toggleAutoPublish(e.GuildID().String(), e.Channel().ID().String()) {
|
|
err := e.CreateMessage(discord.NewMessageCreateBuilder().
|
|
SetContent("Autopublishing is now disabled on " + discord.ChannelMention(e.Channel().ID())).SetEphemeral(true).
|
|
Build())
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
} else {
|
|
err := e.CreateMessage(discord.NewMessageCreateBuilder().
|
|
SetContent("Autopublishing is now enabled on " + discord.ChannelMention(e.Channel().ID())).SetEphemeral(true).
|
|
Build())
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
}
|
|
} else {
|
|
err := e.CreateMessage(discord.NewMessageCreateBuilder().
|
|
SetContent("This is not an announcement channel!").SetEphemeral(true).
|
|
Build())
|
|
if err != nil {
|
|
logrus.Error(err)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
},
|
|
}
|