Add show certification action to cluster panel
This patch adds show certification action as item action to cluster table view and details view. Change-Id: Iafb316152a1a16e6a056ea490adfc682fa68f5c9 Partial-Implements: blueprint cluster-certificateschanges/22/366522/6
parent
da0c4c8406
commit
f07baab8e0
@ -0,0 +1,60 @@
|
||||
/**
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||
* not use this file except in compliance with the License. You may obtain
|
||||
* a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc overview
|
||||
* @name horizon.dashboard.container-infra.clusters.show-certificate.service
|
||||
* @description Service for the container-infra cluster show certificate modal
|
||||
*/
|
||||
angular
|
||||
.module('horizon.dashboard.container-infra.clusters')
|
||||
.factory('horizon.dashboard.container-infra.clusters.show-certificate.service', showCertificateService);
|
||||
|
||||
showCertificateService.$inject = [
|
||||
'horizon.framework.util.q.extensions',
|
||||
'horizon.app.core.openstack-service-api.magnum'
|
||||
];
|
||||
|
||||
function showCertificateService(
|
||||
$qExtensions, magnum
|
||||
) {
|
||||
|
||||
var service = {
|
||||
initScope: initScope,
|
||||
perform: perform,
|
||||
allowed: allowed
|
||||
};
|
||||
|
||||
return service;
|
||||
|
||||
//////////////
|
||||
|
||||
function initScope($scope) {
|
||||
}
|
||||
|
||||
function perform(selected) {
|
||||
// get certificate
|
||||
return magnum.showCertificate(selected.id).success(function(response) {
|
||||
magnum.downloadTextAsFile(response.pem, selected.name + "_ca.pem");
|
||||
});
|
||||
}
|
||||
|
||||
function allowed() {
|
||||
return $qExtensions.booleanAsPromise(true);
|
||||
}
|
||||
}
|
||||
})();
|
Loading…
Reference in New Issue