2014-12-29 06:36:08 -06:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2017-08-22 10:14:15 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/pluginproxy"
|
2019-02-23 16:35:26 -06:00
|
|
|
"github.com/grafana/grafana/pkg/infra/metrics"
|
2015-02-05 03:37:13 -06:00
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
2017-08-23 03:52:31 -05:00
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
2017-01-16 05:16:41 -06:00
|
|
|
)
|
|
|
|
|
2018-03-22 16:13:46 -05:00
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequest(c *m.ReqContext) {
|
2019-07-16 09:58:46 -05:00
|
|
|
c.TimeRequest(metrics.MDataSourceProxyReqTimer)
|
2016-06-03 02:17:36 -05:00
|
|
|
|
2018-10-11 04:29:14 -05:00
|
|
|
dsId := c.ParamsInt64(":id")
|
2018-10-26 03:40:33 -05:00
|
|
|
ds, err := hs.DatasourceCache.GetDatasource(dsId, c.SignedInUser, c.SkipCache)
|
2015-10-08 10:30:13 -05:00
|
|
|
if err != nil {
|
2018-10-26 03:40:33 -05:00
|
|
|
if err == m.ErrDataSourceAccessDenied {
|
2018-10-26 11:34:10 -05:00
|
|
|
c.JsonApiErr(403, "Access denied to datasource", err)
|
2018-10-26 03:40:33 -05:00
|
|
|
return
|
|
|
|
}
|
2014-12-29 06:36:08 -06:00
|
|
|
c.JsonApiErr(500, "Unable to load datasource meta data", err)
|
2015-03-11 11:34:11 -05:00
|
|
|
return
|
2014-12-29 06:36:08 -06:00
|
|
|
}
|
|
|
|
|
2017-08-23 03:52:31 -05:00
|
|
|
// find plugin
|
|
|
|
plugin, ok := plugins.DataSources[ds.Type]
|
|
|
|
if !ok {
|
|
|
|
c.JsonApiErr(500, "Unable to find datasource plugin", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-19 12:02:04 -05:00
|
|
|
// macaron does not include trailing slashes when resolving a wildcard path
|
2018-10-03 05:55:01 -05:00
|
|
|
proxyPath := ensureProxyPathTrailingSlash(c.Req.URL.Path, c.Params("*"))
|
|
|
|
|
2019-03-14 07:04:47 -05:00
|
|
|
proxy := pluginproxy.NewDataSourceProxy(ds, plugin, c, proxyPath, hs.Cfg)
|
2018-10-03 05:55:01 -05:00
|
|
|
proxy.HandleRequest()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensureProxyPathTrailingSlash Check for a trailing slash in original path and makes
|
|
|
|
// sure that a trailing slash is added to proxy path, if not already exists.
|
|
|
|
func ensureProxyPathTrailingSlash(originalPath, proxyPath string) string {
|
2018-09-18 13:16:09 -05:00
|
|
|
if len(proxyPath) > 1 {
|
2018-10-03 05:55:01 -05:00
|
|
|
if originalPath[len(originalPath)-1] == '/' && proxyPath[len(proxyPath)-1] != '/' {
|
|
|
|
return proxyPath + "/"
|
2018-09-18 13:16:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 05:55:01 -05:00
|
|
|
return proxyPath
|
2016-08-17 00:33:59 -05:00
|
|
|
}
|