mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add encryption service * Add tests for encryption service * Inject encryption service into http server * Replace encryption global function usage in login tests * Migrate to Wire * Move Encryption bindings to OSS Wire set * Chore: Refactor securedata to remove global encryption calls from dashboard snapshots * Fix dashboard snapshot tests * Remove no longer user test * Add dashboard snapshots service tests * Refactor service initialization * Set up dashboard snapshots service as a background service Co-authored-by: Tania B <yalyna.ts@gmail.com> Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com>
84 lines
2.2 KiB
Go
84 lines
2.2 KiB
Go
package dashboardsnapshots
|
|
|
|
import (
|
|
"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/encryption"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
type Service struct {
|
|
Bus bus.Bus
|
|
SQLStore *sqlstore.SQLStore
|
|
EncryptionService encryption.Service
|
|
}
|
|
|
|
func ProvideService(bus bus.Bus, store *sqlstore.SQLStore, encryptionService encryption.Service) *Service {
|
|
s := &Service{
|
|
Bus: bus,
|
|
SQLStore: store,
|
|
EncryptionService: encryptionService,
|
|
}
|
|
|
|
s.Bus.AddHandler(s.CreateDashboardSnapshot)
|
|
s.Bus.AddHandler(s.GetDashboardSnapshot)
|
|
s.Bus.AddHandler(s.DeleteDashboardSnapshot)
|
|
s.Bus.AddHandler(s.SearchDashboardSnapshots)
|
|
s.Bus.AddHandler(s.DeleteExpiredSnapshots)
|
|
|
|
return s
|
|
}
|
|
|
|
func (s *Service) CreateDashboardSnapshot(cmd *models.CreateDashboardSnapshotCommand) error {
|
|
marshalledData, err := cmd.Dashboard.Encode()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
encryptedDashboard, err := s.EncryptionService.Encrypt(marshalledData, setting.SecretKey)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmd.DashboardEncrypted = encryptedDashboard
|
|
|
|
return s.SQLStore.CreateDashboardSnapshot(cmd)
|
|
}
|
|
|
|
func (s *Service) GetDashboardSnapshot(query *models.GetDashboardSnapshotQuery) error {
|
|
err := s.SQLStore.GetDashboardSnapshot(query)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if query.Result.DashboardEncrypted != nil {
|
|
decryptedDashboard, err := s.EncryptionService.Decrypt(query.Result.DashboardEncrypted, setting.SecretKey)
|
|
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(cmd *models.DeleteDashboardSnapshotCommand) error {
|
|
return s.SQLStore.DeleteDashboardSnapshot(cmd)
|
|
}
|
|
|
|
func (s *Service) SearchDashboardSnapshots(query *models.GetDashboardSnapshotsQuery) error {
|
|
return s.SQLStore.SearchDashboardSnapshots(query)
|
|
}
|
|
|
|
func (s *Service) DeleteExpiredSnapshots(cmd *models.DeleteExpiredSnapshotsCommand) error {
|
|
return s.SQLStore.DeleteExpiredSnapshots(cmd)
|
|
}
|