mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
datasource as cfg: rename feature to provisioning
This commit is contained in:
174
pkg/services/provisioning/datasources/datasources.go
Normal file
174
pkg/services/provisioning/datasources/datasources.go
Normal file
@@ -0,0 +1,174 @@
|
||||
package datasources
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/grafana/grafana/pkg/bus"
|
||||
"github.com/grafana/grafana/pkg/log"
|
||||
|
||||
"github.com/grafana/grafana/pkg/models"
|
||||
yaml "gopkg.in/yaml.v2"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrInvalidConfigToManyDefault = errors.New("datasource.yaml config is invalid. Only one datasource can be marked as default")
|
||||
)
|
||||
|
||||
func Apply(configPath string) error {
|
||||
dc := NewDatasourceConfiguration()
|
||||
return dc.applyChanges(configPath)
|
||||
}
|
||||
|
||||
type DatasourceConfigurator struct {
|
||||
log log.Logger
|
||||
cfgProvider configProvider
|
||||
repository datasourceRepository
|
||||
}
|
||||
|
||||
func NewDatasourceConfiguration() DatasourceConfigurator {
|
||||
return newDatasourceConfiguration(log.New("setting.datasource"), sqlDatasourceRepository{})
|
||||
}
|
||||
|
||||
func newDatasourceConfiguration(log log.Logger, repo datasourceRepository) DatasourceConfigurator {
|
||||
return DatasourceConfigurator{
|
||||
log: log,
|
||||
repository: repo,
|
||||
cfgProvider: configProvider{},
|
||||
}
|
||||
}
|
||||
|
||||
func (dc *DatasourceConfigurator) applyChanges(configPath string) error {
|
||||
cfg, err := dc.cfgProvider.readConfig(configPath)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
defaultCount := 0
|
||||
for i := range cfg.Datasources {
|
||||
if cfg.Datasources[i].OrgId == 0 {
|
||||
cfg.Datasources[i].OrgId = 1
|
||||
}
|
||||
|
||||
if cfg.Datasources[i].IsDefault {
|
||||
defaultCount++
|
||||
if defaultCount > 1 {
|
||||
return ErrInvalidConfigToManyDefault
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
allDatasources, err := dc.repository.loadAllDatasources()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := dc.deleteDatasourcesNotInConfiguration(cfg, allDatasources); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
for _, ds := range cfg.Datasources {
|
||||
var dbDatasource *models.DataSource
|
||||
for _, ddd := range allDatasources {
|
||||
if ddd.Name == ds.Name && ddd.OrgId == ds.OrgId {
|
||||
dbDatasource = ddd
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
if dbDatasource == nil {
|
||||
dc.log.Info("inserting datasource from configuration ", "name", ds.Name)
|
||||
insertCmd := createInsertCommand(ds)
|
||||
err := dc.repository.insert(insertCmd)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
dc.log.Debug("updating datasource from configuration", "name", ds.Name)
|
||||
updateCmd := createUpdateCommand(ds, dbDatasource.Id)
|
||||
if err := dc.repository.update(updateCmd); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (dc *DatasourceConfigurator) deleteDatasourcesNotInConfiguration(cfg *DatasourcesAsConfig, allDatasources []*models.DataSource) error {
|
||||
if cfg.PurgeOtherDatasources {
|
||||
for _, dbDS := range allDatasources {
|
||||
delete := true
|
||||
for _, cfgDS := range cfg.Datasources {
|
||||
if dbDS.Name == cfgDS.Name && dbDS.OrgId == cfgDS.OrgId {
|
||||
delete = false
|
||||
}
|
||||
}
|
||||
|
||||
if delete {
|
||||
dc.log.Info("deleting datasource from configuration", "name", dbDS.Name)
|
||||
cmd := &models.DeleteDataSourceByIdCommand{Id: dbDS.Id, OrgId: dbDS.OrgId}
|
||||
if err := dc.repository.delete(cmd); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
type datasourceRepository interface {
|
||||
insert(*models.AddDataSourceCommand) error
|
||||
update(*models.UpdateDataSourceCommand) error
|
||||
delete(*models.DeleteDataSourceByIdCommand) error
|
||||
get(*models.GetDataSourceByNameQuery) error
|
||||
loadAllDatasources() ([]*models.DataSource, error)
|
||||
}
|
||||
|
||||
type sqlDatasourceRepository struct{}
|
||||
type configProvider struct{}
|
||||
|
||||
func (configProvider) readConfig(path string) (*DatasourcesAsConfig, error) {
|
||||
filename, _ := filepath.Abs(path)
|
||||
yamlFile, err := ioutil.ReadFile(filename)
|
||||
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
var datasources *DatasourcesAsConfig
|
||||
|
||||
err = yaml.Unmarshal(yamlFile, &datasources)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return datasources, nil
|
||||
}
|
||||
|
||||
func (sqlDatasourceRepository) delete(cmd *models.DeleteDataSourceByIdCommand) error {
|
||||
return bus.Dispatch(cmd)
|
||||
}
|
||||
|
||||
func (sqlDatasourceRepository) update(cmd *models.UpdateDataSourceCommand) error {
|
||||
return bus.Dispatch(cmd)
|
||||
}
|
||||
|
||||
func (sqlDatasourceRepository) insert(cmd *models.AddDataSourceCommand) error {
|
||||
return bus.Dispatch(cmd)
|
||||
}
|
||||
|
||||
func (sqlDatasourceRepository) get(cmd *models.GetDataSourceByNameQuery) error {
|
||||
return bus.Dispatch(cmd)
|
||||
}
|
||||
|
||||
func (sqlDatasourceRepository) loadAllDatasources() ([]*models.DataSource, error) {
|
||||
dss := &models.GetAllDataSourcesQuery{}
|
||||
if err := bus.Dispatch(dss); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return dss.Result, nil
|
||||
}
|
Reference in New Issue
Block a user