Documentation ¶
Index ¶
- Constants
- Variables
- func CutReminderShort(msg string) string
- func DisplayReminders(reminders models.ReminderSlice, mode DisplayRemindersMode) string
- func NewReminder(userID int64, guildID int64, channelID int64, message string, when time.Time) (*models.Reminder, error)
- func RegisterPlugin()
- func TriggerReminder(r *models.Reminder) error
- type DisplayRemindersMode
- type Plugin
Constants ¶
View Source
const ( MaxReminders = 25 MaxReminderOffset = time.Hour * 24 * 366 MaxReminderOffsetExceededMsg = "Can be max 1 year from now..." )
Variables ¶
View Source
var DBSchemas = []string{`
CREATE TABLE IF NOT EXISTS reminders (
id SERIAL PRIMARY KEY,
created_at TIMESTAMP WITH TIME ZONE NOT NULL,
updated_at TIMESTAMP WITH TIME ZONE NOT NULL,
deleted_at TIMESTAMP WITH TIME ZONE,
-- text instead of bigint for legacy compatibility
user_id TEXT NOT NULL,
channel_id TEXT NOT NULL,
guild_id BIGINT NOT NULL,
message TEXT NOT NULL,
"when" BIGINT NOT NULL
);
`, `
CREATE INDEX IF NOT EXISTS idx_reminders_deleted_at ON reminders(deleted_at);
`, `
-- Previous versions of the reputation module used gorm instead of sqlboiler,
-- which does not add NOT NULL constraints by default. Therefore, ensure the
-- NOT NULL constraints are present in existing tables as well.
-- The first few columns below have always been set since the reminders plugin was
-- added, so barring the presence of invalid entries, we can safely add NOT NULL
-- constraints without error.
ALTER TABLE reminders ALTER COLUMN created_at SET NOT NULL;
`, `
ALTER TABLE reminders ALTER COLUMN updated_at SET NOT NULL;
`, `
ALTER TABLE reminders ALTER COLUMN user_id SET NOT NULL;
`, `
ALTER TABLE reminders ALTER COLUMN channel_id SET NOT NULL;
`, `
ALTER TABLE reminders ALTER COLUMN message SET NOT NULL;
`, `
ALTER TABLE reminders ALTER COLUMN "when" SET NOT NULL;
`, `
DO $$
BEGIN
-- The guild_id column is more annoying to deal with. When the reminders plugin
-- was first created, the reminders table did not have a guild_id column -- it
-- was added later, in October 2018 (9f5ef28). So reminders before then could
-- plausibly have guild_id = NULL, meaning directly adding the NOT NULL
-- constraint would fail. But since the maximum offset of a reminder is 1 year,
-- all such reminders have now expired and so we can just delete them before
-- adding the constraint.
-- Only run if we haven't added the NOT NULL constraint yet.
IF EXISTS(SELECT 1 FROM information_schema.columns WHERE table_name='reminders' AND column_name='guild_id' AND is_nullable='YES') THEN
DELETE FROM reminders WHERE guild_id IS NULL;
ALTER TABLE reminders ALTER COLUMN guild_id SET NOT NULL;
END IF;
END $$;
`}
Functions ¶
func CutReminderShort ¶ added in v2.40.0
func DisplayReminders ¶ added in v2.40.0
func DisplayReminders(reminders models.ReminderSlice, mode DisplayRemindersMode) string
func NewReminder ¶
func RegisterPlugin ¶
func RegisterPlugin()
func TriggerReminder ¶ added in v2.40.0
Types ¶
type DisplayRemindersMode ¶ added in v2.40.0
type DisplayRemindersMode int
const ( ModeDisplayChannelReminders DisplayRemindersMode = iota ModeDisplayUserReminders )
type Plugin ¶
type Plugin struct{}
func (*Plugin) AddCommands ¶
func (p *Plugin) AddCommands()
func (*Plugin) PluginInfo ¶
func (p *Plugin) PluginInfo() *common.PluginInfo
Click to show internal directories.
Click to hide internal directories.