2014-12-29 06:36:08 -06:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2020-03-18 06:08:52 -05:00
|
|
|
"encoding/json"
|
2020-04-22 03:30:06 -05:00
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2016-03-15 14:29:35 -05:00
|
|
|
"sort"
|
|
|
|
|
2020-04-23 13:08:21 -05:00
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
2015-02-05 03:37:13 -06:00
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
2020-03-04 05:57:20 -06:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2016-12-07 04:10:42 -06:00
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
2020-01-31 04:15:50 -06:00
|
|
|
"github.com/grafana/grafana/pkg/plugins/backendplugin"
|
2020-04-23 13:08:21 -05:00
|
|
|
"github.com/grafana/grafana/pkg/plugins/datasource/wrapper"
|
2015-06-01 05:15:49 -05:00
|
|
|
"github.com/grafana/grafana/pkg/util"
|
2020-04-22 03:30:06 -05:00
|
|
|
"github.com/grafana/grafana/pkg/util/errutil"
|
2014-12-29 06:36:08 -06:00
|
|
|
)
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func GetDataSources(c *models.ReqContext) Response {
|
|
|
|
query := models.GetDataSourcesQuery{OrgId: c.OrgId}
|
2014-12-29 06:36:08 -06:00
|
|
|
|
2015-02-14 03:04:27 -06:00
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to query datasources", err)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2016-03-15 14:29:35 -05:00
|
|
|
result := make(dtos.DataSourceList, 0)
|
2018-10-17 08:58:52 -05:00
|
|
|
for _, ds := range query.Result {
|
2017-04-25 08:17:49 -05:00
|
|
|
dsItem := dtos.DataSourceListItemDTO{
|
2015-02-23 13:07:49 -06:00
|
|
|
OrgId: ds.OrgId,
|
2018-10-01 08:38:55 -05:00
|
|
|
Id: ds.Id,
|
2014-12-29 06:36:08 -06:00
|
|
|
Name: ds.Name,
|
|
|
|
Url: ds.Url,
|
|
|
|
Type: ds.Type,
|
|
|
|
Access: ds.Access,
|
|
|
|
Password: ds.Password,
|
|
|
|
Database: ds.Database,
|
|
|
|
User: ds.User,
|
|
|
|
BasicAuth: ds.BasicAuth,
|
2015-01-09 09:36:23 -06:00
|
|
|
IsDefault: ds.IsDefault,
|
2016-09-01 10:21:13 -05:00
|
|
|
JsonData: ds.JsonData,
|
2017-10-24 08:28:39 -05:00
|
|
|
ReadOnly: ds.ReadOnly,
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
2016-03-15 14:29:35 -05:00
|
|
|
|
|
|
|
if plugin, exists := plugins.DataSources[ds.Type]; exists {
|
|
|
|
dsItem.TypeLogoUrl = plugin.Info.Logos.Small
|
|
|
|
} else {
|
2016-03-23 09:09:48 -05:00
|
|
|
dsItem.TypeLogoUrl = "public/img/icn-datasource.svg"
|
2016-03-15 14:29:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, dsItem)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2016-03-15 14:29:35 -05:00
|
|
|
sort.Sort(result)
|
2017-02-08 07:20:07 -06:00
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, &result)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func GetDataSourceById(c *models.ReqContext) Response {
|
|
|
|
query := models.GetDataSourceByIdQuery{
|
2015-02-23 13:07:49 -06:00
|
|
|
Id: c.ParamsInt64(":id"),
|
|
|
|
OrgId: c.OrgId,
|
2015-02-14 03:04:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceNotFound {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(404, "Data source not found", nil)
|
2015-11-13 02:43:25 -06:00
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to query datasources", err)
|
2015-02-14 03:04:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ds := query.Result
|
2016-03-08 04:51:03 -06:00
|
|
|
dtos := convertModelToDtos(ds)
|
2015-02-14 03:04:27 -06:00
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, &dtos)
|
2015-02-14 03:04:27 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func DeleteDataSourceById(c *models.ReqContext) Response {
|
2014-12-29 06:36:08 -06:00
|
|
|
id := c.ParamsInt64(":id")
|
|
|
|
|
|
|
|
if id <= 0 {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(400, "Missing valid datasource id", nil)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2018-10-01 08:38:55 -05:00
|
|
|
ds, err := getRawDataSourceById(id, c.OrgId)
|
2017-10-24 08:28:39 -05:00
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(400, "Failed to delete datasource", nil)
|
2017-10-24 08:28:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if ds.ReadOnly {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(403, "Cannot delete read-only data source", nil)
|
2017-10-24 08:28:39 -05:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
cmd := &models.DeleteDataSourceByIdCommand{Id: id, OrgId: c.OrgId}
|
2017-02-09 20:11:36 -06:00
|
|
|
|
2017-10-24 08:28:39 -05:00
|
|
|
err = bus.Dispatch(cmd)
|
2017-02-09 20:11:36 -06:00
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to delete datasource", err)
|
2017-02-09 20:11:36 -06:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Success("Data source deleted")
|
2017-02-09 20:11:36 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func DeleteDataSourceByName(c *models.ReqContext) Response {
|
2017-02-09 20:11:36 -06:00
|
|
|
name := c.Params(":name")
|
|
|
|
|
|
|
|
if name == "" {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(400, "Missing valid datasource name", nil)
|
2017-02-09 20:11:36 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
getCmd := &models.GetDataSourceByNameQuery{Name: name, OrgId: c.OrgId}
|
2017-10-24 08:28:39 -05:00
|
|
|
if err := bus.Dispatch(getCmd); err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceNotFound {
|
2018-06-22 21:15:36 -05:00
|
|
|
return Error(404, "Data source not found", nil)
|
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to delete datasource", err)
|
2017-10-24 08:28:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if getCmd.Result.ReadOnly {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(403, "Cannot delete read-only data source", nil)
|
2017-10-24 08:28:39 -05:00
|
|
|
}
|
2014-12-29 06:36:08 -06:00
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
cmd := &models.DeleteDataSourceByNameCommand{Name: name, OrgId: c.OrgId}
|
2014-12-29 06:36:08 -06:00
|
|
|
err := bus.Dispatch(cmd)
|
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to delete datasource", err)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Success("Data source deleted")
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2020-04-22 03:30:06 -05:00
|
|
|
func validateURL(u string) Response {
|
|
|
|
if u != "" {
|
|
|
|
_, err := url.Parse(u)
|
|
|
|
if err != nil {
|
|
|
|
return Error(400, fmt.Sprintf("Validation error, invalid URL: %q", u), errutil.Wrapf(err,
|
|
|
|
"invalid data source URL %q", u))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func AddDataSource(c *models.ReqContext, cmd models.AddDataSourceCommand) Response {
|
2015-02-23 13:07:49 -06:00
|
|
|
cmd.OrgId = c.OrgId
|
2020-04-22 03:30:06 -05:00
|
|
|
if resp := validateURL(cmd.Url); resp != nil {
|
|
|
|
return resp
|
|
|
|
}
|
2014-12-29 06:36:08 -06:00
|
|
|
|
2015-01-09 04:01:37 -06:00
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
2020-04-20 08:48:38 -05:00
|
|
|
if err == models.ErrDataSourceNameExists || err == models.ErrDataSourceUidExists {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(409, err.Error(), err)
|
2016-10-01 09:41:27 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to add datasource", err)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2017-10-19 10:28:54 -05:00
|
|
|
ds := convertModelToDtos(cmd.Result)
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, util.DynMap{
|
2017-10-19 10:28:54 -05:00
|
|
|
"message": "Datasource added",
|
|
|
|
"id": cmd.Result.Id,
|
|
|
|
"name": cmd.Result.Name,
|
|
|
|
"datasource": ds,
|
|
|
|
})
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func UpdateDataSource(c *models.ReqContext, cmd models.UpdateDataSourceCommand) Response {
|
2015-02-23 13:07:49 -06:00
|
|
|
cmd.OrgId = c.OrgId
|
2015-06-01 05:15:49 -05:00
|
|
|
cmd.Id = c.ParamsInt64(":id")
|
2020-04-22 03:30:06 -05:00
|
|
|
if resp := validateURL(cmd.Url); resp != nil {
|
|
|
|
return resp
|
|
|
|
}
|
2014-12-29 06:36:08 -06:00
|
|
|
|
2018-03-22 06:37:35 -05:00
|
|
|
err := fillWithSecureJSONData(&cmd)
|
2014-12-29 06:36:08 -06:00
|
|
|
if err != nil {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to update datasource", err)
|
2016-11-18 09:44:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
err = bus.Dispatch(&cmd)
|
|
|
|
if err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceUpdatingOldVersion {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to update datasource. Reload new version and try again", err)
|
2017-10-19 10:28:54 -05:00
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to update datasource", err)
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
2018-08-07 10:56:02 -05:00
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
query := models.GetDataSourceByIdQuery{
|
2018-08-07 10:56:02 -05:00
|
|
|
Id: cmd.Id,
|
|
|
|
OrgId: c.OrgId,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceNotFound {
|
2018-08-07 10:56:02 -05:00
|
|
|
return Error(404, "Data source not found", nil)
|
|
|
|
}
|
|
|
|
return Error(500, "Failed to query datasources", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dtos := convertModelToDtos(query.Result)
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, util.DynMap{
|
2017-10-19 10:28:54 -05:00
|
|
|
"message": "Datasource updated",
|
|
|
|
"id": cmd.Id,
|
|
|
|
"name": cmd.Name,
|
2018-08-07 10:56:02 -05:00
|
|
|
"datasource": dtos,
|
2017-10-19 10:28:54 -05:00
|
|
|
})
|
2016-11-18 09:44:59 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func fillWithSecureJSONData(cmd *models.UpdateDataSourceCommand) error {
|
2016-11-18 09:44:59 -06:00
|
|
|
if len(cmd.SecureJsonData) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-01 08:38:55 -05:00
|
|
|
ds, err := getRawDataSourceById(cmd.Id, cmd.OrgId)
|
2016-11-18 09:44:59 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-10-24 08:28:39 -05:00
|
|
|
if ds.ReadOnly {
|
2020-03-04 05:57:20 -06:00
|
|
|
return models.ErrDatasourceIsReadOnly
|
2017-10-24 08:28:39 -05:00
|
|
|
}
|
|
|
|
|
2018-03-22 06:37:35 -05:00
|
|
|
secureJSONData := ds.SecureJsonData.Decrypt()
|
|
|
|
for k, v := range secureJSONData {
|
2016-11-18 09:44:59 -06:00
|
|
|
|
|
|
|
if _, ok := cmd.SecureJsonData[k]; !ok {
|
|
|
|
cmd.SecureJsonData[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func getRawDataSourceById(id int64, orgID int64) (*models.DataSource, error) {
|
|
|
|
query := models.GetDataSourceByIdQuery{
|
2016-11-18 09:44:59 -06:00
|
|
|
Id: id,
|
2018-03-22 06:37:35 -05:00
|
|
|
OrgId: orgID,
|
2016-11-18 09:44:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return query.Result, nil
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
2015-02-28 01:25:13 -06:00
|
|
|
|
2016-03-07 14:25:26 -06:00
|
|
|
// Get /api/datasources/name/:name
|
2020-03-04 05:57:20 -06:00
|
|
|
func GetDataSourceByName(c *models.ReqContext) Response {
|
|
|
|
query := models.GetDataSourceByNameQuery{Name: c.Params(":name"), OrgId: c.OrgId}
|
2016-03-07 14:25:26 -06:00
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceNotFound {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(404, "Data source not found", nil)
|
2016-03-07 14:25:26 -06:00
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to query datasources", err)
|
2016-03-07 14:25:26 -06:00
|
|
|
}
|
|
|
|
|
2016-06-06 10:11:46 -05:00
|
|
|
dtos := convertModelToDtos(query.Result)
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, &dtos)
|
2016-03-08 04:51:03 -06:00
|
|
|
}
|
2016-03-07 14:25:26 -06:00
|
|
|
|
2016-03-10 03:31:10 -06:00
|
|
|
// Get /api/datasources/id/:name
|
2020-03-04 05:57:20 -06:00
|
|
|
func GetDataSourceIdByName(c *models.ReqContext) Response {
|
|
|
|
query := models.GetDataSourceByNameQuery{Name: c.Params(":name"), OrgId: c.OrgId}
|
2016-03-10 03:31:10 -06:00
|
|
|
|
|
|
|
if err := bus.Dispatch(&query); err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceNotFound {
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(404, "Data source not found", nil)
|
2016-03-10 03:31:10 -06:00
|
|
|
}
|
2018-03-22 16:13:46 -05:00
|
|
|
return Error(500, "Failed to query datasources", err)
|
2016-03-10 03:31:10 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ds := query.Result
|
|
|
|
dtos := dtos.AnyId{
|
|
|
|
Id: ds.Id,
|
|
|
|
}
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
return JSON(200, &dtos)
|
2016-03-10 03:31:10 -06:00
|
|
|
}
|
|
|
|
|
2020-01-31 04:15:50 -06:00
|
|
|
// /api/datasources/:id/resources/*
|
2020-03-04 05:57:20 -06:00
|
|
|
func (hs *HTTPServer) CallDatasourceResource(c *models.ReqContext) {
|
2020-01-31 04:15:50 -06:00
|
|
|
datasourceID := c.ParamsInt64(":id")
|
|
|
|
ds, err := hs.DatasourceCache.GetDatasource(datasourceID, c.SignedInUser, c.SkipCache)
|
|
|
|
if err != nil {
|
2020-03-04 05:57:20 -06:00
|
|
|
if err == models.ErrDataSourceAccessDenied {
|
2020-03-03 04:45:16 -06:00
|
|
|
c.JsonApiErr(403, "Access denied to datasource", err)
|
|
|
|
return
|
2020-01-31 04:15:50 -06:00
|
|
|
}
|
2020-03-03 04:45:16 -06:00
|
|
|
c.JsonApiErr(500, "Unable to load datasource meta data", err)
|
|
|
|
return
|
2020-01-31 04:15:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// find plugin
|
|
|
|
plugin, ok := plugins.DataSources[ds.Type]
|
|
|
|
if !ok {
|
2020-03-03 04:45:16 -06:00
|
|
|
c.JsonApiErr(500, "Unable to find datasource plugin", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:08:21 -05:00
|
|
|
dsInstanceSettings, err := wrapper.ModelToInstanceSettings(ds)
|
|
|
|
if err != nil {
|
|
|
|
c.JsonApiErr(500, "Unable to process datasource instance model", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pCtx := backend.PluginContext{
|
|
|
|
User: wrapper.BackendUserFromSignedInUser(c.SignedInUser),
|
|
|
|
OrgID: c.OrgId,
|
|
|
|
PluginID: plugin.Id,
|
|
|
|
DataSourceInstanceSettings: dsInstanceSettings,
|
|
|
|
}
|
|
|
|
hs.BackendPluginManager.CallResource(pCtx, c, c.Params("*"))
|
2020-01-31 04:15:50 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 05:57:20 -06:00
|
|
|
func convertModelToDtos(ds *models.DataSource) dtos.DataSource {
|
2016-11-18 09:44:59 -06:00
|
|
|
dto := dtos.DataSource{
|
2016-03-07 14:25:26 -06:00
|
|
|
Id: ds.Id,
|
|
|
|
OrgId: ds.OrgId,
|
|
|
|
Name: ds.Name,
|
|
|
|
Url: ds.Url,
|
|
|
|
Type: ds.Type,
|
|
|
|
Access: ds.Access,
|
|
|
|
Password: ds.Password,
|
|
|
|
Database: ds.Database,
|
|
|
|
User: ds.User,
|
|
|
|
BasicAuth: ds.BasicAuth,
|
|
|
|
BasicAuthUser: ds.BasicAuthUser,
|
|
|
|
BasicAuthPassword: ds.BasicAuthPassword,
|
|
|
|
WithCredentials: ds.WithCredentials,
|
|
|
|
IsDefault: ds.IsDefault,
|
|
|
|
JsonData: ds.JsonData,
|
2016-12-14 14:05:12 -06:00
|
|
|
SecureJsonFields: map[string]bool{},
|
2017-10-19 10:28:54 -05:00
|
|
|
Version: ds.Version,
|
2017-10-24 08:28:39 -05:00
|
|
|
ReadOnly: ds.ReadOnly,
|
2016-11-18 09:44:59 -06:00
|
|
|
}
|
|
|
|
|
2016-11-24 09:24:47 -06:00
|
|
|
for k, v := range ds.SecureJsonData {
|
|
|
|
if len(v) > 0 {
|
2016-12-14 14:05:12 -06:00
|
|
|
dto.SecureJsonFields[k] = true
|
2016-11-24 09:24:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-18 09:44:59 -06:00
|
|
|
return dto
|
2016-03-07 14:25:26 -06:00
|
|
|
}
|
2020-03-13 06:31:44 -05:00
|
|
|
|
|
|
|
// CheckDatasourceHealth sends a health check request to the plugin datasource
|
|
|
|
// /api/datasource/:id/health
|
|
|
|
func (hs *HTTPServer) CheckDatasourceHealth(c *models.ReqContext) {
|
|
|
|
datasourceID := c.ParamsInt64("id")
|
|
|
|
|
|
|
|
ds, err := hs.DatasourceCache.GetDatasource(datasourceID, c.SignedInUser, c.SkipCache)
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrDataSourceAccessDenied {
|
|
|
|
c.JsonApiErr(403, "Access denied to datasource", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JsonApiErr(500, "Unable to load datasource metadata", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin, ok := hs.PluginManager.GetDatasource(ds.Type)
|
|
|
|
if !ok {
|
|
|
|
c.JsonApiErr(500, "Unable to find datasource plugin", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:08:21 -05:00
|
|
|
dsInstanceSettings, err := wrapper.ModelToInstanceSettings(ds)
|
|
|
|
if err != nil {
|
|
|
|
c.JsonApiErr(500, "Unable to get datasource model", err)
|
|
|
|
}
|
|
|
|
pCtx := backend.PluginContext{
|
|
|
|
User: wrapper.BackendUserFromSignedInUser(c.SignedInUser),
|
|
|
|
OrgID: c.OrgId,
|
|
|
|
PluginID: plugin.Id,
|
|
|
|
DataSourceInstanceSettings: dsInstanceSettings,
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := hs.BackendPluginManager.CheckHealth(c.Req.Context(), pCtx)
|
2020-03-13 06:31:44 -05:00
|
|
|
if err != nil {
|
|
|
|
if err == backendplugin.ErrPluginNotRegistered {
|
|
|
|
c.JsonApiErr(404, "Plugin not found", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return status unknown instead?
|
|
|
|
if err == backendplugin.ErrDiagnosticsNotSupported {
|
|
|
|
c.JsonApiErr(404, "Health check not implemented", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return status unknown or error instead?
|
|
|
|
if err == backendplugin.ErrHealthCheckFailed {
|
|
|
|
c.JsonApiErr(500, "Plugin health check failed", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JsonApiErr(500, "Plugin healthcheck returned an unknown error", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
payload := map[string]interface{}{
|
2020-03-18 06:08:52 -05:00
|
|
|
"status": resp.Status.String(),
|
|
|
|
"message": resp.Message,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmarshal JSONDetails if it's not empty.
|
|
|
|
if len(resp.JSONDetails) > 0 {
|
2020-04-21 09:16:41 -05:00
|
|
|
var jsonDetails map[string]interface{}
|
2020-03-18 06:08:52 -05:00
|
|
|
err = json.Unmarshal(resp.JSONDetails, &jsonDetails)
|
|
|
|
if err != nil {
|
|
|
|
c.JsonApiErr(500, "Failed to unmarshal detailed response from backend plugin", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
payload["details"] = jsonDetails
|
2020-03-13 06:31:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Status != backendplugin.HealthStatusOk {
|
|
|
|
c.JSON(503, payload)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(200, payload)
|
|
|
|
}
|