mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Add SearchChannels plugin api (#9657)
This commit is contained in:
committed by
Christopher Speller
parent
9385dc750d
commit
9da4aba3f2
@@ -134,6 +134,9 @@ type API interface {
|
||||
// UpdateChannel updates a channel.
|
||||
UpdateChannel(channel *model.Channel) (*model.Channel, *model.AppError)
|
||||
|
||||
// SearchChannels returns the channels on a team matching the provided search term.
|
||||
SearchChannels(teamId string, term string) (*model.ChannelList, *model.AppError)
|
||||
|
||||
// AddChannelMember creates a channel membership for a user.
|
||||
AddChannelMember(channelId, userId string) (*model.ChannelMember, *model.AppError)
|
||||
|
||||
|
||||
@@ -1596,6 +1596,36 @@ func (s *apiRPCServer) UpdateChannel(args *Z_UpdateChannelArgs, returns *Z_Updat
|
||||
return nil
|
||||
}
|
||||
|
||||
type Z_SearchChannelsArgs struct {
|
||||
A string
|
||||
B string
|
||||
}
|
||||
|
||||
type Z_SearchChannelsReturns struct {
|
||||
A *model.ChannelList
|
||||
B *model.AppError
|
||||
}
|
||||
|
||||
func (g *apiRPCClient) SearchChannels(teamId string, term string) (*model.ChannelList, *model.AppError) {
|
||||
_args := &Z_SearchChannelsArgs{teamId, term}
|
||||
_returns := &Z_SearchChannelsReturns{}
|
||||
if err := g.client.Call("Plugin.SearchChannels", _args, _returns); err != nil {
|
||||
log.Printf("RPC call to SearchChannels API failed: %s", err.Error())
|
||||
}
|
||||
return _returns.A, _returns.B
|
||||
}
|
||||
|
||||
func (s *apiRPCServer) SearchChannels(args *Z_SearchChannelsArgs, returns *Z_SearchChannelsReturns) error {
|
||||
if hook, ok := s.impl.(interface {
|
||||
SearchChannels(teamId string, term string) (*model.ChannelList, *model.AppError)
|
||||
}); ok {
|
||||
returns.A, returns.B = hook.SearchChannels(args.A, args.B)
|
||||
} else {
|
||||
return encodableError(fmt.Errorf("API SearchChannels called but not implemented."))
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Z_AddChannelMemberArgs struct {
|
||||
A string
|
||||
B string
|
||||
|
||||
@@ -1316,6 +1316,31 @@ func (_m *API) SaveConfig(config *model.Config) *model.AppError {
|
||||
return r0
|
||||
}
|
||||
|
||||
// SearchChannels provides a mock function with given fields: teamId, term
|
||||
func (_m *API) SearchChannels(teamId string, term string) (*model.ChannelList, *model.AppError) {
|
||||
ret := _m.Called(teamId, term)
|
||||
|
||||
var r0 *model.ChannelList
|
||||
if rf, ok := ret.Get(0).(func(string, string) *model.ChannelList); ok {
|
||||
r0 = rf(teamId, term)
|
||||
} else {
|
||||
if ret.Get(0) != nil {
|
||||
r0 = ret.Get(0).(*model.ChannelList)
|
||||
}
|
||||
}
|
||||
|
||||
var r1 *model.AppError
|
||||
if rf, ok := ret.Get(1).(func(string, string) *model.AppError); ok {
|
||||
r1 = rf(teamId, term)
|
||||
} else {
|
||||
if ret.Get(1) != nil {
|
||||
r1 = ret.Get(1).(*model.AppError)
|
||||
}
|
||||
}
|
||||
|
||||
return r0, r1
|
||||
}
|
||||
|
||||
// SendEphemeralPost provides a mock function with given fields: userId, post
|
||||
func (_m *API) SendEphemeralPost(userId string, post *model.Post) *model.Post {
|
||||
ret := _m.Called(userId, post)
|
||||
|
||||
Reference in New Issue
Block a user