123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
- var App = require('app');
- var componentsUtils = require('utils/components');
- App.KerberosWizardController = App.WizardController.extend({
- exceptionsOnSkipClient: [{'KDC': 'realm'}, {'KDC': 'kdc_type'}, {'Advanced kerberos-env': 'executable_search_paths'}],
- name: 'kerberosWizardController',
- totalSteps: 8,
- isKerberosWizard: true,
- stackConfigsLoaded: false,
- /**
- * Used for hiding back button in wizard
- */
- hideBackButton: true,
- skipClientInstall: false,
- kerberosDescriptorConfigs: null,
- content: Em.Object.create({
- controllerName: 'kerberosWizardController',
- serviceName: 'KERBEROS',
- kerberosOption: null,
- cluster: null,
- services: [],
- advancedServiceConfig: null,
- serviceConfigProperties: [],
- failedTask: null
- }),
- /**
- * set current step
- * @param {string} currentStep
- * @param {boolean} completed
- * @param {boolean} skipStateSave
- */
- setCurrentStep: function (currentStep, completed, skipStateSave) {
- this._super(currentStep, completed);
- if (App.get('testMode') || skipStateSave) {
- return;
- }
- App.clusterStatus.setClusterStatus({
- clusterName: this.get('content.cluster.name'),
- clusterState: 'KERBEROS_DEPLOY',
- wizardControllerName: 'kerberosWizardController',
- localdb: App.db.data
- });
- },
- setStepsEnable: function () {
- for (var i = 1; i <= this.get('totalSteps'); i++) {
- var step = this.get('isStepDisabled').findProperty('step', i);
- if (i <= this.get('currentStep') && App.get('router.clusterController.isLoaded')) {
- step.set('value', false);
- } else {
- step.set('value', i != this.get('currentStep'));
- }
- }
- }.observes('currentStep', 'App.router.clusterController.isLoaded'),
- /**
- * return new object extended from clusterStatusTemplate
- * @return Object
- */
- getCluster: function () {
- return jQuery.extend({}, this.get('clusterStatusTemplate'), {name: App.get('router').getClusterName()});
- },
- /**
- * Gets the
- * @returns {*} jquery promise
- */
- getClusterEnvData: function () {
- var dfd = $.Deferred();
- var self = this;
- var siteName = 'cluster-env';
- var tags = [{siteName: siteName}];
- App.get('router.configurationController').getConfigsByTags(tags).done(function (data) {
- var properties = self.updateClusterEnvData(data[0].properties);
- var clusterConfig = {"type": siteName, "tag": 'version' + (new Date).getTime(), "properties": properties};
- var clusterConfigData = {
- Clusters: {
- desired_config: clusterConfig
- }
- };
- dfd.resolve(clusterConfigData);
- });
- return dfd;
- },
- updateClusterEnvData: function (configs) {
- var kerberosDescriptor = this.kerberosDescriptorConfigs;
- configs['security_enabled'] = true;
- configs['kerberos_domain'] = kerberosDescriptor.properties.realm;
- return configs;
- },
- /**
- * save status of the cluster.
- * @param clusterStatus object with status,requestId fields.
- */
- saveClusterStatus: function (clusterStatus) {
- var oldStatus = this.toObject(this.get('content.cluster'));
- clusterStatus = jQuery.extend(oldStatus, clusterStatus);
- if (clusterStatus.requestId) {
- clusterStatus.requestId.forEach(function (requestId) {
- if (clusterStatus.oldRequestsId.indexOf(requestId) === -1) {
- clusterStatus.oldRequestsId.push(requestId)
- }
- }, this);
- }
- this.set('content.cluster', clusterStatus);
- this.save('cluster');
- },
- saveConfigTag: function (tag) {
- App.db.setKerberosWizardConfigTag(tag);
- this.set('content.' + [tag.name], tag.value);
- },
- saveKerberosOption: function (stepController) {
- this.setDBProperty('kerberosOption', stepController.get('selectedItem'));
- this.set('content.kerberosOption', stepController.get('selectedItem'));
- },
- /**
- * Load serviceConfigProperties to model
- */
- loadServiceConfigProperties: function () {
- var serviceConfigProperties = this.getDBProperty('serviceConfigProperties');
- this.set('content.serviceConfigProperties', serviceConfigProperties);
- },
- loadKerberosDescriptorConfigs: function () {
- var kerberosDescriptorConfigs = this.getDBProperty('kerberosDescriptorConfigs');
- this.set('kerberosDescriptorConfigs', kerberosDescriptorConfigs);
- },
- /**
- * Override the visibility of a list of form items with a new value
- *
- * @param {Array} itemsArray
- * @param newValue
- */
- overrideVisibility: function (itemsArray, newValue, exceptions) {
- newValue = newValue || false;
- for (var i = 0, len = itemsArray.length; i < len; i += 1) {
- if (!Ember.$.isEmptyObject(itemsArray[i])) {
- var isException = exceptions.filterProperty(itemsArray[i].category, itemsArray[i].name);
- if (!isException.length) {
- itemsArray[i].isVisible = newValue;
- }
- }
- }
- },
- loadKerberosOption: function () {
- this.set('content.kerberosOption', this.getDBProperty('kerberosOption'));
- },
- saveKerberosDescriptorConfigs: function (kerberosDescriptorConfigs) {
- this.setDBProperty('kerberosDescriptorConfigs',kerberosDescriptorConfigs);
- this.set('kerberosDescriptorConfigs', kerberosDescriptorConfigs);
- },
- createKerberosResources: function (callback) {
- var self = this;
- this.createKerberosService().done(function () {
- componentsUtils.createServiceComponent('KERBEROS_CLIENT').done(function () {
- self.createKerberosHostComponents().done(callback);
- });
- });
- },
- createKerberosService: function () {
- return App.ajax.send({
- name: 'wizard.step8.create_selected_services',
- sender: this,
- data: {
- data: '{"ServiceInfo": { "service_name": "KERBEROS"}}',
- cluster: App.get('clusterName') || App.clusterStatus.get('clusterName')
- }
- });
- },
- createKerberosHostComponents: function () {
- var hostNames = App.get('allHostNames');
- var queryStr = '';
- hostNames.forEach(function (hostName) {
- queryStr += 'Hosts/host_name=' + hostName + '|';
- });
- //slice off last symbol '|'
- queryStr = queryStr.slice(0, -1);
- var data = {
- "RequestInfo": {
- "query": queryStr
- },
- "Body": {
- "host_components": [
- {
- "HostRoles": {
- "component_name": 'KERBEROS_CLIENT'
- }
- }
- ]
- }
- };
- return App.ajax.send({
- name: 'wizard.step8.register_host_to_component',
- sender: this,
- data: {
- cluster: App.router.getClusterName(),
- data: JSON.stringify(data)
- }
- });
- },
- loadMap: {
- '1': [
- {
- type: 'sync',
- callback: function () {
- this.loadKerberosOption();
- }
- }
- ],
- '2': [
- {
- type: 'sync',
- callback: function () {
- var self = this;
- this.loadServiceConfigProperties();
- if (!this.get('stackConfigsLoaded')) {
- App.config.loadConfigsFromStack(['KERBEROS']).complete(function() {
- self.set('stackConfigsLoaded', true);
- }, this);
- }
- }
- }
- ],
- '3': [
- {
- type: 'sync',
- callback: function () {
- this.loadTasksStatuses();
- this.loadTasksRequestIds();
- this.loadRequestIds();
- }
- }
- ],
- '4': [
- {
- type: 'sync',
- callback: function () {
- this.loadKerberosDescriptorConfigs();
- }
- }
- ],
- '6': [
- {
- type: 'sync',
- callback: function () {
- this.loadKerberosDescriptorConfigs();
- }
- }
- ]
- },
- /**
- * Remove all loaded data.
- * Created as copy for App.router.clearAllSteps
- */
- clearAllSteps: function () {
- this.clearInstallOptions();
- // clear temporary information stored during the install
- this.set('content.cluster', this.getCluster());
- },
- clearTasksData: function () {
- this.saveTasksStatuses(undefined);
- this.saveRequestIds(undefined);
- this.saveTasksRequestIds(undefined);
- },
- /**
- * shows popup with to warn user
- * @param primary
- * @param isCritical
- */
- warnBeforeExitPopup: function(primary, isCritical) {
- var primaryText = Em.I18n.t('common.exitAnyway');
- var msg = isCritical ? Em.I18n.t('admin.kerberos.wizard.exit.critical.msg')
- : Em.I18n.t('admin.kerberos.wizard.exit.warning.msg');
- return App.showConfirmationPopup(primary, msg, null, null, primaryText, isCritical);
- },
- /**
- * Clear all temporary data
- */
- finish: function () {
- // The in-memory variable for current step should be reset to 1st step.
- this.setCurrentStep('1', false, true);
- // kerberos wizard namespace in the localStorage should be emptied
- this.resetDbNamespace();
- App.get('router.updateController').updateAll();
- }
- });
|