mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
729dafaff9
Unfurl OrgID in pkg/api to allow using identity.Requester interface
36 lines
1.0 KiB
Go
36 lines
1.0 KiB
Go
package api
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
"github.com/grafana/grafana/pkg/services/plugindashboards"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
// GetPluginDashboards get plugin dashboards.
|
|
//
|
|
// /api/plugins/:pluginId/dashboards
|
|
func (hs *HTTPServer) GetPluginDashboards(c *contextmodel.ReqContext) response.Response {
|
|
pluginID := web.Params(c.Req)[":pluginId"]
|
|
|
|
listReq := &plugindashboards.ListPluginDashboardsRequest{
|
|
OrgID: c.SignedInUser.GetOrgID(),
|
|
PluginID: pluginID,
|
|
}
|
|
list, err := hs.pluginDashboardService.ListPluginDashboards(c.Req.Context(), listReq)
|
|
if err != nil {
|
|
var notFound plugins.NotFoundError
|
|
if errors.As(err, ¬Found) {
|
|
return response.Error(http.StatusNotFound, notFound.Error(), nil)
|
|
}
|
|
|
|
return response.Error(http.StatusInternalServerError, "Failed to get plugin dashboards", err)
|
|
}
|
|
|
|
return response.JSON(http.StatusOK, list.Items)
|
|
}
|