| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- package api
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "net/http"
- "time"
- "github.com/grafana/grafana/pkg/api/dtos"
- "github.com/grafana/grafana/pkg/bus"
- "github.com/grafana/grafana/pkg/components/simplejson"
- "github.com/grafana/grafana/pkg/infra/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"
- )
- var client = &http.Client{
- Timeout: time.Second * 5,
- Transport: &http.Transport{Proxy: http.ProxyFromEnvironment},
- }
- func GetSharingOptions(c *m.ReqContext) {
- c.JSON(200, util.DynMap{
- "externalSnapshotURL": setting.ExternalSnapshotUrl,
- "externalSnapshotName": setting.ExternalSnapshotName,
- "externalEnabled": setting.ExternalEnabled,
- })
- }
- type CreateExternalSnapshotResponse struct {
- Key string `json:"key"`
- DeleteKey string `json:"deleteKey"`
- Url string `json:"url"`
- DeleteUrl string `json:"deleteUrl"`
- }
- func createExternalDashboardSnapshot(cmd m.CreateDashboardSnapshotCommand) (*CreateExternalSnapshotResponse, error) {
- var createSnapshotResponse CreateExternalSnapshotResponse
- message := map[string]interface{}{
- "name": cmd.Name,
- "expires": cmd.Expires,
- "dashboard": cmd.Dashboard,
- }
- messageBytes, err := simplejson.NewFromAny(message).Encode()
- if err != nil {
- return nil, err
- }
- response, err := client.Post(setting.ExternalSnapshotUrl+"/api/snapshots", "application/json", bytes.NewBuffer(messageBytes))
- if err != nil {
- return nil, err
- }
- defer response.Body.Close()
- if response.StatusCode != 200 {
- return nil, fmt.Errorf("Create external snapshot response status code %d", response.StatusCode)
- }
- if err := json.NewDecoder(response.Body).Decode(&createSnapshotResponse); err != nil {
- return nil, err
- }
- return &createSnapshotResponse, nil
- }
- // POST /api/snapshots
- func CreateDashboardSnapshot(c *m.ReqContext, cmd m.CreateDashboardSnapshotCommand) {
- if cmd.Name == "" {
- cmd.Name = "Unnamed snapshot"
- }
- var url string
- cmd.ExternalUrl = ""
- cmd.OrgId = c.OrgId
- cmd.UserId = c.UserId
- if cmd.External {
- if !setting.ExternalEnabled {
- c.JsonApiErr(403, "External dashboard creation is disabled", nil)
- return
- }
- response, err := createExternalDashboardSnapshot(cmd)
- if err != nil {
- c.JsonApiErr(500, "Failed to create external snaphost", err)
- return
- }
- url = response.Url
- cmd.Key = response.Key
- cmd.DeleteKey = response.DeleteKey
- cmd.ExternalUrl = response.Url
- cmd.ExternalDeleteUrl = response.DeleteUrl
- cmd.Dashboard = simplejson.New()
- metrics.M_Api_Dashboard_Snapshot_External.Inc()
- } else {
- if cmd.Key == "" {
- cmd.Key = util.GetRandomString(32)
- }
- if cmd.DeleteKey == "" {
- cmd.DeleteKey = util.GetRandomString(32)
- }
- url = setting.ToAbsUrl("dashboard/snapshot/" + cmd.Key)
- 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": url,
- "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)
- }
- func deleteExternalDashboardSnapshot(externalUrl string) error {
- response, err := client.Get(externalUrl)
- if err != nil {
- return err
- }
- defer response.Body.Close()
- if response.StatusCode == 200 {
- return nil
- }
- // Gracefully ignore "snapshot not found" errors as they could have already
- // been removed either via the cleanup script or by request.
- if response.StatusCode == 500 {
- var respJson map[string]interface{}
- if err := json.NewDecoder(response.Body).Decode(&respJson); err != nil {
- return err
- }
- if respJson["message"] == "Failed to get dashboard snapshot" {
- return nil
- }
- }
- return fmt.Errorf("Unexpected response when deleting external snapshot. Status code: %d", response.StatusCode)
- }
- // 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)
- }
- if query.Result.External {
- err := deleteExternalDashboardSnapshot(query.Result.ExternalDeleteUrl)
- if err != nil {
- return Error(500, "Failed to delete external dashboard", 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)
- }
- if query.Result.External {
- err := deleteExternalDashboardSnapshot(query.Result.ExternalDeleteUrl)
- if err != nil {
- return Error(500, "Failed to delete external dashboard", 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."})
- }
- // 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)
- }
|