| 
									
										
										
										
											2022-03-11 01:38:04 +08:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/api/response" | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/plugins" | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | 	contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model" | 
					
						
							| 
									
										
										
										
											2022-03-11 01:38:04 +08:00
										 |  |  | 	"github.com/grafana/grafana/pkg/services/plugindashboards" | 
					
						
							|  |  |  | 	"github.com/grafana/grafana/pkg/web" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // GetPluginDashboards get plugin dashboards.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // /api/plugins/:pluginId/dashboards
 | 
					
						
							| 
									
										
										
										
											2023-01-27 15:50:36 +08:00
										 |  |  | func (hs *HTTPServer) GetPluginDashboards(c *contextmodel.ReqContext) response.Response { | 
					
						
							| 
									
										
										
										
											2022-03-11 01:38:04 +08:00
										 |  |  | 	pluginID := web.Params(c.Req)[":pluginId"] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	listReq := &plugindashboards.ListPluginDashboardsRequest{ | 
					
						
							| 
									
										
										
										
											2023-10-06 17:34:36 +08:00
										 |  |  | 		OrgID:    c.SignedInUser.GetOrgID(), | 
					
						
							| 
									
										
										
										
											2022-03-11 01:38:04 +08:00
										 |  |  | 		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) | 
					
						
							|  |  |  | } |