mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
MM-57738 - Added GetPluginID function across multiple files (#27960)
This commit is contained in:
parent
58d92742b4
commit
e8b5ecd826
5 changed files with 62 additions and 0 deletions
|
|
@ -1343,3 +1343,7 @@ func (api *PluginAPI) InviteRemoteToChannel(channelID string, remoteID, userID s
|
|||
func (api *PluginAPI) UninviteRemoteFromChannel(channelID string, remoteID string) error {
|
||||
return api.app.UninviteRemoteFromChannel(channelID, remoteID)
|
||||
}
|
||||
|
||||
func (api *PluginAPI) GetPluginID() string {
|
||||
return api.id
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1306,6 +1306,12 @@ type API interface {
|
|||
// @tag User
|
||||
// Minimum server version: 9.8
|
||||
UpdateUserRoles(userID, newRoles string) (*model.User, *model.AppError)
|
||||
|
||||
// GetPluginID returns the plugin ID.
|
||||
//
|
||||
// @tag Plugin
|
||||
// Minimum server version: 10.1
|
||||
GetPluginID() string
|
||||
}
|
||||
|
||||
var handshake = plugin.HandshakeConfig{
|
||||
|
|
|
|||
|
|
@ -1378,3 +1378,10 @@ func (api *apiTimerLayer) UpdateUserRoles(userID, newRoles string) (*model.User,
|
|||
api.recordTime(startTime, "UpdateUserRoles", _returnsB == nil)
|
||||
return _returnsA, _returnsB
|
||||
}
|
||||
|
||||
func (api *apiTimerLayer) GetPluginID() string {
|
||||
startTime := timePkg.Now()
|
||||
_returnsA := api.apiImpl.GetPluginID()
|
||||
api.recordTime(startTime, "GetPluginID", true)
|
||||
return _returnsA
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6630,3 +6630,30 @@ func (s *apiRPCServer) UpdateUserRoles(args *Z_UpdateUserRolesArgs, returns *Z_U
|
|||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Z_GetPluginIDArgs struct {
|
||||
}
|
||||
|
||||
type Z_GetPluginIDReturns struct {
|
||||
A string
|
||||
}
|
||||
|
||||
func (g *apiRPCClient) GetPluginID() string {
|
||||
_args := &Z_GetPluginIDArgs{}
|
||||
_returns := &Z_GetPluginIDReturns{}
|
||||
if err := g.client.Call("Plugin.GetPluginID", _args, _returns); err != nil {
|
||||
log.Printf("RPC call to GetPluginID API failed: %s", err.Error())
|
||||
}
|
||||
return _returns.A
|
||||
}
|
||||
|
||||
func (s *apiRPCServer) GetPluginID(args *Z_GetPluginIDArgs, returns *Z_GetPluginIDReturns) error {
|
||||
if hook, ok := s.impl.(interface {
|
||||
GetPluginID() string
|
||||
}); ok {
|
||||
returns.A = hook.GetPluginID()
|
||||
} else {
|
||||
return encodableError(fmt.Errorf("API GetPluginID called but not implemented."))
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1990,6 +1990,24 @@ func (_m *API) GetPluginConfig() map[string]interface{} {
|
|||
return r0
|
||||
}
|
||||
|
||||
// GetPluginID provides a mock function with given fields:
|
||||
func (_m *API) GetPluginID() string {
|
||||
ret := _m.Called()
|
||||
|
||||
if len(ret) == 0 {
|
||||
panic("no return value specified for GetPluginID")
|
||||
}
|
||||
|
||||
var r0 string
|
||||
if rf, ok := ret.Get(0).(func() string); ok {
|
||||
r0 = rf()
|
||||
} else {
|
||||
r0 = ret.Get(0).(string)
|
||||
}
|
||||
|
||||
return r0
|
||||
}
|
||||
|
||||
// GetPluginStatus provides a mock function with given fields: id
|
||||
func (_m *API) GetPluginStatus(id string) (*model.PluginStatus, *model.AppError) {
|
||||
ret := _m.Called(id)
|
||||
|
|
|
|||
Loading…
Reference in a new issue