2021-08-19 13:33:56 +00:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-irc/irc"
|
2022-10-25 16:47:30 +00:00
|
|
|
"github.com/pkg/errors"
|
2021-08-24 22:44:49 +00:00
|
|
|
"github.com/robfig/cron/v3"
|
2021-08-19 13:33:56 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-11-25 22:48:16 +00:00
|
|
|
|
2022-11-02 21:38:14 +00:00
|
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/database"
|
|
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/twitch"
|
2021-08-19 13:33:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
Actor interface {
|
|
|
|
// Execute will be called after the config was read into the Actor
|
2021-11-11 13:59:08 +00:00
|
|
|
Execute(c *irc.Client, m *irc.Message, r *Rule, evtData *FieldCollection, attrs *FieldCollection) (preventCooldown bool, err error)
|
2021-08-19 13:33:56 +00:00
|
|
|
// IsAsync may return true if the Execute function is to be executed
|
|
|
|
// in a Go routine as of long runtime. Normally it should return false
|
|
|
|
// except in very specific cases
|
|
|
|
IsAsync() bool
|
|
|
|
// Name must return an unique name for the actor in order to identify
|
|
|
|
// it in the logs for debugging purposes
|
|
|
|
Name() string
|
2021-09-22 13:36:45 +00:00
|
|
|
// Validate will be called to validate the loaded configuration. It should
|
|
|
|
// return an error if required keys are missing from the AttributeStore
|
|
|
|
// or if keys contain broken configs
|
2022-10-31 16:26:53 +00:00
|
|
|
Validate(TemplateValidatorFunc, *FieldCollection) error
|
2021-08-19 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ActorCreationFunc func() Actor
|
|
|
|
|
2021-09-22 13:36:45 +00:00
|
|
|
ActorRegistrationFunc func(name string, acf ActorCreationFunc)
|
|
|
|
|
|
|
|
ActorDocumentationRegistrationFunc func(ActionDocumentation)
|
2021-08-19 13:33:56 +00:00
|
|
|
|
2022-12-05 17:57:41 +00:00
|
|
|
ChannelPermissionCheckFunc func(channel string, scopes ...string) (bool, error)
|
|
|
|
ChannelAnyPermissionCheckFunc func(channel string, scopes ...string) (bool, error)
|
|
|
|
|
2021-08-24 22:44:49 +00:00
|
|
|
CronRegistrationFunc func(spec string, cmd func()) (cron.EntryID, error)
|
|
|
|
|
2022-02-08 18:58:19 +00:00
|
|
|
EventHandlerFunc func(evt string, eventData *FieldCollection) error
|
|
|
|
EventHandlerRegisterFunc func(EventHandlerFunc) error
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
LoggerCreationFunc func(moduleName string) *log.Entry
|
|
|
|
|
2021-11-11 13:59:08 +00:00
|
|
|
MsgFormatter func(tplString string, m *irc.Message, r *Rule, fields *FieldCollection) (string, error)
|
2021-08-19 13:33:56 +00:00
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
MsgModificationFunc func(*irc.Message) error
|
|
|
|
MsgModificationRegistrationFunc func(linePrefix string, modFn MsgModificationFunc)
|
|
|
|
|
2021-09-02 13:01:10 +00:00
|
|
|
RawMessageHandlerFunc func(m *irc.Message) error
|
|
|
|
RawMessageHandlerRegisterFunc func(RawMessageHandlerFunc) error
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
// RegisterFunc is the type of function your plugin must expose with the name Register
|
|
|
|
RegisterFunc func(RegistrationArguments) error
|
|
|
|
|
|
|
|
RegistrationArguments struct {
|
2022-03-30 22:23:19 +00:00
|
|
|
// CreateEvent allows to create an event handed out to all modules to handle
|
|
|
|
CreateEvent EventHandlerFunc
|
2021-08-19 13:33:56 +00:00
|
|
|
// FormatMessage is a method to convert templates into strings using internally known variables / configs
|
|
|
|
FormatMessage MsgFormatter
|
2023-07-14 14:15:58 +00:00
|
|
|
// FrontendNotify is a way to send a notification to the frontend
|
|
|
|
FrontendNotify func(string)
|
2022-09-10 11:39:07 +00:00
|
|
|
// GetDatabaseConnector returns an active database.Connector to access the backend storage database
|
|
|
|
GetDatabaseConnector func() database.Connector
|
2021-08-19 13:33:56 +00:00
|
|
|
// GetLogger returns a sirupsen log.Entry pre-configured with the module name
|
|
|
|
GetLogger LoggerCreationFunc
|
2021-09-10 15:57:04 +00:00
|
|
|
// GetTwitchClient retrieves a fully configured Twitch client with initialized cache
|
|
|
|
GetTwitchClient func() *twitch.Client
|
2022-04-23 15:24:49 +00:00
|
|
|
// GetTwitchClientForChannel retrieves a fully configured Twitch client with initialized cache for extended permission channels
|
|
|
|
GetTwitchClientForChannel func(string) (*twitch.Client, error)
|
2022-12-05 17:57:41 +00:00
|
|
|
// HasAnyPermissionForChannel checks whether ANY of the given permissions were granted for the given channel
|
|
|
|
HasAnyPermissionForChannel ChannelAnyPermissionCheckFunc
|
|
|
|
// HasPermissionForChannel checks whether ALL of the given permissions were granted for the given channel
|
|
|
|
HasPermissionForChannel ChannelPermissionCheckFunc
|
2021-08-19 13:33:56 +00:00
|
|
|
// RegisterActor is used to register a new IRC rule-actor implementing the Actor interface
|
|
|
|
RegisterActor ActorRegistrationFunc
|
2021-09-22 13:36:45 +00:00
|
|
|
// RegisterActorDocumentation is used to register an ActorDocumentation for the config editor
|
|
|
|
RegisterActorDocumentation ActorDocumentationRegistrationFunc
|
2021-08-28 15:27:24 +00:00
|
|
|
// RegisterAPIRoute registers a new HTTP handler function including documentation
|
|
|
|
RegisterAPIRoute HTTPRouteRegistrationFunc
|
2021-08-24 22:44:49 +00:00
|
|
|
// RegisterCron is a method to register cron functions in the global cron instance
|
|
|
|
RegisterCron CronRegistrationFunc
|
2022-02-08 18:58:19 +00:00
|
|
|
// RegisterEventHandler is a method to register a handler function receiving ALL events
|
|
|
|
RegisterEventHandler EventHandlerRegisterFunc
|
2022-10-25 16:47:30 +00:00
|
|
|
// RegisterMessageModFunc is a method to register a handler to modify / react on messages
|
|
|
|
RegisterMessageModFunc MsgModificationRegistrationFunc
|
2021-09-02 13:01:10 +00:00
|
|
|
// RegisterRawMessageHandler is a method to register an handler to receive ALL messages received
|
|
|
|
RegisterRawMessageHandler RawMessageHandlerRegisterFunc
|
2021-08-19 14:40:34 +00:00
|
|
|
// RegisterTemplateFunction can be used to register a new template functions
|
|
|
|
RegisterTemplateFunction TemplateFuncRegister
|
2021-08-19 13:33:56 +00:00
|
|
|
// SendMessage can be used to send a message not triggered by an event
|
|
|
|
SendMessage SendMessageFunc
|
2022-02-08 18:58:19 +00:00
|
|
|
// ValidateToken offers a way to validate a token and determine whether it has permissions on a given module
|
|
|
|
ValidateToken ValidateTokenFunc
|
2021-08-19 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SendMessageFunc func(*irc.Message) error
|
2021-08-19 14:40:34 +00:00
|
|
|
|
2021-10-03 13:35:58 +00:00
|
|
|
StorageManager interface {
|
|
|
|
DeleteModuleStore(moduleUUID string) error
|
|
|
|
GetModuleStore(moduleUUID string, storedObject StorageUnmarshaller) error
|
|
|
|
SetModuleStore(moduleUUID string, storedObject StorageMarshaller) error
|
|
|
|
}
|
|
|
|
|
|
|
|
StorageMarshaller interface {
|
|
|
|
MarshalStoredObject() ([]byte, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
StorageUnmarshaller interface {
|
|
|
|
UnmarshalStoredObject([]byte) error
|
|
|
|
}
|
|
|
|
|
2021-11-11 13:59:08 +00:00
|
|
|
TemplateFuncGetter func(*irc.Message, *Rule, *FieldCollection) interface{}
|
2021-08-19 14:40:34 +00:00
|
|
|
TemplateFuncRegister func(name string, fg TemplateFuncGetter)
|
2022-02-08 18:58:19 +00:00
|
|
|
|
2022-10-31 16:26:53 +00:00
|
|
|
TemplateValidatorFunc func(raw string) error
|
|
|
|
|
2022-02-08 18:58:19 +00:00
|
|
|
ValidateTokenFunc func(token string, modules ...string) error
|
2021-08-19 13:33:56 +00:00
|
|
|
)
|
2021-08-19 14:40:34 +00:00
|
|
|
|
2022-10-25 16:47:30 +00:00
|
|
|
var ErrSkipSendingMessage = errors.New("skip sending message")
|
|
|
|
|
2021-08-19 14:40:34 +00:00
|
|
|
func GenericTemplateFunctionGetter(f interface{}) TemplateFuncGetter {
|
2021-11-11 13:59:08 +00:00
|
|
|
return func(*irc.Message, *Rule, *FieldCollection) interface{} { return f }
|
2021-08-19 14:40:34 +00:00
|
|
|
}
|