mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* wip: Implement kvstore for secrets
* wip: Refactor kvstore for secrets
* wip: Add format key function to secrets kvstore sql
* wip: Add migration for secrets kvstore
* Remove unused Key field from secrets kvstore
* Remove secret values from debug logs
* Integrate unified secrets with datasources
* Fix minor issues and tests for kvstore
* Create test service helper for secret store
* Remove encryption tests from datasources
* Move secret operations after datasources
* Fix datasource proxy tests
* Fix legacy data tests
* Add Name to all delete data source commands
* Implement decryption cache on sql secret store
* Fix minor issue with cache and tests
* Use secret type on secret store datasource operations
* Add comments to make create and update clear
* Rename itemFound variable to isFound
* Improve secret deletion and cache management
* Add base64 encoding to sql secret store
* Move secret retrieval to decrypted values function
* Refactor decrypt secure json data functions
* Fix expr tests
* Fix datasource tests
* Fix plugin proxy tests
* Fix query tests
* Fix metrics api tests
* Remove unused fake secrets service from query tests
* Add rename function to secret store
* Add check for error renaming secret
* Remove bus from tests to fix merge conflicts
* Add background secrets migration to datasources
* Get datasource secure json fields from secrets
* Move migration to secret store
* Revert "Move migration to secret store"
This reverts commit 7c3f872072.
* Add secret service to datasource service on tests
* Fix datasource tests
* Remove merge conflict on wire
* Add ctx to data source http transport on prometheus stats collector
* Add ctx to data source http transport on stats collector test
125 lines
3.9 KiB
Go
125 lines
3.9 KiB
Go
package datasources
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
sdkhttpclient "github.com/grafana/grafana-plugin-sdk-go/backend/httpclient"
|
|
"github.com/grafana/grafana/pkg/infra/httpclient"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
|
)
|
|
|
|
type FakeDataSourceService struct {
|
|
lastId int64
|
|
DataSources []*models.DataSource
|
|
}
|
|
|
|
var _ datasources.DataSourceService = &FakeDataSourceService{}
|
|
|
|
func (s *FakeDataSourceService) GetDataSource(ctx context.Context, query *models.GetDataSourceQuery) error {
|
|
for _, datasource := range s.DataSources {
|
|
idMatch := query.Id != 0 && query.Id == datasource.Id
|
|
uidMatch := query.Uid != "" && query.Uid == datasource.Uid
|
|
nameMatch := query.Name != "" && query.Name == datasource.Name
|
|
if idMatch || nameMatch || uidMatch {
|
|
query.Result = datasource
|
|
|
|
return nil
|
|
}
|
|
}
|
|
return models.ErrDataSourceNotFound
|
|
}
|
|
|
|
func (s *FakeDataSourceService) GetDataSources(ctx context.Context, query *models.GetDataSourcesQuery) error {
|
|
for _, datasource := range s.DataSources {
|
|
orgMatch := query.OrgId != 0 && query.OrgId == datasource.OrgId
|
|
if orgMatch {
|
|
query.Result = append(query.Result, datasource)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) GetDataSourcesByType(ctx context.Context, query *models.GetDataSourcesByTypeQuery) error {
|
|
for _, datasource := range s.DataSources {
|
|
typeMatch := query.Type != "" && query.Type == datasource.Type
|
|
if typeMatch {
|
|
query.Result = append(query.Result, datasource)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) AddDataSource(ctx context.Context, cmd *models.AddDataSourceCommand) error {
|
|
if s.lastId == 0 {
|
|
s.lastId = int64(len(s.DataSources) - 1)
|
|
}
|
|
cmd.Result = &models.DataSource{
|
|
Id: s.lastId + 1,
|
|
Name: cmd.Name,
|
|
Type: cmd.Type,
|
|
Uid: cmd.Uid,
|
|
OrgId: cmd.OrgId,
|
|
}
|
|
s.DataSources = append(s.DataSources, cmd.Result)
|
|
return nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) DeleteDataSource(ctx context.Context, cmd *models.DeleteDataSourceCommand) error {
|
|
for i, datasource := range s.DataSources {
|
|
idMatch := cmd.ID != 0 && cmd.ID == datasource.Id
|
|
uidMatch := cmd.UID != "" && cmd.UID == datasource.Uid
|
|
nameMatch := cmd.Name != "" && cmd.Name == datasource.Name
|
|
if idMatch || nameMatch || uidMatch {
|
|
s.DataSources = append(s.DataSources[:i], s.DataSources[i+1:]...)
|
|
return nil
|
|
}
|
|
}
|
|
return models.ErrDataSourceNotFound
|
|
}
|
|
|
|
func (s *FakeDataSourceService) UpdateDataSource(ctx context.Context, cmd *models.UpdateDataSourceCommand) error {
|
|
for _, datasource := range s.DataSources {
|
|
idMatch := cmd.Id != 0 && cmd.Id == datasource.Id
|
|
uidMatch := cmd.Uid != "" && cmd.Uid == datasource.Uid
|
|
nameMatch := cmd.Name != "" && cmd.Name == datasource.Name
|
|
if idMatch || nameMatch || uidMatch {
|
|
if cmd.Name != "" {
|
|
datasource.Name = cmd.Name
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
return models.ErrDataSourceNotFound
|
|
}
|
|
|
|
func (s *FakeDataSourceService) GetDefaultDataSource(ctx context.Context, query *models.GetDefaultDataSourceQuery) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) GetHTTPTransport(ctx context.Context, ds *models.DataSource, provider httpclient.Provider, customMiddlewares ...sdkhttpclient.Middleware) (http.RoundTripper, error) {
|
|
rt, err := provider.GetTransport(sdkhttpclient.Options{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rt, nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) DecryptedValues(ctx context.Context, ds *models.DataSource) (map[string]string, error) {
|
|
values := make(map[string]string)
|
|
return values, nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) DecryptedValue(ctx context.Context, ds *models.DataSource, key string) (string, bool, error) {
|
|
return "", false, nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) DecryptedBasicAuthPassword(ctx context.Context, ds *models.DataSource) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (s *FakeDataSourceService) DecryptedPassword(ctx context.Context, ds *models.DataSource) (string, error) {
|
|
return "", nil
|
|
}
|