| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- define([
- 'angular',
- 'lodash',
- ],
- function (angular, _) {
- 'use strict';
- var module = angular.module('grafana.controllers');
- module.controller('ShareSnapshotCtrl', function($scope, $rootScope, $location, backendSrv, $timeout, timeSrv) {
- $scope.snapshot = {
- name: $scope.dashboard.title,
- expires: 0,
- };
- $scope.step = 1;
- $scope.expireOptions = [
- {text: '1 Hour', value: 60*60},
- {text: '1 Day', value: 60*60*24},
- {text: '7 Days', value: 60*60*7},
- {text: 'Never', value: 0},
- ];
- $scope.accessOptions = [
- {text: 'Anyone with the link', value: 1},
- {text: 'Organization users', value: 2},
- {text: 'Public on the web', value: 3},
- ];
- $scope.externalUrl = 'http://snapshots-origin.raintank.io';
- $scope.apiUrl = '/api/snapshots';
- $scope.createSnapshot = function(external) {
- $scope.dashboard.snapshot = {
- timestamp: new Date()
- };
- $scope.loading = true;
- $scope.snapshot.external = external;
- $rootScope.$broadcast('refresh');
- $timeout(function() {
- $scope.saveSnapshot(external);
- }, 3000);
- };
- $scope.saveSnapshot = function(external) {
- var dash = angular.copy($scope.dashboard);
- // change title
- dash.title = $scope.snapshot.name;
- // make relative times absolute
- dash.time = timeSrv.timeRange();
- // remove panel queries & links
- dash.forEachPanel(function(panel) {
- panel.targets = [];
- panel.links = [];
- });
- // remove annotations
- dash.annotations.list = [];
- // remove template queries
- _.each(dash.templating.list, function(variable) {
- variable.query = "";
- variable.refresh = false;
- });
- // cleanup snapshotData
- delete $scope.dashboard.snapshot;
- $scope.dashboard.forEachPanel(function(panel) {
- delete panel.snapshotData;
- });
- var cmdData = {
- dashboard: dash,
- expires: $scope.snapshot.expires,
- };
- var postUrl = external ? $scope.externalUrl + $scope.apiUrl : $scope.apiUrl;
- backendSrv.post(postUrl, cmdData).then(function(results) {
- $scope.loading = false;
- if (external) {
- $scope.deleteUrl = results.deleteUrl;
- $scope.snapshotUrl = results.url;
- $scope.saveExternalSnapshotRef(cmdData, results);
- } else {
- var baseUrl = $location.absUrl().replace($location.url(), "");
- $scope.snapshotUrl = baseUrl + '/dashboard/snapshot/' + results.key;
- $scope.deleteUrl = baseUrl + '/api/snapshots-delete/' + results.deleteKey;
- }
- $scope.step = 2;
- }, function() {
- $scope.loading = false;
- });
- };
- $scope.saveExternalSnapshotRef = function(cmdData, results) {
- // save external in local instance as well
- cmdData.external = true;
- cmdData.key = results.key;
- cmdData.deleteKey = results.deleteKey;
- backendSrv.post('/api/snapshots/', cmdData);
- };
- });
- });
|