|
| 1 | +"use strict"; |
| 2 | +(function() { |
| 3 | + angular.module("openshiftConsole").component('addSecretToApplication', { |
| 4 | + controller: [ |
| 5 | + '$filter', |
| 6 | + '$scope', |
| 7 | + 'APIService', |
| 8 | + 'DataService', |
| 9 | + 'Navigate', |
| 10 | + 'NotificationsService', |
| 11 | + 'StorageService', |
| 12 | + AddSecretToApplication |
| 13 | + ], |
| 14 | + controllerAs: 'ctrl', |
| 15 | + bindings: { |
| 16 | + project: '<', |
| 17 | + secret: '<', |
| 18 | + onComplete: '<', |
| 19 | + onCancel: '<' |
| 20 | + }, |
| 21 | + templateUrl: 'views/directives/add-secret-to-application.html' |
| 22 | + }); |
| 23 | + |
| 24 | + function AddSecretToApplication($filter, $scope, APIService, DataService, Navigate, NotificationsService, StorageService) { |
| 25 | + var ctrl = this; |
| 26 | + var deploymentConfigs; |
| 27 | + var deployments; |
| 28 | + var replicationControllers; |
| 29 | + var replicaSets; |
| 30 | + var statefulSets; |
| 31 | + |
| 32 | + var sortApplications = function() { |
| 33 | + // Don't waste time sorting on each data load, just sort when we have them all |
| 34 | + if (deploymentConfigs && deployments && replicationControllers && replicaSets && statefulSets) { |
| 35 | + var apiObjects = deploymentConfigs.concat(deployments) |
| 36 | + .concat(replicationControllers) |
| 37 | + .concat(replicaSets) |
| 38 | + .concat(statefulSets); |
| 39 | + ctrl.applications = _.sortBy(apiObjects, ['metadata.name', 'kind']); |
| 40 | + ctrl.updating = false; |
| 41 | + } |
| 42 | + }; |
| 43 | + |
| 44 | + var getApplications = function() { |
| 45 | + var hasDeploymentFilter = $filter('hasDeployment'); |
| 46 | + var hasDeploymentConfigFilter = $filter('hasDeploymentConfig'); |
| 47 | + |
| 48 | + ctrl.updating = true; |
| 49 | + var context = { |
| 50 | + namespace: ctrl.project.metadata.name |
| 51 | + }; |
| 52 | + // Load all the "application" types |
| 53 | + DataService.list('deploymentconfigs', context).then(function(deploymentConfigData) { |
| 54 | + deploymentConfigs = _.toArray(deploymentConfigData.by('metadata.name')); |
| 55 | + sortApplications(); |
| 56 | + }); |
| 57 | + DataService.list('replicationcontrollers', context).then(function(replicationControllerData) { |
| 58 | + replicationControllers = _.reject(replicationControllerData.by('metadata.name'), hasDeploymentConfigFilter); |
| 59 | + sortApplications(); |
| 60 | + }); |
| 61 | + DataService.list({ |
| 62 | + group: 'apps', |
| 63 | + resource: 'deployments' |
| 64 | + }, context).then(function(deploymentData) { |
| 65 | + deployments = _.toArray(deploymentData.by('metadata.name')); |
| 66 | + sortApplications(); |
| 67 | + }); |
| 68 | + DataService.list({ |
| 69 | + group: 'extensions', |
| 70 | + resource: 'replicasets' |
| 71 | + }, context).then(function(replicaSetData) { |
| 72 | + replicaSets = _.reject(replicaSetData.by('metadata.name'), hasDeploymentFilter); |
| 73 | + sortApplications(); |
| 74 | + }); |
| 75 | + DataService.list({ |
| 76 | + group: 'apps', |
| 77 | + resource: 'statefulsets' |
| 78 | + }, context).then(function(statefulSetData) { |
| 79 | + statefulSets = _.toArray(statefulSetData.by('metadata.name')); |
| 80 | + sortApplications(); |
| 81 | + }); |
| 82 | + }; |
| 83 | + |
| 84 | + ctrl.$onInit = function() { |
| 85 | + ctrl.addType = 'env'; |
| 86 | + ctrl.disableInputs = false; |
| 87 | + getApplications(); |
| 88 | + }; |
| 89 | + |
| 90 | + ctrl.$postLink = function() { |
| 91 | + $scope.$watch(function() { |
| 92 | + return ctrl.application; |
| 93 | + }, function() { |
| 94 | + // Look at the existing mount paths so that we can warn if the new value is not unique. |
| 95 | + var podTemplate = _.get(ctrl.application, 'spec.template'); |
| 96 | + ctrl.existingMountPaths = StorageService.getMountPaths(podTemplate); |
| 97 | + }); |
| 98 | + }; |
| 99 | + |
| 100 | + ctrl.addToApplication = function() { |
| 101 | + var applicationToUpdate = angular.copy(ctrl.application); |
| 102 | + |
| 103 | + var podTemplate = _.get(applicationToUpdate, 'spec.template'); |
| 104 | + |
| 105 | + ctrl.disableInputs = true; |
| 106 | + |
| 107 | + if (ctrl.addType === 'env') { |
| 108 | + var newEnvFrom = { |
| 109 | + secretRef: { |
| 110 | + name: ctrl.secret.metadata.name |
| 111 | + } |
| 112 | + }; |
| 113 | + |
| 114 | + // For each container, add the new volume mount. |
| 115 | + _.each(podTemplate.spec.containers, function(container) { |
| 116 | + container.envFrom = container.envFrom || []; |
| 117 | + container.envFrom.push(newEnvFrom); |
| 118 | + }); |
| 119 | + } else { |
| 120 | + var generateName = $filter('generateName'); |
| 121 | + var name = generateName(ctrl.secret.metadata.name + '-'); |
| 122 | + var newVolumeMount = { |
| 123 | + name: name, |
| 124 | + mountPath: ctrl.mountVolume, |
| 125 | + readOnly: true |
| 126 | + }; |
| 127 | + |
| 128 | + // For each selected container, add the new volume mount. |
| 129 | + _.each(podTemplate.spec.containers, function(container) { |
| 130 | + container.volumeMounts = container.volumeMounts || []; |
| 131 | + container.volumeMounts.push(newVolumeMount); |
| 132 | + }); |
| 133 | + |
| 134 | + var newVolume = { |
| 135 | + name: name, |
| 136 | + secret: { |
| 137 | + secretName: ctrl.secret.metadata.name |
| 138 | + } |
| 139 | + }; |
| 140 | + |
| 141 | + podTemplate.spec.volumes = podTemplate.spec.volumes || []; |
| 142 | + podTemplate.spec.volumes.push(newVolume); |
| 143 | + } |
| 144 | + |
| 145 | + var humanizeKind = $filter('humanizeKind'); |
| 146 | + var sourceKind = humanizeKind(ctrl.secret.kind); |
| 147 | + var targetKind = humanizeKind(applicationToUpdate.kind); |
| 148 | + var context = { |
| 149 | + namespace: ctrl.project.metadata.name |
| 150 | + }; |
| 151 | + |
| 152 | + DataService.update(APIService.kindToResource(applicationToUpdate.kind), applicationToUpdate.metadata.name, applicationToUpdate, context).then( |
| 153 | + function() { |
| 154 | + NotificationsService.addNotification({ |
| 155 | + type: "success", |
| 156 | + message: "Successfully added " + sourceKind + " " + ctrl.secret.metadata.name + " to " + targetKind + " " + applicationToUpdate.metadata.name + ".", |
| 157 | + links: [{ |
| 158 | + href: Navigate.resourceURL(applicationToUpdate), |
| 159 | + label: "View " + targetKind |
| 160 | + }] |
| 161 | + }); |
| 162 | + if (angular.isFunction(ctrl.onComplete)) { |
| 163 | + ctrl.onComplete(); |
| 164 | + } |
| 165 | + }, |
| 166 | + function(result) { |
| 167 | + var getErrorDetails = $filter('getErrorDetails'); |
| 168 | + |
| 169 | + NotificationsService.addNotification({ |
| 170 | + type: "error", |
| 171 | + message: "An error occurred adding " + sourceKind + " " + ctrl.secret.metadata.name + " to " + targetKind + " " + applicationToUpdate.metadata.name + ". " + |
| 172 | + getErrorDetails(result) |
| 173 | + }); |
| 174 | + }).finally(function() { |
| 175 | + ctrl.disableInputs = false; |
| 176 | + } |
| 177 | + ); |
| 178 | + }; |
| 179 | + } |
| 180 | +})(); |
0 commit comments