mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 04:59:15 -06:00
5652bde447
* Use secrets service in pluginproxy
* Use secrets service in pluginxontext
* Use secrets service in pluginsettings
* Use secrets service in provisioning
* Use secrets service in authinfoservice
* Use secrets service in api
* Use secrets service in sqlstore
* Use secrets service in dashboardshapshots
* Use secrets service in tsdb
* Use secrets service in datasources
* Use secrets service in alerting
* Use secrets service in ngalert
* Break cyclic dependancy
* Refactor service
* Break cyclic dependancy
* Add FakeSecretsStore
* Setup Secrets Service in sqlstore
* Fix
* Continue secrets service refactoring
* Fix cyclic dependancy in sqlstore tests
* Fix secrets service references
* Fix linter errors
* Add fake secrets service for tests
* Refactor SetupTestSecretsService
* Update setting up secret service in tests
* Fix missing secrets service in multiorg_alertmanager_test
* Use fake db in tests and sort imports
* Use fake db in datasources tests
* Fix more tests
* Fix linter issues
* Attempt to fix plugin proxy tests
* Pass secrets service to getPluginProxiedRequest in pluginproxy tests
* Fix pluginproxy tests
* Revert using secrets service in alerting and provisioning
* Update decryptFn in alerting migration
* Rename defaultProvider to currentProvider
* Use fake secrets service in alert channels tests
* Refactor secrets service test helper
* Update setting up secrets service in tests
* Revert alerting changes in api
* Add comments
* Remove secrets service from background services
* Convert global encryption functions into vars
* Revert "Convert global encryption functions into vars"
This reverts commit 498eb19859
.
* Add feature toggle for envelope encryption
* Rename toggle
Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com>
Co-authored-by: Joan López de la Franca Beltran <joanjan14@gmail.com>
85 lines
2.2 KiB
Go
85 lines
2.2 KiB
Go
package dashboardsnapshots
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/secrets"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
)
|
|
|
|
type Service struct {
|
|
Bus bus.Bus
|
|
SQLStore *sqlstore.SQLStore
|
|
SecretsService secrets.Service
|
|
}
|
|
|
|
func ProvideService(bus bus.Bus, store *sqlstore.SQLStore, secretsService secrets.Service) *Service {
|
|
s := &Service{
|
|
Bus: bus,
|
|
SQLStore: store,
|
|
SecretsService: secretsService,
|
|
}
|
|
|
|
s.Bus.AddHandlerCtx(s.CreateDashboardSnapshot)
|
|
s.Bus.AddHandlerCtx(s.GetDashboardSnapshot)
|
|
s.Bus.AddHandlerCtx(s.DeleteDashboardSnapshot)
|
|
s.Bus.AddHandlerCtx(s.SearchDashboardSnapshots)
|
|
s.Bus.AddHandlerCtx(s.DeleteExpiredSnapshots)
|
|
|
|
return s
|
|
}
|
|
|
|
func (s *Service) CreateDashboardSnapshot(ctx context.Context, cmd *models.CreateDashboardSnapshotCommand) error {
|
|
marshalledData, err := cmd.Dashboard.Encode()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
encryptedDashboard, err := s.SecretsService.Encrypt(ctx, marshalledData, secrets.WithoutScope())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmd.DashboardEncrypted = encryptedDashboard
|
|
|
|
return s.SQLStore.CreateDashboardSnapshot(cmd)
|
|
}
|
|
|
|
func (s *Service) GetDashboardSnapshot(ctx context.Context, query *models.GetDashboardSnapshotQuery) error {
|
|
err := s.SQLStore.GetDashboardSnapshot(query)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if query.Result.DashboardEncrypted != nil {
|
|
decryptedDashboard, err := s.SecretsService.Decrypt(ctx, query.Result.DashboardEncrypted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dashboard, err := simplejson.NewJson(decryptedDashboard)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
query.Result.Dashboard = dashboard
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func (s *Service) DeleteDashboardSnapshot(_ context.Context, cmd *models.DeleteDashboardSnapshotCommand) error {
|
|
return s.SQLStore.DeleteDashboardSnapshot(cmd)
|
|
}
|
|
|
|
func (s *Service) SearchDashboardSnapshots(_ context.Context, query *models.GetDashboardSnapshotsQuery) error {
|
|
return s.SQLStore.SearchDashboardSnapshots(query)
|
|
}
|
|
|
|
func (s *Service) DeleteExpiredSnapshots(_ context.Context, cmd *models.DeleteExpiredSnapshotsCommand) error {
|
|
return s.SQLStore.DeleteExpiredSnapshots(cmd)
|
|
}
|