2014-12-16 12:04:08 +01:00
|
|
|
package models
|
|
|
|
|
|
2014-12-18 20:26:06 +01:00
|
|
|
import (
|
|
|
|
|
"errors"
|
|
|
|
|
"time"
|
2016-03-11 23:28:33 +01:00
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
2014-12-18 20:26:06 +01:00
|
|
|
)
|
2014-12-16 12:04:08 +01:00
|
|
|
|
|
|
|
|
const (
|
2021-03-04 15:43:43 +01:00
|
|
|
DS_GRAPHITE = "graphite"
|
|
|
|
|
DS_INFLUXDB = "influxdb"
|
|
|
|
|
DS_INFLUXDB_08 = "influxdb_08"
|
|
|
|
|
DS_ES = "elasticsearch"
|
|
|
|
|
DS_PROMETHEUS = "prometheus"
|
2022-01-31 12:39:55 -03:00
|
|
|
DS_ALERTMANAGER = "alertmanager"
|
|
|
|
|
DS_JAEGER = "jaeger"
|
|
|
|
|
DS_LOKI = "loki"
|
|
|
|
|
DS_OPENTSDB = "opentsdb"
|
|
|
|
|
DS_TEMPO = "tempo"
|
|
|
|
|
DS_ZIPKIN = "zipkin"
|
2021-03-04 15:43:43 +01:00
|
|
|
DS_MYSQL = "mysql"
|
2022-01-31 12:39:55 -03:00
|
|
|
DS_POSTGRES = "postgres"
|
|
|
|
|
DS_MSSQL = "mssql"
|
2021-03-04 15:43:43 +01:00
|
|
|
DS_ACCESS_DIRECT = "direct"
|
|
|
|
|
DS_ACCESS_PROXY = "proxy"
|
|
|
|
|
DS_ES_OPEN_DISTRO = "grafana-es-open-distro-datasource"
|
2021-10-11 15:53:04 +01:00
|
|
|
DS_ES_OPENSEARCH = "grafana-opensearch-datasource"
|
2014-12-16 12:04:08 +01:00
|
|
|
)
|
|
|
|
|
|
2014-12-18 20:26:06 +01:00
|
|
|
var (
|
2020-11-05 13:07:06 +01: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 13:16:27 -05:00
|
|
|
ErrDataSourceIdentifierNotSet = errors.New("unique identifier and org id are needed to be able to get or delete a datasource")
|
2014-12-18 20:26:06 +01:00
|
|
|
)
|
|
|
|
|
|
2014-12-16 12:04:08 +01:00
|
|
|
type DsAccess string
|
|
|
|
|
|
|
|
|
|
type DataSource struct {
|
2020-10-12 21:51:39 +03:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
|
OrgId int64 `json:"orgId"`
|
|
|
|
|
Version int `json:"version"`
|
2014-12-16 12:04:08 +01:00
|
|
|
|
2021-10-07 16:33:50 +02: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 map[string][]byte `json:"secureJsonData"`
|
|
|
|
|
ReadOnly bool `json:"readOnly"`
|
|
|
|
|
Uid string `json:"uid"`
|
2014-12-16 12:04:08 +01:00
|
|
|
|
2020-10-12 21:51:39 +03:00
|
|
|
Created time.Time `json:"created"`
|
|
|
|
|
Updated time.Time `json:"updated"`
|
2014-12-16 12:04:08 +01:00
|
|
|
}
|
|
|
|
|
|
2015-01-09 11:01:37 +01:00
|
|
|
// ----------------------
|
|
|
|
|
// COMMANDS
|
2014-12-18 20:26:06 +01:00
|
|
|
|
2015-01-09 16:36:23 +01:00
|
|
|
// Also acts as api DTO
|
2014-12-16 16:45:07 +01:00
|
|
|
type AddDataSourceCommand struct {
|
2016-11-16 09:54:26 +01: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 15:48:38 +02:00
|
|
|
Uid string `json:"uid"`
|
2015-03-02 09:58:35 +01:00
|
|
|
|
2021-10-07 16:33:50 +02:00
|
|
|
OrgId int64 `json:"-"`
|
2022-03-21 17:16:05 +01:00
|
|
|
UserId int64 `json:"-"`
|
2021-10-07 16:33:50 +02:00
|
|
|
ReadOnly bool `json:"-"`
|
|
|
|
|
EncryptedSecureJsonData map[string][]byte `json:"-"`
|
2015-01-09 11:01:37 +01:00
|
|
|
|
2022-02-08 14:38:43 +02:00
|
|
|
Result *DataSource `json:"-"`
|
2014-12-16 16:45:07 +01:00
|
|
|
}
|
2014-12-17 17:32:22 +01:00
|
|
|
|
2015-01-09 16:36:23 +01:00
|
|
|
// Also acts as api DTO
|
2014-12-17 17:32:22 +01:00
|
|
|
type UpdateDataSourceCommand struct {
|
2016-11-16 09:54:26 +01: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 17:28:54 +02:00
|
|
|
Version int `json:"version"`
|
2020-04-20 15:48:38 +02:00
|
|
|
Uid string `json:"uid"`
|
2015-02-28 17:27:30 +01:00
|
|
|
|
2021-10-07 16:33:50 +02:00
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
|
Id int64 `json:"-"`
|
|
|
|
|
ReadOnly bool `json:"-"`
|
|
|
|
|
EncryptedSecureJsonData map[string][]byte `json:"-"`
|
2017-10-19 17:28:54 +02:00
|
|
|
|
2022-02-08 14:38:43 +02:00
|
|
|
Result *DataSource `json:"-"`
|
2014-12-17 17:32:22 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-13 13:16:27 -05: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 11:01:37 +01:00
|
|
|
|
2021-01-13 13:16:27 -05:00
|
|
|
OrgID int64
|
2017-10-26 17:13:07 +02:00
|
|
|
|
|
|
|
|
DeletedDatasourcesCount int64
|
2017-02-10 11:11:36 +09:00
|
|
|
}
|
|
|
|
|
|
2015-01-09 11:01:37 +01:00
|
|
|
// ---------------------
|
|
|
|
|
// QUERIES
|
|
|
|
|
|
|
|
|
|
type GetDataSourcesQuery struct {
|
2020-12-28 12:24:42 +01:00
|
|
|
OrgId int64
|
|
|
|
|
DataSourceLimit int
|
|
|
|
|
User *SignedInUser
|
|
|
|
|
Result []*DataSource
|
2015-01-09 11:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-17 09:14:53 +00:00
|
|
|
type GetDataSourcesByTypeQuery struct {
|
|
|
|
|
Type string
|
|
|
|
|
Result []*DataSource
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-07 21:33:17 +01:00
|
|
|
type GetDefaultDataSourceQuery struct {
|
|
|
|
|
OrgId int64
|
|
|
|
|
User *SignedInUser
|
|
|
|
|
Result *DataSource
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-13 13:16:27 -05: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 11:01:37 +01:00
|
|
|
|
2016-06-06 17:11:46 +02:00
|
|
|
Result *DataSource
|
2015-02-15 12:10:34 -07:00
|
|
|
}
|
|
|
|
|
|
2015-01-09 11:01:37 +01:00
|
|
|
// ---------------------
|
2018-10-01 15:38:55 +02:00
|
|
|
// Permissions
|
|
|
|
|
// ---------------------
|
|
|
|
|
|
2022-02-08 14:38:43 +02:00
|
|
|
// Datasource permission
|
|
|
|
|
// Description:
|
|
|
|
|
// * `0` - No Access
|
|
|
|
|
// * `1` - Query
|
|
|
|
|
// Enum: 0,1
|
|
|
|
|
// swagger:model
|
2018-10-01 19:31:03 +02:00
|
|
|
type DsPermissionType int
|
2018-10-01 15:38:55 +02:00
|
|
|
|
|
|
|
|
const (
|
2018-10-17 15:58:52 +02:00
|
|
|
DsPermissionNoAccess DsPermissionType = iota
|
|
|
|
|
DsPermissionQuery
|
2018-10-01 15:38:55 +02:00
|
|
|
)
|
|
|
|
|
|
2018-10-01 19:31:03 +02:00
|
|
|
func (p DsPermissionType) String() string {
|
2018-10-01 15:38:55 +02:00
|
|
|
names := map[int]string{
|
2018-10-01 19:31:03 +02:00
|
|
|
int(DsPermissionQuery): "Query",
|
|
|
|
|
int(DsPermissionNoAccess): "No Access",
|
2018-10-01 15:38:55 +02:00
|
|
|
}
|
|
|
|
|
return names[int(p)]
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-10 14:21:57 +02:00
|
|
|
type DatasourcesPermissionFilterQuery struct {
|
|
|
|
|
User *SignedInUser
|
|
|
|
|
Datasources []*DataSource
|
|
|
|
|
Result []*DataSource
|
|
|
|
|
}
|