Documentation ¶
Overview ¶
The plugin package is used by Mattermost server plugins written in go. It also enables the Mattermost server to manage and interact with the running plugin environment.
Note that this package exports a large number of types prefixed with Z_. These are public only to allow their use with Hashicorp's go-plugin (and net/rpc). Do not use these directly.
Example (HelloWorld) ¶
This example demonstrates a plugin that handles HTTP requests which respond by greeting the world.
package main import ( "fmt" "net/http" "github.com/mattermost/mattermost-server/plugin" ) type HelloWorldPlugin struct { plugin.MattermostPlugin } func (p *HelloWorldPlugin) ServeHTTP(c *plugin.Context, w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, world!") } // This example demonstrates a plugin that handles HTTP requests which respond by greeting the // world. func main() { plugin.ClientMain(&HelloWorldPlugin{}) }
Output:
Example (HelpPlugin) ¶
package main import ( "strings" "github.com/mattermost/mattermost-server/model" "github.com/mattermost/mattermost-server/plugin" ) type HelpPlugin struct { plugin.MattermostPlugin TeamName string ChannelName string channelId string } func (p *HelpPlugin) OnConfigurationChange() error { // Reuse the default implementation of OnConfigurationChange to automatically load the // required TeamName and ChannelName. if err := p.MattermostPlugin.OnConfigurationChange(); err != nil { p.API.LogError(err.Error()) return nil } team, err := p.API.GetTeamByName(p.TeamName) if err != nil { p.API.LogError("failed to find team", "team_name", p.TeamName) return nil } channel, err := p.API.GetChannelByName(p.ChannelName, team.Id, false) if err != nil { p.API.LogError("failed to find channel", "channel_name", p.ChannelName) return nil } p.channelId = channel.Id return nil } func (p *HelpPlugin) MessageHasBeenPosted(c *plugin.Context, post *model.Post) { // Ignore posts not in the configured channel if post.ChannelId != p.channelId { return } // Ignore posts this plugin made. if sentByPlugin, _ := post.Props["sent_by_plugin"].(bool); sentByPlugin { return } // Ignore posts without a plea for help. if !strings.Contains(post.Message, "help") { return } p.API.SendEphemeralPost(post.UserId, &model.Post{ ChannelId: p.channelId, Message: "You asked for help? Checkout https://about.mattermost.com/help/", Props: map[string]interface{}{ "sent_by_plugin": true, }, }) } func main() { plugin.ClientMain(&HelpPlugin{}) }
Output:
Index ¶
- Constants
- func ClientMain(pluginImplementation interface{})
- func IsValidId(id string) bool
- type API
- type Context
- type Environment
- func (env *Environment) Activate(id string) (manifest *model.Manifest, activated bool, reterr error)
- func (env *Environment) Active() []*model.BundleInfo
- func (env *Environment) Available() ([]*model.BundleInfo, error)
- func (env *Environment) Deactivate(id string) bool
- func (env *Environment) HooksForPlugin(id string) (Hooks, error)
- func (env *Environment) IsActive(id string) bool
- func (env *Environment) RunMultiPluginHook(hookRunnerFunc multiPluginHookRunnerFunc, hookId int)
- func (env *Environment) Shutdown()
- func (env *Environment) Statuses() (model.PluginStatuses, error)
- type Hooks
- type MattermostPlugin
- type Z_AddChannelMemberArgs
- type Z_AddChannelMemberReturns
- type Z_ChannelHasBeenCreatedArgs
- type Z_ChannelHasBeenCreatedReturns
- type Z_CopyFileInfosArgs
- type Z_CopyFileInfosReturns
- type Z_CreateChannelArgs
- type Z_CreateChannelReturns
- type Z_CreatePostArgs
- type Z_CreatePostReturns
- type Z_CreateTeamArgs
- type Z_CreateTeamMemberArgs
- type Z_CreateTeamMemberReturns
- type Z_CreateTeamMembersArgs
- type Z_CreateTeamMembersReturns
- type Z_CreateTeamReturns
- type Z_CreateUserArgs
- type Z_CreateUserReturns
- type Z_DeleteChannelArgs
- type Z_DeleteChannelMemberArgs
- type Z_DeleteChannelMemberReturns
- type Z_DeleteChannelReturns
- type Z_DeletePostArgs
- type Z_DeletePostReturns
- type Z_DeleteTeamArgs
- type Z_DeleteTeamMemberArgs
- type Z_DeleteTeamMemberReturns
- type Z_DeleteTeamReturns
- type Z_DeleteUserArgs
- type Z_DeleteUserReturns
- type Z_ExecuteCommandArgs
- type Z_ExecuteCommandReturns
- type Z_FileWillBeUploadedArgs
- type Z_FileWillBeUploadedReturns
- type Z_GetChannelArgs
- type Z_GetChannelByNameArgs
- type Z_GetChannelByNameForTeamNameArgs
- type Z_GetChannelByNameForTeamNameReturns
- type Z_GetChannelByNameReturns
- type Z_GetChannelMemberArgs
- type Z_GetChannelMemberReturns
- type Z_GetChannelReturns
- type Z_GetConfigArgs
- type Z_GetConfigReturns
- type Z_GetDirectChannelArgs
- type Z_GetDirectChannelReturns
- type Z_GetGroupChannelArgs
- type Z_GetGroupChannelReturns
- type Z_GetPostArgs
- type Z_GetPostReturns
- type Z_GetPublicChannelsForTeamArgs
- type Z_GetPublicChannelsForTeamReturns
- type Z_GetSessionArgs
- type Z_GetSessionReturns
- type Z_GetTeamArgs
- type Z_GetTeamByNameArgs
- type Z_GetTeamByNameReturns
- type Z_GetTeamMemberArgs
- type Z_GetTeamMemberReturns
- type Z_GetTeamMembersArgs
- type Z_GetTeamMembersReturns
- type Z_GetTeamReturns
- type Z_GetTeamsArgs
- type Z_GetTeamsReturns
- type Z_GetUserArgs
- type Z_GetUserByEmailArgs
- type Z_GetUserByEmailReturns
- type Z_GetUserByUsernameArgs
- type Z_GetUserByUsernameReturns
- type Z_GetUserReturns
- type Z_GetUserStatusArgs
- type Z_GetUserStatusReturns
- type Z_GetUserStatusesByIdsArgs
- type Z_GetUserStatusesByIdsReturns
- type Z_KVDeleteArgs
- type Z_KVDeleteReturns
- type Z_KVGetArgs
- type Z_KVGetReturns
- type Z_KVSetArgs
- type Z_KVSetReturns
- type Z_LoadPluginConfigurationArgsArgs
- type Z_LoadPluginConfigurationArgsReturns
- type Z_LogDebugArgs
- type Z_LogDebugReturns
- type Z_LogErrorArgs
- type Z_LogErrorReturns
- type Z_LogInfoArgs
- type Z_LogInfoReturns
- type Z_LogWarnArgs
- type Z_LogWarnReturns
- type Z_MessageHasBeenPostedArgs
- type Z_MessageHasBeenPostedReturns
- type Z_MessageHasBeenUpdatedArgs
- type Z_MessageHasBeenUpdatedReturns
- type Z_MessageWillBePostedArgs
- type Z_MessageWillBePostedReturns
- type Z_MessageWillBeUpdatedArgs
- type Z_MessageWillBeUpdatedReturns
- type Z_OnActivateArgs
- type Z_OnActivateReturns
- type Z_OnConfigurationChangeArgs
- type Z_OnConfigurationChangeReturns
- type Z_OnDeactivateArgs
- type Z_OnDeactivateReturns
- type Z_PublishWebSocketEventArgs
- type Z_PublishWebSocketEventReturns
- type Z_RegisterCommandArgs
- type Z_RegisterCommandReturns
- type Z_SaveConfigArgs
- type Z_SaveConfigReturns
- type Z_SendEphemeralPostArgs
- type Z_SendEphemeralPostReturns
- type Z_ServeHTTPArgs
- type Z_UnregisterCommandArgs
- type Z_UnregisterCommandReturns
- type Z_UpdateChannelArgs
- type Z_UpdateChannelMemberNotificationsArgs
- type Z_UpdateChannelMemberNotificationsReturns
- type Z_UpdateChannelMemberRolesArgs
- type Z_UpdateChannelMemberRolesReturns
- type Z_UpdateChannelReturns
- type Z_UpdatePostArgs
- type Z_UpdatePostReturns
- type Z_UpdateTeamArgs
- type Z_UpdateTeamMemberRolesArgs
- type Z_UpdateTeamMemberRolesReturns
- type Z_UpdateTeamReturns
- type Z_UpdateUserArgs
- type Z_UpdateUserReturns
- type Z_UpdateUserStatusArgs
- type Z_UpdateUserStatusReturns
- type Z_UserHasJoinedChannelArgs
- type Z_UserHasJoinedChannelReturns
- type Z_UserHasJoinedTeamArgs
- type Z_UserHasJoinedTeamReturns
- type Z_UserHasLeftChannelArgs
- type Z_UserHasLeftChannelReturns
- type Z_UserHasLeftTeamArgs
- type Z_UserHasLeftTeamReturns
- type Z_UserHasLoggedInArgs
- type Z_UserHasLoggedInReturns
- type Z_UserWillLogInArgs
- type Z_UserWillLogInReturns
Examples ¶
Constants ¶
const ( OnActivateId = 0 OnDeactivateId = 1 ServeHTTPId = 2 OnConfigurationChangeId = 3 ExecuteCommandId = 4 MessageWillBePostedId = 5 MessageWillBeUpdatedId = 6 MessageHasBeenPostedId = 7 MessageHasBeenUpdatedId = 8 UserHasJoinedChannelId = 9 UserHasLeftChannelId = 10 UserHasJoinedTeamId = 11 UserHasLeftTeamId = 12 ChannelHasBeenCreatedId = 13 FileWillBeUploadedId = 14 UserWillLogInId = 15 UserHasLoggedInId = 16 TotalHooksId = iota )
These assignments are part of the wire protocol used to trigger hook events in plugins.
Feel free to add more, but do not change existing assignments. Follow the naming convention of <HookName>Id as the autogenerated glue code depends on that.
const ( MinIdLength = 3 MaxIdLength = 190 ValidIdRegex = `^[a-zA-Z0-9-_\.]+$` )
Variables ¶
This section is empty.
Functions ¶
func ClientMain ¶
func ClientMain(pluginImplementation interface{})
Starts the serving of a Mattermost plugin over net/rpc. gRPC is not yet supported.
Call this when your plugin is ready to start.
Types ¶
type API ¶
type API interface { // LoadPluginConfiguration loads the plugin's configuration. dest should be a pointer to a // struct that the configuration JSON can be unmarshalled to. LoadPluginConfiguration(dest interface{}) error // RegisterCommand registers a custom slash command. When the command is triggered, your plugin // can fulfill it via the ExecuteCommand hook. RegisterCommand(command *model.Command) error // UnregisterCommand unregisters a command previously registered via RegisterCommand. UnregisterCommand(teamId, trigger string) error // GetSession returns the session object for the Session ID GetSession(sessionId string) (*model.Session, *model.AppError) // GetConfig fetches the currently persisted config GetConfig() *model.Config // SaveConfig sets the given config and persists the changes SaveConfig(config *model.Config) *model.AppError // CreateUser creates a user. CreateUser(user *model.User) (*model.User, *model.AppError) // DeleteUser deletes a user. DeleteUser(userId string) *model.AppError // GetUser gets a user. GetUser(userId string) (*model.User, *model.AppError) // GetUserByEmail gets a user by their email address. GetUserByEmail(email string) (*model.User, *model.AppError) // GetUserByUsername gets a user by their username. GetUserByUsername(name string) (*model.User, *model.AppError) // UpdateUser updates a user. UpdateUser(user *model.User) (*model.User, *model.AppError) // GetUserStatus will get a user's status. GetUserStatus(userId string) (*model.Status, *model.AppError) // GetUserStatusesByIds will return a list of user statuses based on the provided slice of user IDs. GetUserStatusesByIds(userIds []string) ([]*model.Status, *model.AppError) // UpdateUserStatus will set a user's status until the user, or another integration/plugin, sets it back to online. // The status parameter can be: "online", "away", "dnd", or "offline". UpdateUserStatus(userId, status string) (*model.Status, *model.AppError) // CreateTeam creates a team. CreateTeam(team *model.Team) (*model.Team, *model.AppError) // DeleteTeam deletes a team. DeleteTeam(teamId string) *model.AppError // GetTeam gets all teams. GetTeams() ([]*model.Team, *model.AppError) // GetTeam gets a team. GetTeam(teamId string) (*model.Team, *model.AppError) // GetTeamByName gets a team by its name. GetTeamByName(name string) (*model.Team, *model.AppError) // UpdateTeam updates a team. UpdateTeam(team *model.Team) (*model.Team, *model.AppError) // CreateTeamMember creates a team membership. CreateTeamMember(teamId, userId string) (*model.TeamMember, *model.AppError) // CreateTeamMember creates a team membership for all provided user ids. CreateTeamMembers(teamId string, userIds []string, requestorId string) ([]*model.TeamMember, *model.AppError) // DeleteTeamMember deletes a team membership. DeleteTeamMember(teamId, userId, requestorId string) *model.AppError // GetTeamMembers returns the memberships of a specific team. GetTeamMembers(teamId string, offset, limit int) ([]*model.TeamMember, *model.AppError) // GetTeamMember returns a specific membership. GetTeamMember(teamId, userId string) (*model.TeamMember, *model.AppError) // UpdateTeamMemberRoles updates the role for a team membership. UpdateTeamMemberRoles(teamId, userId, newRoles string) (*model.TeamMember, *model.AppError) // CreateChannel creates a channel. CreateChannel(channel *model.Channel) (*model.Channel, *model.AppError) // DeleteChannel deletes a channel. DeleteChannel(channelId string) *model.AppError // GetPublicChannelsForTeam gets a list of all channels. GetPublicChannelsForTeam(teamId string, offset, limit int) (*model.ChannelList, *model.AppError) // GetChannel gets a channel. GetChannel(channelId string) (*model.Channel, *model.AppError) // GetChannelByName gets a channel by its name, given a team id. GetChannelByName(teamId, name string, includeDeleted bool) (*model.Channel, *model.AppError) // GetChannelByNameForTeamName gets a channel by its name, given a team name. GetChannelByNameForTeamName(teamName, channelName string, includeDeleted bool) (*model.Channel, *model.AppError) // GetDirectChannel gets a direct message channel. GetDirectChannel(userId1, userId2 string) (*model.Channel, *model.AppError) // GetGroupChannel gets a group message channel. GetGroupChannel(userIds []string) (*model.Channel, *model.AppError) // UpdateChannel updates a channel. UpdateChannel(channel *model.Channel) (*model.Channel, *model.AppError) // AddChannelMember creates a channel membership for a user. AddChannelMember(channelId, userId string) (*model.ChannelMember, *model.AppError) // GetChannelMember gets a channel membership for a user. GetChannelMember(channelId, userId string) (*model.ChannelMember, *model.AppError) // UpdateChannelMemberRoles updates a user's roles for a channel. UpdateChannelMemberRoles(channelId, userId, newRoles string) (*model.ChannelMember, *model.AppError) // UpdateChannelMemberNotifications updates a user's notification properties for a channel. UpdateChannelMemberNotifications(channelId, userId string, notifications map[string]string) (*model.ChannelMember, *model.AppError) // DeleteChannelMember deletes a channel membership for a user. DeleteChannelMember(channelId, userId string) *model.AppError // CreatePost creates a post. CreatePost(post *model.Post) (*model.Post, *model.AppError) // SendEphemeralPost creates an ephemeral post. SendEphemeralPost(userId string, post *model.Post) *model.Post // DeletePost deletes a post. DeletePost(postId string) *model.AppError // GetPost gets a post. GetPost(postId string) (*model.Post, *model.AppError) // UpdatePost updates a post. UpdatePost(post *model.Post) (*model.Post, *model.AppError) // CopyFileInfos duplicates the FileInfo objects referenced by the given file ids, // recording the given user id as the new creator and returning the new set of file ids. // // The duplicate FileInfo objects are not initially linked to a post, but may now be passed // to CreatePost. Use this API to duplicate a post and its file attachments without // actually duplicating the uploaded files. CopyFileInfos(userId string, fileIds []string) ([]string, *model.AppError) // KVSet will store a key-value pair, unique per plugin. KVSet(key string, value []byte) *model.AppError // KVGet will retrieve a value based on the key. Returns nil for non-existent keys. KVGet(key string) ([]byte, *model.AppError) // KVDelete will remove a key-value pair. Returns nil for non-existent keys. KVDelete(key string) *model.AppError // PublishWebSocketEvent sends an event to WebSocket connections. // event is the type and will be prepended with "custom_<pluginid>_" // payload is the data sent with the event. Interface values must be primitive Go types or mattermost-server/model types // broadcast determines to which users to send the event PublishWebSocketEvent(event string, payload map[string]interface{}, broadcast *model.WebsocketBroadcast) // LogDebug writes a log message to the Mattermost server log file. // Appropriate context such as the plugin name will already be added as fields so plugins // do not need to add that info. // keyValuePairs should be primitive go types or other values that can be encoded by encoding/gob LogDebug(msg string, keyValuePairs ...interface{}) // LogInfo writes a log message to the Mattermost server log file. // Appropriate context such as the plugin name will already be added as fields so plugins // do not need to add that info. // keyValuePairs should be primitive go types or other values that can be encoded by encoding/gob LogInfo(msg string, keyValuePairs ...interface{}) // LogError writes a log message to the Mattermost server log file. // Appropriate context such as the plugin name will already be added as fields so plugins // do not need to add that info. // keyValuePairs should be primitive go types or other values that can be encoded by encoding/gob LogError(msg string, keyValuePairs ...interface{}) // LogWarn writes a log message to the Mattermost server log file. // Appropriate context such as the plugin name will already be added as fields so plugins // do not need to add that info. // keyValuePairs should be primitive go types or other values that can be encoded by encoding/gob LogWarn(msg string, keyValuePairs ...interface{}) }
The API can be used to retrieve data or perform actions on behalf of the plugin. Most methods have direct counterparts in the REST API and very similar behavior.
Plugins obtain access to the API by embedding MattermostPlugin and accessing the API member directly.
type Context ¶
type Context struct {
SessionId string
}
Context passes through metadata about the request or hook event.
It is currently a placeholder while the implementation details are sorted out.
type Environment ¶
type Environment struct {
// contains filtered or unexported fields
}
Environment represents the execution environment of active plugins.
It is meant for use by the Mattermost server to manipulate, interact with and report on the set of active plugins.
func NewEnvironment ¶
func (*Environment) Active ¶
func (env *Environment) Active() []*model.BundleInfo
Returns a list of all currently active plugins within the environment.
func (*Environment) Available ¶
func (env *Environment) Available() ([]*model.BundleInfo, error)
Returns a list of all plugins within the environment.
func (*Environment) Deactivate ¶
func (env *Environment) Deactivate(id string) bool
Deactivates the plugin with the given id.
func (*Environment) HooksForPlugin ¶
func (env *Environment) HooksForPlugin(id string) (Hooks, error)
HooksForPlugin returns the hooks API for the plugin with the given id.
Consider using RunMultiPluginHook instead.
func (*Environment) IsActive ¶
func (env *Environment) IsActive(id string) bool
IsActive returns true if the plugin with the given id is active.
func (*Environment) RunMultiPluginHook ¶
func (env *Environment) RunMultiPluginHook(hookRunnerFunc multiPluginHookRunnerFunc, hookId int)
RunMultiPluginHook invokes hookRunnerFunc for each plugin that implements the given hookId.
If hookRunnerFunc returns false, iteration will not continue. The iteration order among active plugins is not specified.
func (*Environment) Shutdown ¶
func (env *Environment) Shutdown()
Shutdown deactivates all plugins and gracefully shuts down the environment.
func (*Environment) Statuses ¶
func (env *Environment) Statuses() (model.PluginStatuses, error)
Statuses returns a list of plugin statuses representing the state of every plugin
type Hooks ¶
type Hooks interface { // OnActivate is invoked when the plugin is activated. If an error is returned, the plugin // will be terminated. The plugin will not receive hooks until after OnActivate returns // without error. OnActivate() error // Implemented returns a list of hooks that are implemented by the plugin. // Plugins do not need to provide an implementation. Any given will be ignored. Implemented() ([]string, error) // OnDeactivate is invoked when the plugin is deactivated. This is the plugin's last chance to // use the API, and the plugin will be terminated shortly after this invocation. The plugin // will stop receiving hooks just prior to this method being called. OnDeactivate() error // OnConfigurationChange is invoked when configuration changes may have been made. OnConfigurationChange() error // ServeHTTP allows the plugin to implement the http.Handler interface. Requests destined for // the /plugins/{id} path will be routed to the plugin. // // The Mattermost-User-Id header will be present if (and only if) the request is by an // authenticated user. ServeHTTP(c *Context, w http.ResponseWriter, r *http.Request) // ExecuteCommand executes a command that has been previously registered via the RegisterCommand // API. ExecuteCommand(c *Context, args *model.CommandArgs) (*model.CommandResponse, *model.AppError) // MessageWillBePosted is invoked when a message is posted by a user before it is committed // to the database. If you also want to act on edited posts, see MessageWillBeUpdated. // // To reject a post, return an non-empty string describing why the post was rejected. // To modify the post, return the replacement, non-nil *model.Post and an empty string. // To allow the post without modification, return a nil *model.Post and an empty string. // // If you don't need to modify or reject posts, use MessageHasBeenPosted instead. // // Note that this method will be called for posts created by plugins, including the plugin that // created the post. MessageWillBePosted(c *Context, post *model.Post) (*model.Post, string) // MessageWillBeUpdated is invoked when a message is updated by a user before it is committed // to the database. If you also want to act on new posts, see MessageWillBePosted. // Return values should be the modified post or nil if rejected and an explanation for the user. // On rejection, the post will be kept in its previous state. // // If you don't need to modify or rejected updated posts, use MessageHasBeenUpdated instead. // // Note that this method will be called for posts updated by plugins, including the plugin that // updated the post. MessageWillBeUpdated(c *Context, newPost, oldPost *model.Post) (*model.Post, string) // MessageHasBeenPosted is invoked after the message has been committed to the database. // If you need to modify or reject the post, see MessageWillBePosted // Note that this method will be called for posts created by plugins, including the plugin that // created the post. MessageHasBeenPosted(c *Context, post *model.Post) // MessageHasBeenUpdated is invoked after a message is updated and has been updated in the database. // If you need to modify or reject the post, see MessageWillBeUpdated // Note that this method will be called for posts created by plugins, including the plugin that // created the post. MessageHasBeenUpdated(c *Context, newPost, oldPost *model.Post) // ChannelHasBeenCreated is invoked after the channel has been committed to the database. ChannelHasBeenCreated(c *Context, channel *model.Channel) // UserHasJoinedChannel is invoked after the membership has been committed to the database. // If actor is not nil, the user was invited to the channel by the actor. UserHasJoinedChannel(c *Context, channelMember *model.ChannelMember, actor *model.User) // UserHasLeftChannel is invoked after the membership has been removed from the database. // If actor is not nil, the user was removed from the channel by the actor. UserHasLeftChannel(c *Context, channelMember *model.ChannelMember, actor *model.User) // UserHasJoinedTeam is invoked after the membership has been committed to the database. // If actor is not nil, the user was added to the team by the actor. UserHasJoinedTeam(c *Context, teamMember *model.TeamMember, actor *model.User) // UserHasLeftTeam is invoked after the membership has been removed from the database. // If actor is not nil, the user was removed from the team by the actor. UserHasLeftTeam(c *Context, teamMember *model.TeamMember, actor *model.User) // UserWillLogIn before the login of the user is returned. Returning a non empty string will reject the login event. // If you don't need to reject the login event, see UserHasLoggedIn UserWillLogIn(c *Context, user *model.User) string // UserHasLoggedIn is invoked after a user has logged in. UserHasLoggedIn(c *Context, user *model.User) // FileWillBeUploaded is invoked when a file is uploaded, but before it is committed to backing store. // Read from file to retrieve the body of the uploaded file. // // To reject a file upload, return an non-empty string describing why the file was rejected. // To modify the file, write to the output and/or return a non-nil *model.FileInfo, as well as an empty string. // To allow the file without modification, do not write to the output and return a nil *model.FileInfo and an empty string. // // Note that this method will be called for files uploaded by plugins, including the plugin that uploaded the post. // FileInfo.Size will be automatically set properly if you modify the file. FileWillBeUploaded(c *Context, info *model.FileInfo, file io.Reader, output io.Writer) (*model.FileInfo, string) }
Hooks describes the methods a plugin may implement to automatically receive the corresponding event.
A plugin only need implement the hooks it cares about. The MattermostPlugin provides some default implementations for convenience but may be overridden.
type MattermostPlugin ¶
type MattermostPlugin struct { // API exposes the plugin api, and becomes available just prior to the OnActive hook. API API // contains filtered or unexported fields }
func (*MattermostPlugin) OnConfigurationChange ¶
func (p *MattermostPlugin) OnConfigurationChange() error
OnConfigurationChange provides a default implementation of this hook event that unmarshals the plugin configuration directly onto the plugin struct.
Feel free to implement your own version of OnConfigurationChange if you need more advanced configuration handling.
func (*MattermostPlugin) SetAPI ¶
func (p *MattermostPlugin) SetAPI(api API)
SetAPI persists the given API interface to the plugin. It is invoked just prior to the OnActivate hook, exposing the API for use by the plugin.
func (*MattermostPlugin) SetSelfRef ¶
func (p *MattermostPlugin) SetSelfRef(ref interface{})
SetSelfRef is called by ClientMain to maintain a pointer to the plugin interface originally registered. This allows for the default implementation of OnConfigurationChange.
type Z_AddChannelMemberArgs ¶
type Z_AddChannelMemberReturns ¶
type Z_AddChannelMemberReturns struct { A *model.ChannelMember B *model.AppError }
type Z_ChannelHasBeenCreatedReturns ¶
type Z_ChannelHasBeenCreatedReturns struct { }
type Z_CopyFileInfosArgs ¶
type Z_CopyFileInfosReturns ¶
type Z_CreateChannelArgs ¶
type Z_CreateChannelReturns ¶
type Z_CreatePostArgs ¶
type Z_CreateTeamArgs ¶
type Z_CreateTeamMemberArgs ¶
type Z_CreateTeamMemberReturns ¶
type Z_CreateTeamMemberReturns struct { A *model.TeamMember B *model.AppError }
type Z_CreateTeamMembersArgs ¶
type Z_CreateTeamMembersReturns ¶
type Z_CreateTeamMembersReturns struct { A []*model.TeamMember B *model.AppError }
type Z_CreateUserArgs ¶
type Z_DeleteChannelArgs ¶
type Z_DeleteChannelArgs struct {
A string
}
type Z_DeleteChannelReturns ¶
type Z_DeletePostArgs ¶
type Z_DeletePostArgs struct {
A string
}
type Z_DeletePostReturns ¶
type Z_DeleteTeamArgs ¶
type Z_DeleteTeamArgs struct {
A string
}
type Z_DeleteTeamMemberArgs ¶
type Z_DeleteTeamReturns ¶
type Z_DeleteUserArgs ¶
type Z_DeleteUserArgs struct {
A string
}
type Z_DeleteUserReturns ¶
type Z_ExecuteCommandArgs ¶
type Z_ExecuteCommandArgs struct { A *Context B *model.CommandArgs }
type Z_ExecuteCommandReturns ¶
type Z_ExecuteCommandReturns struct { A *model.CommandResponse B *model.AppError }
type Z_GetChannelArgs ¶
type Z_GetChannelArgs struct {
A string
}
type Z_GetChannelByNameArgs ¶
type Z_GetChannelMemberArgs ¶
type Z_GetChannelMemberReturns ¶
type Z_GetChannelMemberReturns struct { A *model.ChannelMember B *model.AppError }
type Z_GetConfigArgs ¶
type Z_GetConfigArgs struct { }
type Z_GetConfigReturns ¶
type Z_GetDirectChannelArgs ¶
type Z_GetGroupChannelArgs ¶
type Z_GetGroupChannelArgs struct {
A []string
}
type Z_GetPostArgs ¶
type Z_GetPostArgs struct {
A string
}
type Z_GetPublicChannelsForTeamReturns ¶
type Z_GetPublicChannelsForTeamReturns struct { A *model.ChannelList B *model.AppError }
type Z_GetSessionArgs ¶
type Z_GetSessionArgs struct {
A string
}
type Z_GetTeamArgs ¶
type Z_GetTeamArgs struct {
A string
}
type Z_GetTeamByNameArgs ¶
type Z_GetTeamByNameArgs struct {
A string
}
type Z_GetTeamByNameReturns ¶
type Z_GetTeamMemberArgs ¶
type Z_GetTeamMemberReturns ¶
type Z_GetTeamMemberReturns struct { A *model.TeamMember B *model.AppError }
type Z_GetTeamMembersArgs ¶
type Z_GetTeamMembersReturns ¶
type Z_GetTeamMembersReturns struct { A []*model.TeamMember B *model.AppError }
type Z_GetTeamsArgs ¶
type Z_GetTeamsArgs struct { }
type Z_GetUserArgs ¶
type Z_GetUserArgs struct {
A string
}
type Z_GetUserByEmailArgs ¶
type Z_GetUserByEmailArgs struct {
A string
}
type Z_GetUserByEmailReturns ¶
type Z_GetUserByUsernameArgs ¶
type Z_GetUserByUsernameArgs struct {
A string
}
type Z_GetUserStatusArgs ¶
type Z_GetUserStatusArgs struct {
A string
}
type Z_GetUserStatusReturns ¶
type Z_GetUserStatusesByIdsArgs ¶
type Z_GetUserStatusesByIdsArgs struct {
A []string
}
type Z_KVDeleteArgs ¶
type Z_KVDeleteArgs struct {
A string
}
type Z_KVDeleteReturns ¶
type Z_KVGetArgs ¶
type Z_KVGetArgs struct {
A string
}
type Z_KVGetReturns ¶
type Z_KVSetArgs ¶
type Z_KVSetReturns ¶
type Z_LoadPluginConfigurationArgsArgs ¶
type Z_LoadPluginConfigurationArgsArgs struct { }
type Z_LoadPluginConfigurationArgsReturns ¶
type Z_LoadPluginConfigurationArgsReturns struct {
A []byte
}
type Z_LogDebugArgs ¶
type Z_LogDebugArgs struct { A string B []interface{} }
type Z_LogDebugReturns ¶
type Z_LogDebugReturns struct { }
type Z_LogErrorArgs ¶
type Z_LogErrorArgs struct { A string B []interface{} }
type Z_LogErrorReturns ¶
type Z_LogErrorReturns struct { }
type Z_LogInfoArgs ¶
type Z_LogInfoArgs struct { A string B []interface{} }
type Z_LogInfoReturns ¶
type Z_LogInfoReturns struct { }
type Z_LogWarnArgs ¶
type Z_LogWarnArgs struct { A string B []interface{} }
type Z_LogWarnReturns ¶
type Z_LogWarnReturns struct { }
type Z_MessageHasBeenPostedReturns ¶
type Z_MessageHasBeenPostedReturns struct { }
type Z_MessageHasBeenUpdatedReturns ¶
type Z_MessageHasBeenUpdatedReturns struct { }
type Z_OnActivateArgs ¶
type Z_OnActivateArgs struct {
APIMuxId uint32
}
type Z_OnActivateReturns ¶
type Z_OnActivateReturns struct {
A error
}
type Z_OnConfigurationChangeArgs ¶
type Z_OnConfigurationChangeArgs struct { }
type Z_OnConfigurationChangeReturns ¶
type Z_OnConfigurationChangeReturns struct {
A error
}
type Z_OnDeactivateArgs ¶
type Z_OnDeactivateArgs struct { }
type Z_OnDeactivateReturns ¶
type Z_OnDeactivateReturns struct {
A error
}
type Z_PublishWebSocketEventArgs ¶
type Z_PublishWebSocketEventArgs struct { A string B map[string]interface{} C *model.WebsocketBroadcast }
type Z_PublishWebSocketEventReturns ¶
type Z_PublishWebSocketEventReturns struct { }
type Z_RegisterCommandArgs ¶
type Z_RegisterCommandReturns ¶
type Z_RegisterCommandReturns struct {
A error
}
type Z_SaveConfigArgs ¶
type Z_SaveConfigReturns ¶
type Z_SendEphemeralPostArgs ¶
type Z_ServeHTTPArgs ¶
type Z_UnregisterCommandArgs ¶
type Z_UnregisterCommandReturns ¶
type Z_UnregisterCommandReturns struct {
A error
}
type Z_UpdateChannelArgs ¶
type Z_UpdateChannelMemberNotificationsReturns ¶
type Z_UpdateChannelMemberNotificationsReturns struct { A *model.ChannelMember B *model.AppError }
type Z_UpdateChannelMemberRolesReturns ¶
type Z_UpdateChannelMemberRolesReturns struct { A *model.ChannelMember B *model.AppError }
type Z_UpdateChannelReturns ¶
type Z_UpdatePostArgs ¶
type Z_UpdateTeamArgs ¶
type Z_UpdateTeamMemberRolesReturns ¶
type Z_UpdateTeamMemberRolesReturns struct { A *model.TeamMember B *model.AppError }
type Z_UpdateUserArgs ¶
type Z_UpdateUserStatusArgs ¶
type Z_UserHasJoinedChannelArgs ¶
type Z_UserHasJoinedChannelArgs struct { A *Context B *model.ChannelMember C *model.User }
type Z_UserHasJoinedChannelReturns ¶
type Z_UserHasJoinedChannelReturns struct { }
type Z_UserHasJoinedTeamArgs ¶
type Z_UserHasJoinedTeamArgs struct { A *Context B *model.TeamMember C *model.User }
type Z_UserHasJoinedTeamReturns ¶
type Z_UserHasJoinedTeamReturns struct { }
type Z_UserHasLeftChannelArgs ¶
type Z_UserHasLeftChannelArgs struct { A *Context B *model.ChannelMember C *model.User }
type Z_UserHasLeftChannelReturns ¶
type Z_UserHasLeftChannelReturns struct { }
type Z_UserHasLeftTeamArgs ¶
type Z_UserHasLeftTeamArgs struct { A *Context B *model.TeamMember C *model.User }
type Z_UserHasLeftTeamReturns ¶
type Z_UserHasLeftTeamReturns struct { }
type Z_UserHasLoggedInArgs ¶
type Z_UserHasLoggedInReturns ¶
type Z_UserHasLoggedInReturns struct { }
type Z_UserWillLogInArgs ¶
type Z_UserWillLogInReturns ¶
type Z_UserWillLogInReturns struct {
A string
}
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
The plugintest package provides mocks that can be used to test plugins.
|
The plugintest package provides mocks that can be used to test plugins. |
mock
This package provides aliases for the contents of "github.com/stretchr/testify/mock".
|
This package provides aliases for the contents of "github.com/stretchr/testify/mock". |