|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +angular.module('openshiftConsole') |
| 4 | + .controller('ServiceInstancesController', function ($scope, |
| 5 | + $filter, |
| 6 | + $routeParams, |
| 7 | + APIService, |
| 8 | + BindingService, |
| 9 | + Constants, |
| 10 | + DataService, |
| 11 | + LabelFilter, |
| 12 | + Logger, |
| 13 | + ProjectsService) { |
| 14 | + $scope.alerts = $scope.alerts || {}; |
| 15 | + $scope.applicationsByBinding = {}; |
| 16 | + $scope.bindings = {}; |
| 17 | + $scope.bindableServiceInstances = {}; |
| 18 | + //$scope.bindingsByApplicationUID = {}; |
| 19 | + $scope.bindingsByInstanceRef = {}; |
| 20 | + $scope.emptyMessage = "Loading..."; |
| 21 | + $scope.labelSuggestions = {}; |
| 22 | + $scope.projectName = $routeParams.project; |
| 23 | + $scope.serviceClasses = {}; |
| 24 | + $scope.serviceInstances = {}; |
| 25 | + $scope.unfilteredServiceInstances = {}; |
| 26 | + |
| 27 | + var watches = []; |
| 28 | + |
| 29 | + var updateFilter = function() { |
| 30 | + $scope.serviceInstances = LabelFilter.getLabelSelector().select($scope.unfilteredServiceInstances); |
| 31 | + }; |
| 32 | + |
| 33 | + var sortServiceInstances = function() { |
| 34 | + $scope.bindableServiceInstances = BindingService.filterBindableServiceInstances($scope.unfilteredServiceInstances, $scope.serviceClasses); |
| 35 | + $scope.unfilteredServiceInstances = BindingService.sortServiceInstances($scope.unfilteredServiceInstances, $scope.serviceClasses); |
| 36 | + }; |
| 37 | + |
| 38 | + var groupBindings = function() { |
| 39 | + // Build two maps: |
| 40 | + // - Bindings by the UID of the target object |
| 41 | + // - API objects by binding name |
| 42 | + /* |
| 43 | + state.bindingsByApplicationUID = {}; |
| 44 | + state.applicationsByBinding = {}; |
| 45 | + //state.deleteableBindingsByApplicationUID = {}; |
| 46 | +
|
| 47 | + // If there are no bindings, nothing to do. |
| 48 | + if (_.isEmpty(state.bindings)) { |
| 49 | + return; |
| 50 | + } |
| 51 | +
|
| 52 | + // All objects that can be a target for bindings. |
| 53 | + var objectsByKind = [ |
| 54 | + overview.deployments, |
| 55 | + overview.deploymentConfigs, |
| 56 | + overview.vanillaReplicationControllers, |
| 57 | + overview.vanillaReplicaSets, |
| 58 | + overview.statefulSets |
| 59 | + ]; |
| 60 | +
|
| 61 | + // Make sure all the binding targets have loaded first. |
| 62 | + if (_.some(objectsByKind, function(collection) { return !collection; })) { |
| 63 | + return; |
| 64 | + } |
| 65 | +
|
| 66 | + // Build a map of pod preset selectors by binding name. |
| 67 | + var podPresetSelectors = {}; |
| 68 | + _.each(state.bindings, function(binding) { |
| 69 | + var podPresetSelector = _.get(binding, 'spec.alphaPodPresetTemplate.selector'); |
| 70 | + if (podPresetSelector) { |
| 71 | + podPresetSelectors[binding.metadata.name] = new LabelSelector(podPresetSelector); |
| 72 | + } |
| 73 | + }); |
| 74 | +
|
| 75 | + _.each(objectsByKind, function(collection) { |
| 76 | + _.each(collection, function(apiObject) { |
| 77 | + // Key by UID since name is not unique across different kinds. |
| 78 | + var applicationUID = getUID(apiObject); |
| 79 | +
|
| 80 | + // Create a selector for the potential binding target to check if the |
| 81 | + // pod preset covers the selector. |
| 82 | + var applicationSelector = new LabelSelector(_.get(apiObject, 'spec.selector')); |
| 83 | + state.bindingsByApplicationUID[applicationUID] = []; |
| 84 | + state.deleteableBindingsByApplicationUID[applicationUID] = []; |
| 85 | +
|
| 86 | + // Look at each pod preset selector to see if it covers this API object selector. |
| 87 | + _.each(podPresetSelectors, function(podPresetSelector, bindingName) { |
| 88 | + if (podPresetSelector.covers(applicationSelector)) { |
| 89 | + // Keep a map of the target UID to the binding and the binding to |
| 90 | + // the target. We want to show bindings both in the "application" |
| 91 | + // object rows and the service instance rows. |
| 92 | + state.bindingsByApplicationUID[applicationUID].push(state.bindings[bindingName]); |
| 93 | + if (!_.get(state.bindings[bindingName], 'metadata.deletionTimestamp')) { |
| 94 | + state.deleteableBindingsByApplicationUID[applicationUID].push(state.bindings[bindingName]); |
| 95 | + } |
| 96 | + state.applicationsByBinding[bindingName] = state.applicationsByBinding[bindingName] || []; |
| 97 | + state.applicationsByBinding[bindingName].push(apiObject); |
| 98 | + } |
| 99 | + }); |
| 100 | + }); |
| 101 | + }); |
| 102 | +
|
| 103 | + $scope.bindingsByInstanceRef = _.reduce(state.bindingsByInstanceRef, function(result, bindingList, key) { |
| 104 | + result[key] = _.sortBy(bindingList, function(binding) { |
| 105 | + var apps = _.get(state.applicationsByBinding, [binding.metadata.name]); |
| 106 | + var firstName = _.get(_.head(apps), ['metadata', 'name']); |
| 107 | + return firstName || binding.metadata.name; |
| 108 | + }); |
| 109 | + return result; |
| 110 | + }, {});*/ |
| 111 | + }; |
| 112 | + |
| 113 | + ProjectsService |
| 114 | + .get($routeParams.project) |
| 115 | + .then(_.spread(function(project, context) { |
| 116 | + $scope.project = project; |
| 117 | + $scope.projectContext = context; |
| 118 | + |
| 119 | + watches.push(DataService.watch({ |
| 120 | + group: 'servicecatalog.k8s.io', |
| 121 | + resource: 'bindings' |
| 122 | + }, context, function(bindings) { |
| 123 | + $scope.bindings = bindings.by('metadata.name'); |
| 124 | + $scope.bindingsByInstanceRef = _.groupBy($scope.bindings, 'spec.instanceRef.name'); |
| 125 | + groupBindings(); |
| 126 | + //refreshSecrets(context); |
| 127 | + })); |
| 128 | + |
| 129 | + watches.push(DataService.watch({ |
| 130 | + group: 'servicecatalog.k8s.io', |
| 131 | + resource: 'instances' |
| 132 | + }, context, function(serviceInstances) { |
| 133 | + $scope.emptyMessage = "No provisioned services to show"; |
| 134 | + $scope.unfilteredServiceInstances = serviceInstances.by('metadata.name'); |
| 135 | + |
| 136 | + //_.each($scope.unfilteredServiceInstances, function (instance) { |
| 137 | + // var notifications = ResourceAlertsService.getServiceInstanceAlerts(instance); |
| 138 | + // setNotifications(instance, notifications); |
| 139 | + //}); |
| 140 | + |
| 141 | + sortServiceInstances(); |
| 142 | + updateFilter(); |
| 143 | + updateFilterWarning(); |
| 144 | + |
| 145 | + LabelFilter.addLabelSuggestionsFromResources($scope.unfilteredServiceInstances, $scope.labelSuggestions); |
| 146 | + LabelFilter.setLabelSuggestions($scope.labelSuggestions); |
| 147 | + |
| 148 | + Logger.log("provisioned services (subscribe)", $scope.unfilteredServiceInstances); |
| 149 | + })); |
| 150 | + |
| 151 | + DataService.list({ |
| 152 | + group: 'servicecatalog.k8s.io', |
| 153 | + resource: 'serviceclasses' |
| 154 | + }, context, function(serviceClasses) { |
| 155 | + $scope.serviceClasses = serviceClasses.by('metadata.name'); |
| 156 | + sortServiceInstances(); |
| 157 | + updateFilter(); |
| 158 | + }); |
| 159 | + |
| 160 | + function updateFilterWarning() { |
| 161 | + if (!LabelFilter.getLabelSelector().isEmpty() && _.isEmpty($scope.serviceInstances) && !_.isEmpty($scope.unfilteredServiceInstances)) { |
| 162 | + $scope.alerts["all-instances-filtered"] = { |
| 163 | + type: "warning", |
| 164 | + details: "The active filters are hiding all provisioned services." |
| 165 | + }; |
| 166 | + } |
| 167 | + else { |
| 168 | + delete $scope.alerts["all-instances-filtered"]; |
| 169 | + } |
| 170 | + } |
| 171 | + |
| 172 | + LabelFilter.onActiveFiltersChanged(function(labelSelector) { |
| 173 | + // trigger a digest loop |
| 174 | + $scope.$apply(function() { |
| 175 | + $scope.serviceInstances = labelSelector.select($scope.unfilteredServiceInstances); |
| 176 | + updateFilterWarning(); |
| 177 | + }); |
| 178 | + }); |
| 179 | + |
| 180 | + $scope.$on('$destroy', function(){ |
| 181 | + DataService.unwatchAll(watches); |
| 182 | + }); |
| 183 | + |
| 184 | + })); |
| 185 | + }); |
0 commit comments