mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
c1b30c56c9
* Correlations: Get Single correlations * Correlations: Get all correlations for given source ds * Correlations: Get all correlations * add tests * add DB indices * fix lint errors * remove skip from tests * use DatasourceService in test
232 lines
6.0 KiB
Go
232 lines
6.0 KiB
Go
package correlations
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
// createCorrelation adds a correlation
|
|
func (s CorrelationsService) createCorrelation(ctx context.Context, cmd CreateCorrelationCommand) (Correlation, error) {
|
|
correlation := Correlation{
|
|
UID: util.GenerateShortUID(),
|
|
SourceUID: cmd.SourceUID,
|
|
TargetUID: cmd.TargetUID,
|
|
Label: cmd.Label,
|
|
Description: cmd.Description,
|
|
}
|
|
|
|
err := s.SQLStore.WithTransactionalDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
var err error
|
|
|
|
query := &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.SourceUID,
|
|
}
|
|
if err = s.DataSourceService.GetDataSource(ctx, query); err != nil {
|
|
return ErrSourceDataSourceDoesNotExists
|
|
}
|
|
|
|
if !cmd.SkipReadOnlyCheck && query.Result.ReadOnly {
|
|
return ErrSourceDataSourceReadOnly
|
|
}
|
|
|
|
if err = s.DataSourceService.GetDataSource(ctx, &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.TargetUID,
|
|
}); err != nil {
|
|
return ErrTargetDataSourceDoesNotExists
|
|
}
|
|
|
|
_, err = session.Insert(correlation)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
return Correlation{}, err
|
|
}
|
|
|
|
return correlation, nil
|
|
}
|
|
|
|
func (s CorrelationsService) deleteCorrelation(ctx context.Context, cmd DeleteCorrelationCommand) error {
|
|
return s.SQLStore.WithDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
query := &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.SourceUID,
|
|
}
|
|
if err := s.DataSourceService.GetDataSource(ctx, query); err != nil {
|
|
return ErrSourceDataSourceDoesNotExists
|
|
}
|
|
|
|
if query.Result.ReadOnly {
|
|
return ErrSourceDataSourceReadOnly
|
|
}
|
|
|
|
deletedCount, err := session.Delete(&Correlation{UID: cmd.UID, SourceUID: cmd.SourceUID})
|
|
if deletedCount == 0 {
|
|
return ErrCorrelationNotFound
|
|
}
|
|
return err
|
|
})
|
|
}
|
|
|
|
func (s CorrelationsService) updateCorrelation(ctx context.Context, cmd UpdateCorrelationCommand) (Correlation, error) {
|
|
correlation := Correlation{
|
|
UID: cmd.UID,
|
|
SourceUID: cmd.SourceUID,
|
|
}
|
|
|
|
err := s.SQLStore.WithTransactionalDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
query := &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.SourceUID,
|
|
}
|
|
if err := s.DataSourceService.GetDataSource(ctx, query); err != nil {
|
|
return ErrSourceDataSourceDoesNotExists
|
|
}
|
|
|
|
if query.Result.ReadOnly {
|
|
return ErrSourceDataSourceReadOnly
|
|
}
|
|
|
|
if cmd.Label == nil && cmd.Description == nil {
|
|
return ErrUpdateCorrelationEmptyParams
|
|
}
|
|
update := Correlation{}
|
|
if cmd.Label != nil {
|
|
update.Label = *cmd.Label
|
|
session.MustCols("label")
|
|
}
|
|
if cmd.Description != nil {
|
|
update.Description = *cmd.Description
|
|
session.MustCols("description")
|
|
}
|
|
|
|
updateCount, err := session.Where("uid = ? AND source_uid = ?", correlation.UID, correlation.SourceUID).Limit(1).Update(update)
|
|
if updateCount == 0 {
|
|
return ErrCorrelationNotFound
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
found, err := session.Get(&correlation)
|
|
if !found {
|
|
return ErrCorrelationNotFound
|
|
}
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
return Correlation{}, err
|
|
}
|
|
|
|
return correlation, nil
|
|
}
|
|
|
|
func (s CorrelationsService) getCorrelation(ctx context.Context, cmd GetCorrelationQuery) (Correlation, error) {
|
|
correlation := Correlation{
|
|
UID: cmd.UID,
|
|
SourceUID: cmd.SourceUID,
|
|
}
|
|
|
|
err := s.SQLStore.WithTransactionalDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
query := &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.SourceUID,
|
|
}
|
|
if err := s.DataSourceService.GetDataSource(ctx, query); err != nil {
|
|
return ErrSourceDataSourceDoesNotExists
|
|
}
|
|
|
|
found, err := session.Where("uid = ? AND source_uid = ?", correlation.UID, correlation.SourceUID).Get(&correlation)
|
|
if !found {
|
|
return ErrCorrelationNotFound
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
return Correlation{}, err
|
|
}
|
|
|
|
return correlation, nil
|
|
}
|
|
|
|
func (s CorrelationsService) getCorrelationsBySourceUID(ctx context.Context, cmd GetCorrelationsBySourceUIDQuery) ([]Correlation, error) {
|
|
correlationsCondiBean := Correlation{
|
|
SourceUID: cmd.SourceUID,
|
|
}
|
|
correlations := make([]Correlation, 0)
|
|
|
|
err := s.SQLStore.WithTransactionalDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
query := &datasources.GetDataSourceQuery{
|
|
OrgId: cmd.OrgId,
|
|
Uid: cmd.SourceUID,
|
|
}
|
|
if err := s.DataSourceService.GetDataSource(ctx, query); err != nil {
|
|
return ErrSourceDataSourceDoesNotExists
|
|
}
|
|
|
|
err := session.Find(&correlations, correlationsCondiBean)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
return []Correlation{}, err
|
|
}
|
|
|
|
if len(correlations) == 0 {
|
|
return []Correlation{}, ErrCorrelationNotFound
|
|
}
|
|
|
|
return correlations, nil
|
|
}
|
|
|
|
func (s CorrelationsService) getCorrelations(ctx context.Context, cmd GetCorrelationsQuery) ([]Correlation, error) {
|
|
correlations := make([]Correlation, 0)
|
|
|
|
err := s.SQLStore.WithDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
return session.Select("correlation.*").Join("", "data_source", "correlation.source_uid = data_source.uid").Where("data_source.org_id = ?", cmd.OrgId).Find(&correlations)
|
|
})
|
|
if err != nil {
|
|
return []Correlation{}, err
|
|
}
|
|
|
|
if len(correlations) == 0 {
|
|
return []Correlation{}, ErrCorrelationNotFound
|
|
}
|
|
|
|
return correlations, nil
|
|
}
|
|
|
|
func (s CorrelationsService) deleteCorrelationsBySourceUID(ctx context.Context, cmd DeleteCorrelationsBySourceUIDCommand) error {
|
|
return s.SQLStore.WithDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
_, err := session.Delete(&Correlation{SourceUID: cmd.SourceUID})
|
|
return err
|
|
})
|
|
}
|
|
|
|
func (s CorrelationsService) deleteCorrelationsByTargetUID(ctx context.Context, cmd DeleteCorrelationsByTargetUIDCommand) error {
|
|
return s.SQLStore.WithDbSession(ctx, func(session *sqlstore.DBSession) error {
|
|
_, err := session.Delete(&Correlation{TargetUID: cmd.TargetUID})
|
|
return err
|
|
})
|
|
}
|