mirror of https://github.com/grafana/grafana.git
106 lines
2.6 KiB
Go
106 lines
2.6 KiB
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/grafana/grafana/pkg/infra/localcache"
|
||
|
"github.com/grafana/grafana/pkg/infra/log"
|
||
|
"github.com/grafana/grafana/pkg/models"
|
||
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
||
|
)
|
||
|
|
||
|
func ProvideCacheService(cacheService *localcache.CacheService, sqlStore *sqlstore.SQLStore) *CacheServiceImpl {
|
||
|
return &CacheServiceImpl{
|
||
|
logger: log.New("datasources"),
|
||
|
CacheService: cacheService,
|
||
|
SQLStore: sqlStore,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type CacheServiceImpl struct {
|
||
|
logger log.Logger
|
||
|
CacheService *localcache.CacheService
|
||
|
SQLStore *sqlstore.SQLStore
|
||
|
}
|
||
|
|
||
|
func (dc *CacheServiceImpl) GetDatasource(
|
||
|
ctx context.Context,
|
||
|
datasourceID int64,
|
||
|
user *models.SignedInUser,
|
||
|
skipCache bool,
|
||
|
) (*models.DataSource, error) {
|
||
|
cacheKey := idKey(datasourceID)
|
||
|
|
||
|
if !skipCache {
|
||
|
if cached, found := dc.CacheService.Get(cacheKey); found {
|
||
|
ds := cached.(*models.DataSource)
|
||
|
if ds.OrgId == user.OrgId {
|
||
|
return ds, nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dc.logger.Debug("Querying for data source via SQL store", "id", datasourceID, "orgId", user.OrgId)
|
||
|
|
||
|
query := &models.GetDataSourceQuery{Id: datasourceID, OrgId: user.OrgId}
|
||
|
err := dc.SQLStore.GetDataSource(ctx, query)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ds := query.Result
|
||
|
|
||
|
if ds.Uid != "" {
|
||
|
dc.CacheService.Set(uidKey(ds.OrgId, ds.Uid), ds, time.Second*5)
|
||
|
}
|
||
|
dc.CacheService.Set(cacheKey, ds, time.Second*5)
|
||
|
return ds, nil
|
||
|
}
|
||
|
|
||
|
func (dc *CacheServiceImpl) GetDatasourceByUID(
|
||
|
ctx context.Context,
|
||
|
datasourceUID string,
|
||
|
user *models.SignedInUser,
|
||
|
skipCache bool,
|
||
|
) (*models.DataSource, error) {
|
||
|
if datasourceUID == "" {
|
||
|
return nil, fmt.Errorf("can not get data source by uid, uid is empty")
|
||
|
}
|
||
|
if user.OrgId == 0 {
|
||
|
return nil, fmt.Errorf("can not get data source by uid, orgId is missing")
|
||
|
}
|
||
|
uidCacheKey := uidKey(user.OrgId, datasourceUID)
|
||
|
|
||
|
if !skipCache {
|
||
|
if cached, found := dc.CacheService.Get(uidCacheKey); found {
|
||
|
ds := cached.(*models.DataSource)
|
||
|
if ds.OrgId == user.OrgId {
|
||
|
return ds, nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dc.logger.Debug("Querying for data source via SQL store", "uid", datasourceUID, "orgId", user.OrgId)
|
||
|
query := &models.GetDataSourceQuery{Uid: datasourceUID, OrgId: user.OrgId}
|
||
|
err := dc.SQLStore.GetDataSource(ctx, query)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ds := query.Result
|
||
|
|
||
|
dc.CacheService.Set(uidCacheKey, ds, time.Second*5)
|
||
|
dc.CacheService.Set(idKey(ds.Id), ds, time.Second*5)
|
||
|
return ds, nil
|
||
|
}
|
||
|
|
||
|
func idKey(id int64) string {
|
||
|
return fmt.Sprintf("ds-%d", id)
|
||
|
}
|
||
|
|
||
|
func uidKey(orgID int64, uid string) string {
|
||
|
return fmt.Sprintf("ds-orgid-uid-%d-%s", orgID, uid)
|
||
|
}
|