mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/torkelo/grafana-pro/pkg/bus"
|
|
"github.com/torkelo/grafana-pro/pkg/middleware"
|
|
m "github.com/torkelo/grafana-pro/pkg/models"
|
|
"github.com/torkelo/grafana-pro/pkg/util"
|
|
)
|
|
|
|
func GetDashboard(c *middleware.Context) {
|
|
slug := c.Params(":slug")
|
|
|
|
query := m.GetDashboardQuery{Slug: slug, AccountId: c.UsingAccountId}
|
|
err := bus.Dispatch(&query)
|
|
if err != nil {
|
|
c.JsonApiErr(404, "Dashboard not found", nil)
|
|
return
|
|
}
|
|
|
|
query.Result.Data["id"] = query.Result.Id
|
|
|
|
c.JSON(200, query.Result.Data)
|
|
}
|
|
|
|
func DeleteDashboard(c *middleware.Context) {
|
|
slug := c.Params(":slug")
|
|
|
|
query := m.GetDashboardQuery{Slug: slug, AccountId: c.UsingAccountId}
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
c.JsonApiErr(404, "Dashboard not found", nil)
|
|
return
|
|
}
|
|
|
|
cmd := m.DeleteDashboardCommand{Slug: slug, AccountId: c.UsingAccountId}
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
|
c.JsonApiErr(500, "Failed to delete dashboard", err)
|
|
return
|
|
}
|
|
|
|
var resp = map[string]interface{}{"title": query.Result.Title}
|
|
|
|
c.JSON(200, resp)
|
|
}
|
|
|
|
func PostDashboard(c *middleware.Context, cmd m.SaveDashboardCommand) {
|
|
cmd.AccountId = c.UsingAccountId
|
|
|
|
err := bus.Dispatch(&cmd)
|
|
if err != nil {
|
|
if err == m.ErrDashboardWithSameNameExists {
|
|
c.JsonApiErr(400, "Dashboard with the same title already exists", nil)
|
|
return
|
|
}
|
|
c.JsonApiErr(500, "Failed to save dashboard", err)
|
|
return
|
|
}
|
|
|
|
c.JSON(200, util.DynMap{"status": "success", "slug": cmd.Result.Slug})
|
|
}
|