mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
7ed368ecc6
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/star"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
func (hs *HTTPServer) GetStars(c *models.ReqContext) response.Response {
|
|
query := star.GetUserStarsQuery{
|
|
UserID: c.SignedInUser.UserId,
|
|
}
|
|
|
|
iuserstars, err := hs.starService.GetByUser(c.Req.Context(), &query)
|
|
if err != nil {
|
|
return response.Error(500, "Failed to get user stars", err)
|
|
}
|
|
|
|
uids := []string{}
|
|
for dashboardId := range iuserstars.UserStars {
|
|
query := &models.GetDashboardQuery{
|
|
Id: dashboardId,
|
|
OrgId: c.OrgId,
|
|
}
|
|
err := hs.dashboardService.GetDashboard(c.Req.Context(), query)
|
|
|
|
// Grafana admin users may have starred dashboards in multiple orgs. This will avoid returning errors when the dashboard is in another org
|
|
if err == nil {
|
|
uids = append(uids, query.Result.Uid)
|
|
}
|
|
}
|
|
return response.JSON(200, uids)
|
|
}
|
|
|
|
func (hs *HTTPServer) StarDashboard(c *models.ReqContext) response.Response {
|
|
id, err := strconv.ParseInt(web.Params(c.Req)[":id"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "id is invalid", err)
|
|
}
|
|
cmd := star.StarDashboardCommand{UserID: c.UserId, DashboardID: id}
|
|
|
|
if cmd.DashboardID <= 0 {
|
|
return response.Error(400, "Missing dashboard id", nil)
|
|
}
|
|
|
|
if err := hs.starService.Add(c.Req.Context(), &cmd); err != nil {
|
|
return response.Error(500, "Failed to star dashboard", err)
|
|
}
|
|
|
|
return response.Success("Dashboard starred!")
|
|
}
|
|
|
|
func (hs *HTTPServer) UnstarDashboard(c *models.ReqContext) response.Response {
|
|
id, err := strconv.ParseInt(web.Params(c.Req)[":id"], 10, 64)
|
|
if err != nil {
|
|
return response.Error(http.StatusBadRequest, "id is invalid", err)
|
|
}
|
|
cmd := star.UnstarDashboardCommand{UserID: c.UserId, DashboardID: id}
|
|
|
|
if cmd.DashboardID <= 0 {
|
|
return response.Error(400, "Missing dashboard id", nil)
|
|
}
|
|
|
|
if err := hs.starService.Delete(c.Req.Context(), &cmd); err != nil {
|
|
return response.Error(500, "Failed to unstar dashboard", err)
|
|
}
|
|
|
|
return response.Success("Dashboard unstarred")
|
|
}
|