[MM-53156] Remove Multi-Product architecture (#25669)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
d3b799eaa5
Коммит
de3e5aab25
@@ -40,13 +40,6 @@ var excludedPluginHooks = []string{
|
||||
"ServeMetrics",
|
||||
}
|
||||
|
||||
var excludedProductHooks = []string{
|
||||
"Implemented",
|
||||
"OnActivate",
|
||||
"OnDeactivate",
|
||||
"ServeHTTP",
|
||||
}
|
||||
|
||||
type IHookEntry struct {
|
||||
FuncName string
|
||||
Args *ast.FieldList
|
||||
@@ -385,62 +378,6 @@ func (s *apiRPCServer) {{.Name}}(args *{{.Name | obscure}}Args, returns *{{.Name
|
||||
{{end}}
|
||||
`
|
||||
|
||||
var productHooksTemplate = `// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
// Code generated by "make pluginapi"
|
||||
// DO NOT EDIT
|
||||
|
||||
package plugin
|
||||
|
||||
{{range .HooksMethods}}
|
||||
type {{.Name}}IFace interface {
|
||||
{{.Name}}{{funcStyle .Params}} {{funcStyle .Return}}
|
||||
}
|
||||
|
||||
{{end}}
|
||||
|
||||
type HooksAdapter struct {
|
||||
implemented map[int]struct{}
|
||||
productHooks any
|
||||
}
|
||||
|
||||
func NewAdapter(productHooks any) (*HooksAdapter, error) {
|
||||
a := &HooksAdapter{
|
||||
implemented: make(map[int]struct{}),
|
||||
productHooks: productHooks,
|
||||
}
|
||||
var tt reflect.Type
|
||||
ft := reflect.TypeOf(productHooks)
|
||||
{{range .HooksMethods}}
|
||||
// Assessing the type of the productHooks if it individually implements {{.Name}} interface.
|
||||
tt = reflect.TypeOf((*{{.Name}}IFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[{{.Name}}ID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("{{.Name}}"); ok{
|
||||
return nil, errors.New("hook has {{.Name}} method but does not implement plugin.{{.Name}} interface")
|
||||
}
|
||||
|
||||
{{end}}
|
||||
|
||||
return a, nil
|
||||
}
|
||||
|
||||
{{range .HooksMethods}}
|
||||
func (a *HooksAdapter) {{.Name}}{{funcStyle .Params}} {{funcStyle .Return}} {
|
||||
if _, ok := a.implemented[{{.Name}}ID]; !ok {
|
||||
panic("product hooks must implement {{.Name}}")
|
||||
}
|
||||
|
||||
{{if .Return}}return a.productHooks.({{.Name}}IFace).{{.Name}}({{valuesOnly .Params}}){{else}}a.productHooks.({{.Name}}IFace).{{.Name}}({{valuesOnly .Params}}){{end}}
|
||||
|
||||
}
|
||||
|
||||
{{end}}
|
||||
|
||||
`
|
||||
|
||||
var apiTimerLayerTemplate = `// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
@@ -586,39 +523,6 @@ func generateHooksGlue(info *PluginInterfaceInfo) {
|
||||
}
|
||||
}
|
||||
|
||||
func generateProductHooksInterfaces(info *PluginInterfaceInfo) {
|
||||
templateFunctions := map[string]any{
|
||||
"funcStyle": func(fields *ast.FieldList) string { return FieldListToFuncList(fields, info.FileSet) },
|
||||
"valuesOnly": func(fields *ast.FieldList) string { return FieldListToNames(fields, false) },
|
||||
}
|
||||
|
||||
templateParams := HooksTemplateParams{}
|
||||
for _, hook := range info.Hooks {
|
||||
templateParams.HooksMethods = append(templateParams.HooksMethods, MethodParams{
|
||||
Name: hook.FuncName,
|
||||
Params: hook.Args,
|
||||
Return: hook.Results,
|
||||
})
|
||||
}
|
||||
|
||||
productHooksTemplate, err := template.New("hooks").Funcs(templateFunctions).Parse(productHooksTemplate)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
templateResult := &bytes.Buffer{}
|
||||
productHooksTemplate.Execute(templateResult, &templateParams)
|
||||
|
||||
formatted, err := imports.Process("", templateResult.Bytes(), nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if err := os.WriteFile(filepath.Join(getPluginPackageDir(), "product_hooks_generated.go"), formatted, 0664); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func generatePluginTimerLayer(info *PluginInterfaceInfo) {
|
||||
templateFunctions := map[string]any{
|
||||
"funcStyle": func(fields *ast.FieldList) string { return FieldListToFuncList(fields, info.FileSet) },
|
||||
@@ -723,8 +627,6 @@ func main() {
|
||||
if err != nil {
|
||||
fmt.Println("Unable to get plugin info: " + err.Error())
|
||||
}
|
||||
log.Println("Generating product hooks interfaces")
|
||||
generateProductHooksInterfaces(removeExcluded(forRPC, excludedProductHooks))
|
||||
|
||||
log.Println("Generating plugin hooks glue")
|
||||
generateHooksGlue(removeExcluded(forRPC, excludedPluginHooks))
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
package plugin
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type RegisteredProduct struct {
|
||||
ProductID string
|
||||
Adapter Hooks
|
||||
}
|
||||
|
||||
func (rp *RegisteredProduct) Implements(hookId int) bool {
|
||||
adapter, ok := rp.Adapter.(*HooksAdapter)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
|
||||
_, ok = adapter.implemented[hookId]
|
||||
return ok
|
||||
}
|
||||
|
||||
// Implemented method is overridden intentionally to prevent calling it from outside.
|
||||
func (a *HooksAdapter) Implemented() ([]string, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// OnActivate is overridden intentionally as product should not call it.
|
||||
func (a *HooksAdapter) OnActivate() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// OnDeactivate is overridden intentionally as product should not call it.
|
||||
func (a *HooksAdapter) OnDeactivate() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// ServeHTTP is overridden intentionally as product should not call it.
|
||||
func (a *HooksAdapter) ServeHTTP(c *Context, w http.ResponseWriter, r *http.Request) {}
|
||||
@@ -1,824 +0,0 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
// Code generated by "make pluginapi"
|
||||
// DO NOT EDIT
|
||||
|
||||
package plugin
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"net/http"
|
||||
"reflect"
|
||||
|
||||
"github.com/mattermost/mattermost/server/public/model"
|
||||
)
|
||||
|
||||
type OnConfigurationChangeIFace interface {
|
||||
OnConfigurationChange() error
|
||||
}
|
||||
|
||||
type ExecuteCommandIFace interface {
|
||||
ExecuteCommand(c *Context, args *model.CommandArgs) (*model.CommandResponse, *model.AppError)
|
||||
}
|
||||
|
||||
type UserHasBeenCreatedIFace interface {
|
||||
UserHasBeenCreated(c *Context, user *model.User)
|
||||
}
|
||||
|
||||
type UserWillLogInIFace interface {
|
||||
UserWillLogIn(c *Context, user *model.User) string
|
||||
}
|
||||
|
||||
type UserHasLoggedInIFace interface {
|
||||
UserHasLoggedIn(c *Context, user *model.User)
|
||||
}
|
||||
|
||||
type MessageWillBePostedIFace interface {
|
||||
MessageWillBePosted(c *Context, post *model.Post) (*model.Post, string)
|
||||
}
|
||||
|
||||
type MessageWillBeUpdatedIFace interface {
|
||||
MessageWillBeUpdated(c *Context, newPost, oldPost *model.Post) (*model.Post, string)
|
||||
}
|
||||
|
||||
type MessageHasBeenPostedIFace interface {
|
||||
MessageHasBeenPosted(c *Context, post *model.Post)
|
||||
}
|
||||
|
||||
type MessageHasBeenUpdatedIFace interface {
|
||||
MessageHasBeenUpdated(c *Context, newPost, oldPost *model.Post)
|
||||
}
|
||||
|
||||
type MessagesWillBeConsumedIFace interface {
|
||||
MessagesWillBeConsumed(posts []*model.Post) []*model.Post
|
||||
}
|
||||
|
||||
type MessageHasBeenDeletedIFace interface {
|
||||
MessageHasBeenDeleted(c *Context, post *model.Post)
|
||||
}
|
||||
|
||||
type ChannelHasBeenCreatedIFace interface {
|
||||
ChannelHasBeenCreated(c *Context, channel *model.Channel)
|
||||
}
|
||||
|
||||
type UserHasJoinedChannelIFace interface {
|
||||
UserHasJoinedChannel(c *Context, channelMember *model.ChannelMember, actor *model.User)
|
||||
}
|
||||
|
||||
type UserHasLeftChannelIFace interface {
|
||||
UserHasLeftChannel(c *Context, channelMember *model.ChannelMember, actor *model.User)
|
||||
}
|
||||
|
||||
type UserHasJoinedTeamIFace interface {
|
||||
UserHasJoinedTeam(c *Context, teamMember *model.TeamMember, actor *model.User)
|
||||
}
|
||||
|
||||
type UserHasLeftTeamIFace interface {
|
||||
UserHasLeftTeam(c *Context, teamMember *model.TeamMember, actor *model.User)
|
||||
}
|
||||
|
||||
type FileWillBeUploadedIFace interface {
|
||||
FileWillBeUploaded(c *Context, info *model.FileInfo, file io.Reader, output io.Writer) (*model.FileInfo, string)
|
||||
}
|
||||
|
||||
type ReactionHasBeenAddedIFace interface {
|
||||
ReactionHasBeenAdded(c *Context, reaction *model.Reaction)
|
||||
}
|
||||
|
||||
type ReactionHasBeenRemovedIFace interface {
|
||||
ReactionHasBeenRemoved(c *Context, reaction *model.Reaction)
|
||||
}
|
||||
|
||||
type OnPluginClusterEventIFace interface {
|
||||
OnPluginClusterEvent(c *Context, ev model.PluginClusterEvent)
|
||||
}
|
||||
|
||||
type OnWebSocketConnectIFace interface {
|
||||
OnWebSocketConnect(webConnID, userID string)
|
||||
}
|
||||
|
||||
type OnWebSocketDisconnectIFace interface {
|
||||
OnWebSocketDisconnect(webConnID, userID string)
|
||||
}
|
||||
|
||||
type WebSocketMessageHasBeenPostedIFace interface {
|
||||
WebSocketMessageHasBeenPosted(webConnID, userID string, req *model.WebSocketRequest)
|
||||
}
|
||||
|
||||
type RunDataRetentionIFace interface {
|
||||
RunDataRetention(nowTime, batchSize int64) (int64, error)
|
||||
}
|
||||
|
||||
type OnInstallIFace interface {
|
||||
OnInstall(c *Context, event model.OnInstallEvent) error
|
||||
}
|
||||
|
||||
type OnSendDailyTelemetryIFace interface {
|
||||
OnSendDailyTelemetry()
|
||||
}
|
||||
|
||||
type OnCloudLimitsUpdatedIFace interface {
|
||||
OnCloudLimitsUpdated(limits *model.ProductLimits)
|
||||
}
|
||||
|
||||
type ConfigurationWillBeSavedIFace interface {
|
||||
ConfigurationWillBeSaved(newCfg *model.Config) (*model.Config, error)
|
||||
}
|
||||
|
||||
type NotificationWillBePushedIFace interface {
|
||||
NotificationWillBePushed(pushNotification *model.PushNotification, userID string) (*model.PushNotification, string)
|
||||
}
|
||||
|
||||
type UserHasBeenDeactivatedIFace interface {
|
||||
UserHasBeenDeactivated(c *Context, user *model.User)
|
||||
}
|
||||
|
||||
type ServeMetricsIFace interface {
|
||||
ServeMetrics(c *Context, w http.ResponseWriter, r *http.Request)
|
||||
}
|
||||
|
||||
type OnSharedChannelsSyncMsgIFace interface {
|
||||
OnSharedChannelsSyncMsg(msg *model.SyncMsg, rc *model.RemoteCluster) (model.SyncResponse, error)
|
||||
}
|
||||
|
||||
type OnSharedChannelsPingIFace interface {
|
||||
OnSharedChannelsPing(rc *model.RemoteCluster) bool
|
||||
}
|
||||
|
||||
type PreferencesHaveChangedIFace interface {
|
||||
PreferencesHaveChanged(c *Context, preferences []model.Preference)
|
||||
}
|
||||
|
||||
type OnSharedChannelsAttachmentSyncMsgIFace interface {
|
||||
OnSharedChannelsAttachmentSyncMsg(fi *model.FileInfo, post *model.Post, rc *model.RemoteCluster) error
|
||||
}
|
||||
|
||||
type OnSharedChannelsProfileImageSyncMsgIFace interface {
|
||||
OnSharedChannelsProfileImageSyncMsg(user *model.User, rc *model.RemoteCluster) error
|
||||
}
|
||||
|
||||
type HooksAdapter struct {
|
||||
implemented map[int]struct{}
|
||||
productHooks any
|
||||
}
|
||||
|
||||
func NewAdapter(productHooks any) (*HooksAdapter, error) {
|
||||
a := &HooksAdapter{
|
||||
implemented: make(map[int]struct{}),
|
||||
productHooks: productHooks,
|
||||
}
|
||||
var tt reflect.Type
|
||||
ft := reflect.TypeOf(productHooks)
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnConfigurationChange interface.
|
||||
tt = reflect.TypeOf((*OnConfigurationChangeIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnConfigurationChangeID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnConfigurationChange"); ok {
|
||||
return nil, errors.New("hook has OnConfigurationChange method but does not implement plugin.OnConfigurationChange interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ExecuteCommand interface.
|
||||
tt = reflect.TypeOf((*ExecuteCommandIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ExecuteCommandID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ExecuteCommand"); ok {
|
||||
return nil, errors.New("hook has ExecuteCommand method but does not implement plugin.ExecuteCommand interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasBeenCreated interface.
|
||||
tt = reflect.TypeOf((*UserHasBeenCreatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasBeenCreatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasBeenCreated"); ok {
|
||||
return nil, errors.New("hook has UserHasBeenCreated method but does not implement plugin.UserHasBeenCreated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserWillLogIn interface.
|
||||
tt = reflect.TypeOf((*UserWillLogInIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserWillLogInID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserWillLogIn"); ok {
|
||||
return nil, errors.New("hook has UserWillLogIn method but does not implement plugin.UserWillLogIn interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasLoggedIn interface.
|
||||
tt = reflect.TypeOf((*UserHasLoggedInIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasLoggedInID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasLoggedIn"); ok {
|
||||
return nil, errors.New("hook has UserHasLoggedIn method but does not implement plugin.UserHasLoggedIn interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessageWillBePosted interface.
|
||||
tt = reflect.TypeOf((*MessageWillBePostedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessageWillBePostedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessageWillBePosted"); ok {
|
||||
return nil, errors.New("hook has MessageWillBePosted method but does not implement plugin.MessageWillBePosted interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessageWillBeUpdated interface.
|
||||
tt = reflect.TypeOf((*MessageWillBeUpdatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessageWillBeUpdatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessageWillBeUpdated"); ok {
|
||||
return nil, errors.New("hook has MessageWillBeUpdated method but does not implement plugin.MessageWillBeUpdated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessageHasBeenPosted interface.
|
||||
tt = reflect.TypeOf((*MessageHasBeenPostedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessageHasBeenPostedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessageHasBeenPosted"); ok {
|
||||
return nil, errors.New("hook has MessageHasBeenPosted method but does not implement plugin.MessageHasBeenPosted interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessageHasBeenUpdated interface.
|
||||
tt = reflect.TypeOf((*MessageHasBeenUpdatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessageHasBeenUpdatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessageHasBeenUpdated"); ok {
|
||||
return nil, errors.New("hook has MessageHasBeenUpdated method but does not implement plugin.MessageHasBeenUpdated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessagesWillBeConsumed interface.
|
||||
tt = reflect.TypeOf((*MessagesWillBeConsumedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessagesWillBeConsumedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessagesWillBeConsumed"); ok {
|
||||
return nil, errors.New("hook has MessagesWillBeConsumed method but does not implement plugin.MessagesWillBeConsumed interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements MessageHasBeenDeleted interface.
|
||||
tt = reflect.TypeOf((*MessageHasBeenDeletedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[MessageHasBeenDeletedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("MessageHasBeenDeleted"); ok {
|
||||
return nil, errors.New("hook has MessageHasBeenDeleted method but does not implement plugin.MessageHasBeenDeleted interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ChannelHasBeenCreated interface.
|
||||
tt = reflect.TypeOf((*ChannelHasBeenCreatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ChannelHasBeenCreatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ChannelHasBeenCreated"); ok {
|
||||
return nil, errors.New("hook has ChannelHasBeenCreated method but does not implement plugin.ChannelHasBeenCreated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasJoinedChannel interface.
|
||||
tt = reflect.TypeOf((*UserHasJoinedChannelIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasJoinedChannelID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasJoinedChannel"); ok {
|
||||
return nil, errors.New("hook has UserHasJoinedChannel method but does not implement plugin.UserHasJoinedChannel interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasLeftChannel interface.
|
||||
tt = reflect.TypeOf((*UserHasLeftChannelIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasLeftChannelID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasLeftChannel"); ok {
|
||||
return nil, errors.New("hook has UserHasLeftChannel method but does not implement plugin.UserHasLeftChannel interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasJoinedTeam interface.
|
||||
tt = reflect.TypeOf((*UserHasJoinedTeamIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasJoinedTeamID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasJoinedTeam"); ok {
|
||||
return nil, errors.New("hook has UserHasJoinedTeam method but does not implement plugin.UserHasJoinedTeam interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasLeftTeam interface.
|
||||
tt = reflect.TypeOf((*UserHasLeftTeamIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasLeftTeamID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasLeftTeam"); ok {
|
||||
return nil, errors.New("hook has UserHasLeftTeam method but does not implement plugin.UserHasLeftTeam interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements FileWillBeUploaded interface.
|
||||
tt = reflect.TypeOf((*FileWillBeUploadedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[FileWillBeUploadedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("FileWillBeUploaded"); ok {
|
||||
return nil, errors.New("hook has FileWillBeUploaded method but does not implement plugin.FileWillBeUploaded interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ReactionHasBeenAdded interface.
|
||||
tt = reflect.TypeOf((*ReactionHasBeenAddedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ReactionHasBeenAddedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ReactionHasBeenAdded"); ok {
|
||||
return nil, errors.New("hook has ReactionHasBeenAdded method but does not implement plugin.ReactionHasBeenAdded interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ReactionHasBeenRemoved interface.
|
||||
tt = reflect.TypeOf((*ReactionHasBeenRemovedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ReactionHasBeenRemovedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ReactionHasBeenRemoved"); ok {
|
||||
return nil, errors.New("hook has ReactionHasBeenRemoved method but does not implement plugin.ReactionHasBeenRemoved interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnPluginClusterEvent interface.
|
||||
tt = reflect.TypeOf((*OnPluginClusterEventIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnPluginClusterEventID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnPluginClusterEvent"); ok {
|
||||
return nil, errors.New("hook has OnPluginClusterEvent method but does not implement plugin.OnPluginClusterEvent interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnWebSocketConnect interface.
|
||||
tt = reflect.TypeOf((*OnWebSocketConnectIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnWebSocketConnectID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnWebSocketConnect"); ok {
|
||||
return nil, errors.New("hook has OnWebSocketConnect method but does not implement plugin.OnWebSocketConnect interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnWebSocketDisconnect interface.
|
||||
tt = reflect.TypeOf((*OnWebSocketDisconnectIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnWebSocketDisconnectID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnWebSocketDisconnect"); ok {
|
||||
return nil, errors.New("hook has OnWebSocketDisconnect method but does not implement plugin.OnWebSocketDisconnect interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements WebSocketMessageHasBeenPosted interface.
|
||||
tt = reflect.TypeOf((*WebSocketMessageHasBeenPostedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[WebSocketMessageHasBeenPostedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("WebSocketMessageHasBeenPosted"); ok {
|
||||
return nil, errors.New("hook has WebSocketMessageHasBeenPosted method but does not implement plugin.WebSocketMessageHasBeenPosted interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements RunDataRetention interface.
|
||||
tt = reflect.TypeOf((*RunDataRetentionIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[RunDataRetentionID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("RunDataRetention"); ok {
|
||||
return nil, errors.New("hook has RunDataRetention method but does not implement plugin.RunDataRetention interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnInstall interface.
|
||||
tt = reflect.TypeOf((*OnInstallIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnInstallID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnInstall"); ok {
|
||||
return nil, errors.New("hook has OnInstall method but does not implement plugin.OnInstall interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnSendDailyTelemetry interface.
|
||||
tt = reflect.TypeOf((*OnSendDailyTelemetryIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnSendDailyTelemetryID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnSendDailyTelemetry"); ok {
|
||||
return nil, errors.New("hook has OnSendDailyTelemetry method but does not implement plugin.OnSendDailyTelemetry interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnCloudLimitsUpdated interface.
|
||||
tt = reflect.TypeOf((*OnCloudLimitsUpdatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnCloudLimitsUpdatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnCloudLimitsUpdated"); ok {
|
||||
return nil, errors.New("hook has OnCloudLimitsUpdated method but does not implement plugin.OnCloudLimitsUpdated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ConfigurationWillBeSaved interface.
|
||||
tt = reflect.TypeOf((*ConfigurationWillBeSavedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ConfigurationWillBeSavedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ConfigurationWillBeSaved"); ok {
|
||||
return nil, errors.New("hook has ConfigurationWillBeSaved method but does not implement plugin.ConfigurationWillBeSaved interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements NotificationWillBePushed interface.
|
||||
tt = reflect.TypeOf((*NotificationWillBePushedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[NotificationWillBePushedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("NotificationWillBePushed"); ok {
|
||||
return nil, errors.New("hook has NotificationWillBePushed method but does not implement plugin.NotificationWillBePushed interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements UserHasBeenDeactivated interface.
|
||||
tt = reflect.TypeOf((*UserHasBeenDeactivatedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[UserHasBeenDeactivatedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("UserHasBeenDeactivated"); ok {
|
||||
return nil, errors.New("hook has UserHasBeenDeactivated method but does not implement plugin.UserHasBeenDeactivated interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements ServeMetrics interface.
|
||||
tt = reflect.TypeOf((*ServeMetricsIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[ServeMetricsID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("ServeMetrics"); ok {
|
||||
return nil, errors.New("hook has ServeMetrics method but does not implement plugin.ServeMetrics interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnSharedChannelsSyncMsg interface.
|
||||
tt = reflect.TypeOf((*OnSharedChannelsSyncMsgIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnSharedChannelsSyncMsgID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnSharedChannelsSyncMsg"); ok {
|
||||
return nil, errors.New("hook has OnSharedChannelsSyncMsg method but does not implement plugin.OnSharedChannelsSyncMsg interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnSharedChannelsPing interface.
|
||||
tt = reflect.TypeOf((*OnSharedChannelsPingIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnSharedChannelsPingID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnSharedChannelsPing"); ok {
|
||||
return nil, errors.New("hook has OnSharedChannelsPing method but does not implement plugin.OnSharedChannelsPing interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements PreferencesHaveChanged interface.
|
||||
tt = reflect.TypeOf((*PreferencesHaveChangedIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[PreferencesHaveChangedID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("PreferencesHaveChanged"); ok {
|
||||
return nil, errors.New("hook has PreferencesHaveChanged method but does not implement plugin.PreferencesHaveChanged interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnSharedChannelsAttachmentSyncMsg interface.
|
||||
tt = reflect.TypeOf((*OnSharedChannelsAttachmentSyncMsgIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnSharedChannelsAttachmentSyncMsgID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnSharedChannelsAttachmentSyncMsg"); ok {
|
||||
return nil, errors.New("hook has OnSharedChannelsAttachmentSyncMsg method but does not implement plugin.OnSharedChannelsAttachmentSyncMsg interface")
|
||||
}
|
||||
|
||||
// Assessing the type of the productHooks if it individually implements OnSharedChannelsProfileImageSyncMsg interface.
|
||||
tt = reflect.TypeOf((*OnSharedChannelsProfileImageSyncMsgIFace)(nil)).Elem()
|
||||
|
||||
if ft.Implements(tt) {
|
||||
a.implemented[OnSharedChannelsProfileImageSyncMsgID] = struct{}{}
|
||||
} else if _, ok := ft.MethodByName("OnSharedChannelsProfileImageSyncMsg"); ok {
|
||||
return nil, errors.New("hook has OnSharedChannelsProfileImageSyncMsg method but does not implement plugin.OnSharedChannelsProfileImageSyncMsg interface")
|
||||
}
|
||||
|
||||
return a, nil
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnConfigurationChange() error {
|
||||
if _, ok := a.implemented[OnConfigurationChangeID]; !ok {
|
||||
panic("product hooks must implement OnConfigurationChange")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnConfigurationChangeIFace).OnConfigurationChange()
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ExecuteCommand(c *Context, args *model.CommandArgs) (*model.CommandResponse, *model.AppError) {
|
||||
if _, ok := a.implemented[ExecuteCommandID]; !ok {
|
||||
panic("product hooks must implement ExecuteCommand")
|
||||
}
|
||||
|
||||
return a.productHooks.(ExecuteCommandIFace).ExecuteCommand(c, args)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasBeenCreated(c *Context, user *model.User) {
|
||||
if _, ok := a.implemented[UserHasBeenCreatedID]; !ok {
|
||||
panic("product hooks must implement UserHasBeenCreated")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasBeenCreatedIFace).UserHasBeenCreated(c, user)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserWillLogIn(c *Context, user *model.User) string {
|
||||
if _, ok := a.implemented[UserWillLogInID]; !ok {
|
||||
panic("product hooks must implement UserWillLogIn")
|
||||
}
|
||||
|
||||
return a.productHooks.(UserWillLogInIFace).UserWillLogIn(c, user)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasLoggedIn(c *Context, user *model.User) {
|
||||
if _, ok := a.implemented[UserHasLoggedInID]; !ok {
|
||||
panic("product hooks must implement UserHasLoggedIn")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasLoggedInIFace).UserHasLoggedIn(c, user)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessageWillBePosted(c *Context, post *model.Post) (*model.Post, string) {
|
||||
if _, ok := a.implemented[MessageWillBePostedID]; !ok {
|
||||
panic("product hooks must implement MessageWillBePosted")
|
||||
}
|
||||
|
||||
return a.productHooks.(MessageWillBePostedIFace).MessageWillBePosted(c, post)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessageWillBeUpdated(c *Context, newPost, oldPost *model.Post) (*model.Post, string) {
|
||||
if _, ok := a.implemented[MessageWillBeUpdatedID]; !ok {
|
||||
panic("product hooks must implement MessageWillBeUpdated")
|
||||
}
|
||||
|
||||
return a.productHooks.(MessageWillBeUpdatedIFace).MessageWillBeUpdated(c, newPost, oldPost)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessageHasBeenPosted(c *Context, post *model.Post) {
|
||||
if _, ok := a.implemented[MessageHasBeenPostedID]; !ok {
|
||||
panic("product hooks must implement MessageHasBeenPosted")
|
||||
}
|
||||
|
||||
a.productHooks.(MessageHasBeenPostedIFace).MessageHasBeenPosted(c, post)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessageHasBeenUpdated(c *Context, newPost, oldPost *model.Post) {
|
||||
if _, ok := a.implemented[MessageHasBeenUpdatedID]; !ok {
|
||||
panic("product hooks must implement MessageHasBeenUpdated")
|
||||
}
|
||||
|
||||
a.productHooks.(MessageHasBeenUpdatedIFace).MessageHasBeenUpdated(c, newPost, oldPost)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessagesWillBeConsumed(posts []*model.Post) []*model.Post {
|
||||
if _, ok := a.implemented[MessagesWillBeConsumedID]; !ok {
|
||||
panic("product hooks must implement MessagesWillBeConsumed")
|
||||
}
|
||||
|
||||
return a.productHooks.(MessagesWillBeConsumedIFace).MessagesWillBeConsumed(posts)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) MessageHasBeenDeleted(c *Context, post *model.Post) {
|
||||
if _, ok := a.implemented[MessageHasBeenDeletedID]; !ok {
|
||||
panic("product hooks must implement MessageHasBeenDeleted")
|
||||
}
|
||||
|
||||
a.productHooks.(MessageHasBeenDeletedIFace).MessageHasBeenDeleted(c, post)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ChannelHasBeenCreated(c *Context, channel *model.Channel) {
|
||||
if _, ok := a.implemented[ChannelHasBeenCreatedID]; !ok {
|
||||
panic("product hooks must implement ChannelHasBeenCreated")
|
||||
}
|
||||
|
||||
a.productHooks.(ChannelHasBeenCreatedIFace).ChannelHasBeenCreated(c, channel)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasJoinedChannel(c *Context, channelMember *model.ChannelMember, actor *model.User) {
|
||||
if _, ok := a.implemented[UserHasJoinedChannelID]; !ok {
|
||||
panic("product hooks must implement UserHasJoinedChannel")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasJoinedChannelIFace).UserHasJoinedChannel(c, channelMember, actor)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasLeftChannel(c *Context, channelMember *model.ChannelMember, actor *model.User) {
|
||||
if _, ok := a.implemented[UserHasLeftChannelID]; !ok {
|
||||
panic("product hooks must implement UserHasLeftChannel")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasLeftChannelIFace).UserHasLeftChannel(c, channelMember, actor)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasJoinedTeam(c *Context, teamMember *model.TeamMember, actor *model.User) {
|
||||
if _, ok := a.implemented[UserHasJoinedTeamID]; !ok {
|
||||
panic("product hooks must implement UserHasJoinedTeam")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasJoinedTeamIFace).UserHasJoinedTeam(c, teamMember, actor)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasLeftTeam(c *Context, teamMember *model.TeamMember, actor *model.User) {
|
||||
if _, ok := a.implemented[UserHasLeftTeamID]; !ok {
|
||||
panic("product hooks must implement UserHasLeftTeam")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasLeftTeamIFace).UserHasLeftTeam(c, teamMember, actor)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) FileWillBeUploaded(c *Context, info *model.FileInfo, file io.Reader, output io.Writer) (*model.FileInfo, string) {
|
||||
if _, ok := a.implemented[FileWillBeUploadedID]; !ok {
|
||||
panic("product hooks must implement FileWillBeUploaded")
|
||||
}
|
||||
|
||||
return a.productHooks.(FileWillBeUploadedIFace).FileWillBeUploaded(c, info, file, output)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ReactionHasBeenAdded(c *Context, reaction *model.Reaction) {
|
||||
if _, ok := a.implemented[ReactionHasBeenAddedID]; !ok {
|
||||
panic("product hooks must implement ReactionHasBeenAdded")
|
||||
}
|
||||
|
||||
a.productHooks.(ReactionHasBeenAddedIFace).ReactionHasBeenAdded(c, reaction)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ReactionHasBeenRemoved(c *Context, reaction *model.Reaction) {
|
||||
if _, ok := a.implemented[ReactionHasBeenRemovedID]; !ok {
|
||||
panic("product hooks must implement ReactionHasBeenRemoved")
|
||||
}
|
||||
|
||||
a.productHooks.(ReactionHasBeenRemovedIFace).ReactionHasBeenRemoved(c, reaction)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnPluginClusterEvent(c *Context, ev model.PluginClusterEvent) {
|
||||
if _, ok := a.implemented[OnPluginClusterEventID]; !ok {
|
||||
panic("product hooks must implement OnPluginClusterEvent")
|
||||
}
|
||||
|
||||
a.productHooks.(OnPluginClusterEventIFace).OnPluginClusterEvent(c, ev)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnWebSocketConnect(webConnID, userID string) {
|
||||
if _, ok := a.implemented[OnWebSocketConnectID]; !ok {
|
||||
panic("product hooks must implement OnWebSocketConnect")
|
||||
}
|
||||
|
||||
a.productHooks.(OnWebSocketConnectIFace).OnWebSocketConnect(webConnID, userID)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnWebSocketDisconnect(webConnID, userID string) {
|
||||
if _, ok := a.implemented[OnWebSocketDisconnectID]; !ok {
|
||||
panic("product hooks must implement OnWebSocketDisconnect")
|
||||
}
|
||||
|
||||
a.productHooks.(OnWebSocketDisconnectIFace).OnWebSocketDisconnect(webConnID, userID)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) WebSocketMessageHasBeenPosted(webConnID, userID string, req *model.WebSocketRequest) {
|
||||
if _, ok := a.implemented[WebSocketMessageHasBeenPostedID]; !ok {
|
||||
panic("product hooks must implement WebSocketMessageHasBeenPosted")
|
||||
}
|
||||
|
||||
a.productHooks.(WebSocketMessageHasBeenPostedIFace).WebSocketMessageHasBeenPosted(webConnID, userID, req)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) RunDataRetention(nowTime, batchSize int64) (int64, error) {
|
||||
if _, ok := a.implemented[RunDataRetentionID]; !ok {
|
||||
panic("product hooks must implement RunDataRetention")
|
||||
}
|
||||
|
||||
return a.productHooks.(RunDataRetentionIFace).RunDataRetention(nowTime, batchSize)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnInstall(c *Context, event model.OnInstallEvent) error {
|
||||
if _, ok := a.implemented[OnInstallID]; !ok {
|
||||
panic("product hooks must implement OnInstall")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnInstallIFace).OnInstall(c, event)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnSendDailyTelemetry() {
|
||||
if _, ok := a.implemented[OnSendDailyTelemetryID]; !ok {
|
||||
panic("product hooks must implement OnSendDailyTelemetry")
|
||||
}
|
||||
|
||||
a.productHooks.(OnSendDailyTelemetryIFace).OnSendDailyTelemetry()
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnCloudLimitsUpdated(limits *model.ProductLimits) {
|
||||
if _, ok := a.implemented[OnCloudLimitsUpdatedID]; !ok {
|
||||
panic("product hooks must implement OnCloudLimitsUpdated")
|
||||
}
|
||||
|
||||
a.productHooks.(OnCloudLimitsUpdatedIFace).OnCloudLimitsUpdated(limits)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ConfigurationWillBeSaved(newCfg *model.Config) (*model.Config, error) {
|
||||
if _, ok := a.implemented[ConfigurationWillBeSavedID]; !ok {
|
||||
panic("product hooks must implement ConfigurationWillBeSaved")
|
||||
}
|
||||
|
||||
return a.productHooks.(ConfigurationWillBeSavedIFace).ConfigurationWillBeSaved(newCfg)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) NotificationWillBePushed(pushNotification *model.PushNotification, userID string) (*model.PushNotification, string) {
|
||||
if _, ok := a.implemented[NotificationWillBePushedID]; !ok {
|
||||
panic("product hooks must implement NotificationWillBePushed")
|
||||
}
|
||||
|
||||
return a.productHooks.(NotificationWillBePushedIFace).NotificationWillBePushed(pushNotification, userID)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) UserHasBeenDeactivated(c *Context, user *model.User) {
|
||||
if _, ok := a.implemented[UserHasBeenDeactivatedID]; !ok {
|
||||
panic("product hooks must implement UserHasBeenDeactivated")
|
||||
}
|
||||
|
||||
a.productHooks.(UserHasBeenDeactivatedIFace).UserHasBeenDeactivated(c, user)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) ServeMetrics(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||
if _, ok := a.implemented[ServeMetricsID]; !ok {
|
||||
panic("product hooks must implement ServeMetrics")
|
||||
}
|
||||
|
||||
a.productHooks.(ServeMetricsIFace).ServeMetrics(c, w, r)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnSharedChannelsSyncMsg(msg *model.SyncMsg, rc *model.RemoteCluster) (model.SyncResponse, error) {
|
||||
if _, ok := a.implemented[OnSharedChannelsSyncMsgID]; !ok {
|
||||
panic("product hooks must implement OnSharedChannelsSyncMsg")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnSharedChannelsSyncMsgIFace).OnSharedChannelsSyncMsg(msg, rc)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnSharedChannelsPing(rc *model.RemoteCluster) bool {
|
||||
if _, ok := a.implemented[OnSharedChannelsPingID]; !ok {
|
||||
panic("product hooks must implement OnSharedChannelsPing")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnSharedChannelsPingIFace).OnSharedChannelsPing(rc)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) PreferencesHaveChanged(c *Context, preferences []model.Preference) {
|
||||
if _, ok := a.implemented[PreferencesHaveChangedID]; !ok {
|
||||
panic("product hooks must implement PreferencesHaveChanged")
|
||||
}
|
||||
|
||||
a.productHooks.(PreferencesHaveChangedIFace).PreferencesHaveChanged(c, preferences)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnSharedChannelsAttachmentSyncMsg(fi *model.FileInfo, post *model.Post, rc *model.RemoteCluster) error {
|
||||
if _, ok := a.implemented[OnSharedChannelsAttachmentSyncMsgID]; !ok {
|
||||
panic("product hooks must implement OnSharedChannelsAttachmentSyncMsg")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnSharedChannelsAttachmentSyncMsgIFace).OnSharedChannelsAttachmentSyncMsg(fi, post, rc)
|
||||
|
||||
}
|
||||
|
||||
func (a *HooksAdapter) OnSharedChannelsProfileImageSyncMsg(user *model.User, rc *model.RemoteCluster) error {
|
||||
if _, ok := a.implemented[OnSharedChannelsProfileImageSyncMsgID]; !ok {
|
||||
panic("product hooks must implement OnSharedChannelsProfileImageSyncMsg")
|
||||
}
|
||||
|
||||
return a.productHooks.(OnSharedChannelsProfileImageSyncMsgIFace).OnSharedChannelsProfileImageSyncMsg(user, rc)
|
||||
|
||||
}
|
||||
Ссылка в новой задаче
Block a user