mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 09:33:34 -06:00
* NewIA: Plugin nav config * progress * Progress * Things are working * Add monitoring node * Add alerts and incidents * added experiment with standalone page * Refactoring by adding a type for navtree root * First test working * More tests * more tests * Progress on richer config and sorting * Sort weight working * Path config * Improving logic for not including admin or cfg nodes, making it the last step so that enterprise can add admin nodes without having to worry about the section not existing * fixed index routes * removed file * Fixes * Fixing tests * Fixing more tests and adding support for weight config * Updates * Remove unused fake * More fixes * Minor tweak * Minor fix * Can now control position using sortweight even when existing items have no sortweight * Added tests for frontend standalone page logic * more tests * Remove unused fake and fixed lint issue * Moving reading settings to navtree impl package * remove nav_id setting prefix * Remove old test file * Fix trailing newline * Fixed bug with adding nil node * fixing lint issue * remove some code we have to rethink * move read settings to PrivideService and switch to util.SplitString
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
package pluginsettings
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
type FakePluginSettings struct {
|
|
Service
|
|
|
|
Plugins map[string]*DTO
|
|
}
|
|
|
|
// GetPluginSettings returns all Plugin Settings for the provided Org
|
|
func (ps *FakePluginSettings) GetPluginSettings(_ context.Context, _ *GetArgs) ([]*InfoDTO, error) {
|
|
res := []*InfoDTO{}
|
|
for _, dto := range ps.Plugins {
|
|
res = append(res, &InfoDTO{
|
|
PluginID: dto.PluginID,
|
|
OrgID: dto.OrgID,
|
|
Enabled: dto.Enabled,
|
|
Pinned: dto.Pinned,
|
|
PluginVersion: dto.PluginVersion,
|
|
})
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
// GetPluginSettingByPluginID returns a Plugin Settings by Plugin ID
|
|
func (ps *FakePluginSettings) GetPluginSettingByPluginID(ctx context.Context, args *GetByPluginIDArgs) (*DTO, error) {
|
|
if res, ok := ps.Plugins[args.PluginID]; ok {
|
|
return res, nil
|
|
}
|
|
return nil, models.ErrPluginSettingNotFound
|
|
}
|
|
|
|
// UpdatePluginSetting updates a Plugin Setting
|
|
func (ps *FakePluginSettings) UpdatePluginSetting(ctx context.Context, args *UpdateArgs) error {
|
|
var secureData map[string][]byte
|
|
if args.SecureJSONData != nil {
|
|
secureData := map[string][]byte{}
|
|
for k, v := range args.SecureJSONData {
|
|
secureData[k] = ([]byte)(v)
|
|
}
|
|
}
|
|
// save
|
|
ps.Plugins[args.PluginID] = &DTO{
|
|
ID: int64(len(ps.Plugins)),
|
|
OrgID: args.OrgID,
|
|
PluginID: args.PluginID,
|
|
PluginVersion: args.PluginVersion,
|
|
JSONData: args.JSONData,
|
|
SecureJSONData: secureData,
|
|
Enabled: args.Enabled,
|
|
Pinned: args.Pinned,
|
|
Updated: time.Now(),
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UpdatePluginSettingPluginVersion updates a Plugin Setting's plugin version
|
|
func (ps *FakePluginSettings) UpdatePluginSettingPluginVersion(ctx context.Context, args *UpdatePluginVersionArgs) error {
|
|
if res, ok := ps.Plugins[args.PluginID]; ok {
|
|
res.PluginVersion = args.PluginVersion
|
|
return nil
|
|
}
|
|
return models.ErrPluginSettingNotFound
|
|
}
|
|
|
|
// DecryptedValues decrypts the encrypted secureJSONData of the provided plugin setting and
|
|
// returns the decrypted values.
|
|
func (ps *FakePluginSettings) DecryptedValues(dto *DTO) map[string]string {
|
|
// TODO: Implement
|
|
return nil
|
|
}
|