diff options
Diffstat (limited to 'cvp/3rd_party/static/testapi-ui/components/profile')
4 files changed, 0 insertions, 297 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html b/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html deleted file mode 100644 index 0f55c27f..00000000 --- a/cvp/3rd_party/static/testapi-ui/components/profile/importPubKeyModal.html +++ /dev/null @@ -1,27 +0,0 @@ -<div class="modal-header"> - <h4>Import Public Key</h4> - <p>Instructions for adding a public key and signature can be found - <a href="https://github.com/openstack/refstack/blob/master/doc/source/uploading_private_results.rst#generate-ssh-keys-locally" - target="_blank" - title="How to generate and upload SSH key and signature with testapi-client">here. - </a> - </p> -</div> -<div class="modal-body container-fluid"> - <div class="row"> - <div class="col-md-2">Public Key</div> - <div class="col-md-9 pull-right"> - <textarea type="text" rows="10" cols="42" ng-model="modal.raw_key" required></textarea> - </div> - </div> - <div class="row"> - <div class="col-md-2">Signature</div> - <div class="col-md-9 pull-right"> - <textarea type="text" rows="10" cols="42" ng-model="modal.self_signature" required></textarea> - </div> - </div> - <div class="modal-footer"> - <button class="btn btn-warning btn-sm" ng-click="modal.cancel()">Cancel</button> - <button type="button" class="btn btn-default btn-sm" ng-click="modal.importPubKey()">Import Public Key</button> - </div> -</div> diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/profile.html b/cvp/3rd_party/static/testapi-ui/components/profile/profile.html deleted file mode 100644 index 98b28df5..00000000 --- a/cvp/3rd_party/static/testapi-ui/components/profile/profile.html +++ /dev/null @@ -1,40 +0,0 @@ -<div class="container-fluid common-main-container"> -<h3>User profile</h3> -<div cg-busy="{promise:ctrl.authRequest,message:'Loading'}"></div> -<div> - <table class="table table-striped table-hover"> - <tbody> - <tr> <td>User name</td> <td>{{auth.currentUser.fullname}}</td> </tr> - <tr> <td>User OpenId</td> <td>{{auth.currentUser.openid}}</td> </tr> - <tr> <td>Email</td> <td>{{auth.currentUser.email}}</td> </tr> - <tr> <td>Role</td> <td> {{auth.currentUser.role}}</td> </tr> - </tbody> - </table> -</div> -<div ng-show="ctrl.pubkeys"> - <div class="container-fluid"> - <div class="row"> - <div class="col-md-4"> - <h4>User Public Keys</h4> - </div> - <div class="col-md-2 pull-right"> - <button type="button" class="btn btn-default btn-sm" ng-click="ctrl.openImportPubKeyModal()"> - <span class="glyphicon glyphicon-plus"></span> Import Public Key - </button> - </div> - </div> - </div> - - <div> - <table class="table table-striped table-hover"> - <tbody> - <tr ng-repeat="pubKey in ctrl.pubkeys" ng-click="ctrl.openShowPubKeyModal(pubKey)"> - <td>{{pubKey.format}}</td> - <td>{{pubKey.shortKey}}</td> - <td>{{pubKey.comment}}</td> - </tr> - </tbody> - </table> - </div> -</div> -</div> diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js b/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js deleted file mode 100644 index 0660e19f..00000000 --- a/cvp/3rd_party/static/testapi-ui/components/profile/profileController.js +++ /dev/null @@ -1,219 +0,0 @@ -/* - * - * 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'; - - angular - .module('testapiApp') - .factory('PubKeys', PubKeys); - - PubKeys.$inject = ['$resource', 'testapiApiUrl']; - - /** - * This is a provider for the user's uploaded public keys. - */ - function PubKeys($resource, testapiApiUrl) { - return $resource(testapiApiUrl + '/profile/pubkeys/:id', null, null); - } - - angular - .module('testapiApp') - .controller('ProfileController', ProfileController); - - ProfileController.$inject = [ - '$scope', '$http', 'testapiApiUrl', 'PubKeys', - '$uibModal', 'raiseAlert', '$state' - ]; - - /** - * TestAPI Profile Controller - * This controller handles user's profile page, where a user can view - * account-specific information. - */ - function ProfileController($scope, $http, testapiApiUrl, - PubKeys, $uibModal, raiseAlert, $state) { - - var ctrl = this; - - ctrl.updatePubKeys = updatePubKeys; - ctrl.openImportPubKeyModal = openImportPubKeyModal; - ctrl.openShowPubKeyModal = openShowPubKeyModal; - - // Must be authenticated to view this page. - if (!$scope.auth.isAuthenticated) { - $state.go('home'); - } - - /** - * This function will fetch all the user's public keys from the - * server and store them in an array. - */ - function updatePubKeys() { - var keys = PubKeys.query(function() { - ctrl.pubkeys = []; - angular.forEach(keys, function (key) { - ctrl.pubkeys.push({ - 'resource': key, - 'format': key.format, - 'shortKey': [ - key.pubkey.slice(0, 10), - '.', - key.pubkey.slice(-10) - ].join('.'), - 'pubkey': key.pubkey, - 'comment': key.comment - }); - }); - }); - } - - /** - * This function will open the modal that will give the user a form - * for importing a public key. - */ - function openImportPubKeyModal() { - $uibModal.open({ - templateUrl: '/components/profile/importPubKeyModal.html', - backdrop: true, - windowClass: 'modal', - controller: 'ImportPubKeyModalController as modal' - }).result.finally(function() { - ctrl.updatePubKeys(); - }); - } - - /** - * This function will open the modal that will give the full - * information regarding a specific public key. - * @param {Object} pubKey resource - */ - function openShowPubKeyModal(pubKey) { - $uibModal.open({ - templateUrl: '/components/profile/showPubKeyModal.html', - backdrop: true, - windowClass: 'modal', - controller: 'ShowPubKeyModalController as modal', - resolve: { - pubKey: function() { - return pubKey; - } - } - }).result.finally(function() { - ctrl.updatePubKeys(); - }); - } - - ctrl.authRequest = $scope.auth.doSignCheck().then(ctrl.updatePubKeys); - } - - angular - .module('testapiApp') - .controller('ImportPubKeyModalController', ImportPubKeyModalController); - - ImportPubKeyModalController.$inject = [ - '$uibModalInstance', 'PubKeys', 'raiseAlert' - ]; - - /** - * Import Pub Key Modal Controller - * This controller is for the modal that appears if a user wants to import - * a public key. - */ - function ImportPubKeyModalController($uibModalInstance, - PubKeys, raiseAlert) { - - var ctrl = this; - - ctrl.importPubKey = importPubKey; - ctrl.cancel = cancel; - - /** - * This function will save a new public key resource to the API server. - */ - function importPubKey() { - var newPubKey = new PubKeys( - {raw_key: ctrl.raw_key, self_signature: ctrl.self_signature} - ); - newPubKey.$save( - function(newPubKey_) { - raiseAlert('success', '', 'Public key saved successfully'); - $uibModalInstance.close(newPubKey_); - }, - function(httpResp) { - raiseAlert('danger', - httpResp.statusText, httpResp.data.title); - ctrl.cancel(); - } - ); - } - - /** - * This function will dismiss the modal. - */ - function cancel() { - $uibModalInstance.dismiss('cancel'); - } - } - - angular - .module('testapiApp') - .controller('ShowPubKeyModalController', ShowPubKeyModalController); - - ShowPubKeyModalController.$inject = [ - '$uibModalInstance', 'raiseAlert', 'pubKey' - ]; - - /** - * Show Pub Key Modal Controller - * This controller is for the modal that appears if a user wants to see the - * full details of one of their public keys. - */ - function ShowPubKeyModalController($uibModalInstance, raiseAlert, pubKey) { - var ctrl = this; - - ctrl.deletePubKey = deletePubKey; - ctrl.cancel = cancel; - - ctrl.pubKey = pubKey.resource; - ctrl.rawKey = [pubKey.format, pubKey.pubkey, pubKey.comment].join('\n'); - - /** - * This function will delete a public key resource. - */ - function deletePubKey() { - ctrl.pubKey.$remove( - {id: ctrl.pubKey.id}, - function() { - raiseAlert('success', - '', 'Public key deleted successfully'); - $uibModalInstance.close(ctrl.pubKey.id); - }, - function(httpResp) { - raiseAlert('danger', - httpResp.statusText, httpResp.data.title); - ctrl.cancel(); - } - ); - } - - /** - * This method will dismiss the modal. - */ - function cancel() { - $uibModalInstance.dismiss('cancel'); - } - } -})(); diff --git a/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html b/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html deleted file mode 100644 index 5f63a5ef..00000000 --- a/cvp/3rd_party/static/testapi-ui/components/profile/showPubKeyModal.html +++ /dev/null @@ -1,11 +0,0 @@ -<div class="modal-header"> - <h4>Public Key</h4> -</div> -<div class="modal-body container-fluid"> - <textarea type="text" rows="10" cols="67" readonly="readonly">{{modal.rawKey}}</textarea> - <div class="modal-footer"> - <button class="btn btn-warning" ng-click="modal.cancel()">Cancel</button> - <button type="button" class="btn btn-danger btn-sm" ng-click="modal.deletePubKey() " - confirm="Are you sure you want to delete this public key? You will lose management access to any test results signed with this key.">Delete</button> - </div> -</div> |