mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
417db13efb
* fix issue deleting dashboard snapshots by deleteKey, add dedicated endopoint for authenticated requests, update frontend, tests & docs.
189 lines
4.9 KiB
Go
189 lines
4.9 KiB
Go
package api
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/metrics"
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/guardian"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
func GetSharingOptions(c *m.ReqContext) {
|
|
c.JSON(200, util.DynMap{
|
|
"externalSnapshotURL": setting.ExternalSnapshotUrl,
|
|
"externalSnapshotName": setting.ExternalSnapshotName,
|
|
"externalEnabled": setting.ExternalEnabled,
|
|
})
|
|
}
|
|
|
|
func CreateDashboardSnapshot(c *m.ReqContext, cmd m.CreateDashboardSnapshotCommand) {
|
|
if cmd.Name == "" {
|
|
cmd.Name = "Unnamed snapshot"
|
|
}
|
|
|
|
if cmd.External {
|
|
// external snapshot ref requires key and delete key
|
|
if cmd.Key == "" || cmd.DeleteKey == "" {
|
|
c.JsonApiErr(400, "Missing key and delete key for external snapshot", nil)
|
|
return
|
|
}
|
|
|
|
cmd.OrgId = -1
|
|
cmd.UserId = -1
|
|
metrics.M_Api_Dashboard_Snapshot_External.Inc()
|
|
} else {
|
|
cmd.Key = util.GetRandomString(32)
|
|
cmd.DeleteKey = util.GetRandomString(32)
|
|
cmd.OrgId = c.OrgId
|
|
cmd.UserId = c.UserId
|
|
metrics.M_Api_Dashboard_Snapshot_Create.Inc()
|
|
}
|
|
|
|
if err := bus.Dispatch(&cmd); err != nil {
|
|
c.JsonApiErr(500, "Failed to create snaphost", err)
|
|
return
|
|
}
|
|
|
|
c.JSON(200, util.DynMap{
|
|
"key": cmd.Key,
|
|
"deleteKey": cmd.DeleteKey,
|
|
"url": setting.ToAbsUrl("dashboard/snapshot/" + cmd.Key),
|
|
"deleteUrl": setting.ToAbsUrl("api/snapshots-delete/" + cmd.DeleteKey),
|
|
})
|
|
}
|
|
|
|
// GET /api/snapshots/:key
|
|
func GetDashboardSnapshot(c *m.ReqContext) {
|
|
key := c.Params(":key")
|
|
query := &m.GetDashboardSnapshotQuery{Key: key}
|
|
|
|
err := bus.Dispatch(query)
|
|
if err != nil {
|
|
c.JsonApiErr(500, "Failed to get dashboard snapshot", err)
|
|
return
|
|
}
|
|
|
|
snapshot := query.Result
|
|
|
|
// expired snapshots should also be removed from db
|
|
if snapshot.Expires.Before(time.Now()) {
|
|
c.JsonApiErr(404, "Dashboard snapshot not found", err)
|
|
return
|
|
}
|
|
|
|
dto := dtos.DashboardFullWithMeta{
|
|
Dashboard: snapshot.Dashboard,
|
|
Meta: dtos.DashboardMeta{
|
|
Type: m.DashTypeSnapshot,
|
|
IsSnapshot: true,
|
|
Created: snapshot.Created,
|
|
Expires: snapshot.Expires,
|
|
},
|
|
}
|
|
|
|
metrics.M_Api_Dashboard_Snapshot_Get.Inc()
|
|
|
|
c.Resp.Header().Set("Cache-Control", "public, max-age=3600")
|
|
c.JSON(200, dto)
|
|
}
|
|
|
|
// GET /api/snapshots-delete/:deleteKey
|
|
func DeleteDashboardSnapshotByDeleteKey(c *m.ReqContext) Response {
|
|
key := c.Params(":deleteKey")
|
|
|
|
query := &m.GetDashboardSnapshotQuery{DeleteKey: key}
|
|
|
|
err := bus.Dispatch(query)
|
|
if err != nil {
|
|
return Error(500, "Failed to get dashboard snapshot", err)
|
|
}
|
|
|
|
cmd := &m.DeleteDashboardSnapshotCommand{DeleteKey: query.Result.DeleteKey}
|
|
|
|
if err := bus.Dispatch(cmd); err != nil {
|
|
return Error(500, "Failed to delete dashboard snapshot", err)
|
|
}
|
|
|
|
return JSON(200, util.DynMap{"message": "Snapshot deleted. It might take an hour before it's cleared from any CDN caches."})
|
|
}
|
|
|
|
// DELETE /api/snapshots/:key
|
|
func DeleteDashboardSnapshot(c *m.ReqContext) Response {
|
|
key := c.Params(":key")
|
|
|
|
query := &m.GetDashboardSnapshotQuery{Key: key}
|
|
|
|
err := bus.Dispatch(query)
|
|
if err != nil {
|
|
return Error(500, "Failed to get dashboard snapshot", err)
|
|
}
|
|
|
|
if query.Result == nil {
|
|
return Error(404, "Failed to get dashboard snapshot", nil)
|
|
}
|
|
dashboard := query.Result.Dashboard
|
|
dashboardID := dashboard.Get("id").MustInt64()
|
|
|
|
guardian := guardian.New(dashboardID, c.OrgId, c.SignedInUser)
|
|
canEdit, err := guardian.CanEdit()
|
|
if err != nil {
|
|
return Error(500, "Error while checking permissions for snapshot", err)
|
|
}
|
|
|
|
if !canEdit && query.Result.UserId != c.SignedInUser.UserId {
|
|
return Error(403, "Access denied to this snapshot", nil)
|
|
}
|
|
|
|
cmd := &m.DeleteDashboardSnapshotCommand{DeleteKey: query.Result.DeleteKey}
|
|
|
|
if err := bus.Dispatch(cmd); err != nil {
|
|
return Error(500, "Failed to delete dashboard snapshot", err)
|
|
}
|
|
|
|
return JSON(200, util.DynMap{"message": "Snapshot deleted. It might take an hour before it's cleared from any CDN caches."})
|
|
}
|
|
|
|
// GET /api/dashboard/snapshots
|
|
func SearchDashboardSnapshots(c *m.ReqContext) Response {
|
|
query := c.Query("query")
|
|
limit := c.QueryInt("limit")
|
|
|
|
if limit == 0 {
|
|
limit = 1000
|
|
}
|
|
|
|
searchQuery := m.GetDashboardSnapshotsQuery{
|
|
Name: query,
|
|
Limit: limit,
|
|
OrgId: c.OrgId,
|
|
SignedInUser: c.SignedInUser,
|
|
}
|
|
|
|
err := bus.Dispatch(&searchQuery)
|
|
if err != nil {
|
|
return Error(500, "Search failed", err)
|
|
}
|
|
|
|
dtos := make([]*m.DashboardSnapshotDTO, len(searchQuery.Result))
|
|
for i, snapshot := range searchQuery.Result {
|
|
dtos[i] = &m.DashboardSnapshotDTO{
|
|
Id: snapshot.Id,
|
|
Name: snapshot.Name,
|
|
Key: snapshot.Key,
|
|
OrgId: snapshot.OrgId,
|
|
UserId: snapshot.UserId,
|
|
External: snapshot.External,
|
|
ExternalUrl: snapshot.ExternalUrl,
|
|
Expires: snapshot.Expires,
|
|
Created: snapshot.Created,
|
|
Updated: snapshot.Updated,
|
|
}
|
|
}
|
|
|
|
return JSON(200, dtos)
|
|
}
|