mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
87c3a2b790
* PluginManager: Make Plugins and DataSources non-global Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix integration tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Replace outdated command Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * DashboardService: Ensure it gets constructed with necessary parameters Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix build Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * DashboardService: Ensure it gets constructed with necessary parameters Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove dead code Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove FocusConvey Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove dead code Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Undo interface changes Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Backend: Move tsdbifaces.RequestHandler to plugins.DataRequestHandler Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Rename to DataSourceCount Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Consolidate dashboard interfaces into one Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix dashboard integration tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
76 lines
1.6 KiB
Go
76 lines
1.6 KiB
Go
package models
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/components/securejsondata"
|
|
)
|
|
|
|
var (
|
|
ErrPluginSettingNotFound = errors.New("plugin setting not found")
|
|
)
|
|
|
|
type PluginSetting struct {
|
|
Id int64
|
|
PluginId string
|
|
OrgId int64
|
|
Enabled bool
|
|
Pinned bool
|
|
JsonData map[string]interface{}
|
|
SecureJsonData securejsondata.SecureJsonData
|
|
PluginVersion string
|
|
|
|
Created time.Time
|
|
Updated time.Time
|
|
}
|
|
|
|
// ----------------------
|
|
// COMMANDS
|
|
|
|
// Also acts as api DTO
|
|
type UpdatePluginSettingCmd struct {
|
|
Enabled bool `json:"enabled"`
|
|
Pinned bool `json:"pinned"`
|
|
JsonData map[string]interface{} `json:"jsonData"`
|
|
SecureJsonData map[string]string `json:"secureJsonData"`
|
|
PluginVersion string `json:"version"`
|
|
|
|
PluginId string `json:"-"`
|
|
OrgId int64 `json:"-"`
|
|
}
|
|
|
|
// specific command, will only update version
|
|
type UpdatePluginSettingVersionCmd struct {
|
|
PluginVersion string
|
|
PluginId string `json:"-"`
|
|
OrgId int64 `json:"-"`
|
|
}
|
|
|
|
func (cmd *UpdatePluginSettingCmd) GetEncryptedJsonData() securejsondata.SecureJsonData {
|
|
return securejsondata.GetEncryptedJsonData(cmd.SecureJsonData)
|
|
}
|
|
|
|
// ---------------------
|
|
// QUERIES
|
|
|
|
type PluginSettingInfoDTO struct {
|
|
OrgId int64
|
|
PluginId string
|
|
Enabled bool
|
|
Pinned bool
|
|
PluginVersion string
|
|
}
|
|
|
|
type GetPluginSettingByIdQuery struct {
|
|
PluginId string
|
|
OrgId int64
|
|
Result *PluginSetting
|
|
}
|
|
|
|
type PluginStateChangedEvent struct {
|
|
PluginId string
|
|
OrgId int64
|
|
Enabled bool
|
|
}
|