2014-12-16 05:04:08 -06:00
|
|
|
package models
|
|
|
|
|
2014-12-18 13:26:06 -06:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"time"
|
2016-03-11 16:28:33 -06:00
|
|
|
|
2016-11-16 02:54:26 -06:00
|
|
|
"github.com/grafana/grafana/pkg/components/securejsondata"
|
2016-03-11 16:28:33 -06:00
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
2014-12-18 13:26:06 -06:00
|
|
|
)
|
2014-12-16 05:04:08 -06:00
|
|
|
|
|
|
|
const (
|
2021-03-04 08:43:43 -06:00
|
|
|
DS_GRAPHITE = "graphite"
|
|
|
|
DS_INFLUXDB = "influxdb"
|
|
|
|
DS_INFLUXDB_08 = "influxdb_08"
|
|
|
|
DS_ES = "elasticsearch"
|
|
|
|
DS_PROMETHEUS = "prometheus"
|
|
|
|
DS_MYSQL = "mysql"
|
|
|
|
DS_ACCESS_DIRECT = "direct"
|
|
|
|
DS_ACCESS_PROXY = "proxy"
|
|
|
|
DS_ES_OPEN_DISTRO = "grafana-es-open-distro-datasource"
|
2014-12-16 05:04:08 -06:00
|
|
|
)
|
|
|
|
|
2014-12-18 13:26:06 -06:00
|
|
|
var (
|
2020-11-05 06:07:06 -06:00
|
|
|
ErrDataSourceNotFound = errors.New("data source not found")
|
|
|
|
ErrDataSourceNameExists = errors.New("data source with the same name already exists")
|
|
|
|
ErrDataSourceUidExists = errors.New("data source with the same uid already exists")
|
|
|
|
ErrDataSourceUpdatingOldVersion = errors.New("trying to update old version of datasource")
|
|
|
|
ErrDatasourceIsReadOnly = errors.New("data source is readonly, can only be updated from configuration")
|
|
|
|
ErrDataSourceAccessDenied = errors.New("data source access denied")
|
|
|
|
ErrDataSourceFailedGenerateUniqueUid = errors.New("failed to generate unique datasource ID")
|
2021-01-13 12:16:27 -06:00
|
|
|
ErrDataSourceIdentifierNotSet = errors.New("unique identifier and org id are needed to be able to get or delete a datasource")
|
2014-12-18 13:26:06 -06:00
|
|
|
)
|
|
|
|
|
2014-12-16 05:04:08 -06:00
|
|
|
type DsAccess string
|
|
|
|
|
|
|
|
type DataSource struct {
|
2020-10-12 13:51:39 -05:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
OrgId int64 `json:"orgId"`
|
|
|
|
Version int `json:"version"`
|
2014-12-16 05:04:08 -06:00
|
|
|
|
2020-10-12 13:51:39 -05:00
|
|
|
Name string `json:"name"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Access DsAccess `json:"access"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
User string `json:"user"`
|
|
|
|
Database string `json:"database"`
|
|
|
|
BasicAuth bool `json:"basicAuth"`
|
|
|
|
BasicAuthUser string `json:"basicAuthUser"`
|
|
|
|
BasicAuthPassword string `json:"basicAuthPassword"`
|
|
|
|
WithCredentials bool `json:"withCredentials"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
JsonData *simplejson.Json `json:"jsonData"`
|
|
|
|
SecureJsonData securejsondata.SecureJsonData `json:"secureJsonData"`
|
|
|
|
ReadOnly bool `json:"readOnly"`
|
|
|
|
Uid string `json:"uid"`
|
2014-12-16 05:04:08 -06:00
|
|
|
|
2020-10-12 13:51:39 -05:00
|
|
|
Created time.Time `json:"created"`
|
|
|
|
Updated time.Time `json:"updated"`
|
2014-12-16 05:04:08 -06:00
|
|
|
}
|
|
|
|
|
2019-04-15 04:11:17 -05:00
|
|
|
// DecryptedBasicAuthPassword returns data source basic auth password in plain text. It uses either deprecated
|
|
|
|
// basic_auth_password field or encrypted secure_json_data[basicAuthPassword] variable.
|
|
|
|
func (ds *DataSource) DecryptedBasicAuthPassword() string {
|
|
|
|
return ds.decryptedValue("basicAuthPassword", ds.BasicAuthPassword)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DecryptedPassword returns data source password in plain text. It uses either deprecated password field
|
|
|
|
// or encrypted secure_json_data[password] variable.
|
|
|
|
func (ds *DataSource) DecryptedPassword() string {
|
|
|
|
return ds.decryptedValue("password", ds.Password)
|
|
|
|
}
|
|
|
|
|
|
|
|
// decryptedValue returns decrypted value from secureJsonData
|
|
|
|
func (ds *DataSource) decryptedValue(field string, fallback string) string {
|
2019-11-22 07:21:23 -06:00
|
|
|
if value, ok := ds.DecryptedValue(field); ok {
|
2019-04-15 04:11:17 -05:00
|
|
|
return value
|
|
|
|
}
|
|
|
|
return fallback
|
|
|
|
}
|
|
|
|
|
2015-01-09 04:01:37 -06:00
|
|
|
// ----------------------
|
|
|
|
// COMMANDS
|
2014-12-18 13:26:06 -06:00
|
|
|
|
2015-01-09 09:36:23 -06:00
|
|
|
// Also acts as api DTO
|
2014-12-16 09:45:07 -06:00
|
|
|
type AddDataSourceCommand struct {
|
2016-11-16 02:54:26 -06:00
|
|
|
Name string `json:"name" binding:"Required"`
|
|
|
|
Type string `json:"type" binding:"Required"`
|
|
|
|
Access DsAccess `json:"access" binding:"Required"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Database string `json:"database"`
|
|
|
|
User string `json:"user"`
|
|
|
|
BasicAuth bool `json:"basicAuth"`
|
|
|
|
BasicAuthUser string `json:"basicAuthUser"`
|
|
|
|
BasicAuthPassword string `json:"basicAuthPassword"`
|
|
|
|
WithCredentials bool `json:"withCredentials"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
JsonData *simplejson.Json `json:"jsonData"`
|
|
|
|
SecureJsonData map[string]string `json:"secureJsonData"`
|
2020-04-20 08:48:38 -05:00
|
|
|
Uid string `json:"uid"`
|
2015-03-02 02:58:35 -06:00
|
|
|
|
2019-09-17 04:29:43 -05:00
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
ReadOnly bool `json:"-"`
|
2015-01-09 04:01:37 -06:00
|
|
|
|
|
|
|
Result *DataSource
|
2014-12-16 09:45:07 -06:00
|
|
|
}
|
2014-12-17 10:32:22 -06:00
|
|
|
|
2015-01-09 09:36:23 -06:00
|
|
|
// Also acts as api DTO
|
2014-12-17 10:32:22 -06:00
|
|
|
type UpdateDataSourceCommand struct {
|
2016-11-16 02:54:26 -06:00
|
|
|
Name string `json:"name" binding:"Required"`
|
|
|
|
Type string `json:"type" binding:"Required"`
|
|
|
|
Access DsAccess `json:"access" binding:"Required"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
User string `json:"user"`
|
|
|
|
Database string `json:"database"`
|
|
|
|
BasicAuth bool `json:"basicAuth"`
|
|
|
|
BasicAuthUser string `json:"basicAuthUser"`
|
|
|
|
BasicAuthPassword string `json:"basicAuthPassword"`
|
|
|
|
WithCredentials bool `json:"withCredentials"`
|
|
|
|
IsDefault bool `json:"isDefault"`
|
|
|
|
JsonData *simplejson.Json `json:"jsonData"`
|
|
|
|
SecureJsonData map[string]string `json:"secureJsonData"`
|
2017-10-19 10:28:54 -05:00
|
|
|
Version int `json:"version"`
|
2020-04-20 08:48:38 -05:00
|
|
|
Uid string `json:"uid"`
|
2015-02-28 10:27:30 -06:00
|
|
|
|
2019-09-17 04:29:43 -05:00
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
Id int64 `json:"-"`
|
|
|
|
ReadOnly bool `json:"-"`
|
2017-10-19 10:28:54 -05:00
|
|
|
|
|
|
|
Result *DataSource
|
2014-12-17 10:32:22 -06:00
|
|
|
}
|
|
|
|
|
2021-01-13 12:16:27 -06:00
|
|
|
// DeleteDataSourceCommand will delete a DataSource based on OrgID as well as the UID (preferred), ID, or Name.
|
|
|
|
// At least one of the UID, ID, or Name properties must be set in addition to OrgID.
|
|
|
|
type DeleteDataSourceCommand struct {
|
|
|
|
ID int64
|
|
|
|
UID string
|
|
|
|
Name string
|
2015-01-09 04:01:37 -06:00
|
|
|
|
2021-01-13 12:16:27 -06:00
|
|
|
OrgID int64
|
2017-10-26 10:13:07 -05:00
|
|
|
|
|
|
|
DeletedDatasourcesCount int64
|
2017-02-09 20:11:36 -06:00
|
|
|
}
|
|
|
|
|
2015-01-09 04:01:37 -06:00
|
|
|
// ---------------------
|
|
|
|
// QUERIES
|
|
|
|
|
|
|
|
type GetDataSourcesQuery struct {
|
2020-12-28 05:24:42 -06:00
|
|
|
OrgId int64
|
|
|
|
DataSourceLimit int
|
|
|
|
User *SignedInUser
|
|
|
|
Result []*DataSource
|
2015-01-09 04:01:37 -06:00
|
|
|
}
|
|
|
|
|
2021-03-17 04:14:53 -05:00
|
|
|
type GetDataSourcesByTypeQuery struct {
|
|
|
|
Type string
|
|
|
|
Result []*DataSource
|
|
|
|
}
|
|
|
|
|
2021-01-07 14:33:17 -06:00
|
|
|
type GetDefaultDataSourceQuery struct {
|
|
|
|
OrgId int64
|
|
|
|
User *SignedInUser
|
|
|
|
Result *DataSource
|
|
|
|
}
|
|
|
|
|
2021-01-13 12:16:27 -06:00
|
|
|
// GetDataSourceQuery will get a DataSource based on OrgID as well as the UID (preferred), ID, or Name.
|
|
|
|
// At least one of the UID, ID, or Name properties must be set in addition to OrgID.
|
|
|
|
type GetDataSourceQuery struct {
|
|
|
|
Id int64
|
|
|
|
Uid string
|
|
|
|
Name string
|
|
|
|
|
|
|
|
OrgId int64
|
2015-01-09 04:01:37 -06:00
|
|
|
|
2016-06-06 10:11:46 -05:00
|
|
|
Result *DataSource
|
2015-02-15 13:10:34 -06:00
|
|
|
}
|
|
|
|
|
2015-01-09 04:01:37 -06:00
|
|
|
// ---------------------
|
2018-10-01 08:38:55 -05:00
|
|
|
// Permissions
|
|
|
|
// ---------------------
|
|
|
|
|
2018-10-01 12:31:03 -05:00
|
|
|
type DsPermissionType int
|
2018-10-01 08:38:55 -05:00
|
|
|
|
|
|
|
const (
|
2018-10-17 08:58:52 -05:00
|
|
|
DsPermissionNoAccess DsPermissionType = iota
|
|
|
|
DsPermissionQuery
|
2018-10-01 08:38:55 -05:00
|
|
|
)
|
|
|
|
|
2018-10-01 12:31:03 -05:00
|
|
|
func (p DsPermissionType) String() string {
|
2018-10-01 08:38:55 -05:00
|
|
|
names := map[int]string{
|
2018-10-01 12:31:03 -05:00
|
|
|
int(DsPermissionQuery): "Query",
|
|
|
|
int(DsPermissionNoAccess): "No Access",
|
2018-10-01 08:38:55 -05:00
|
|
|
}
|
|
|
|
return names[int(p)]
|
|
|
|
}
|
|
|
|
|
2018-10-10 07:21:57 -05:00
|
|
|
type DatasourcesPermissionFilterQuery struct {
|
|
|
|
User *SignedInUser
|
|
|
|
Datasources []*DataSource
|
|
|
|
Result []*DataSource
|
|
|
|
}
|