123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- /**
- * 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');
- App.AddServiceController = App.WizardController.extend({
- name: 'addServiceController',
- serviceConfigs:require('data/service_configs'),
- totalSteps: 7,
- /**
- * Used for hiding back button in wizard
- */
- hideBackButton: true,
- /**
- * All wizards data will be stored in this variable
- *
- * cluster - cluster name
- * installOptions - ssh key, repo info, etc.
- * services - services list
- * hosts - list of selected hosts
- * slaveComponentHosts, - info about slave hosts
- * masterComponentHosts - info about master hosts
- * config??? - to be described later
- */
- content: Em.Object.create({
- cluster: null,
- hosts: null,
- installOptions: null,
- services: null,
- slaveComponentHosts: null,
- masterComponentHosts: null,
- serviceConfigProperties: null,
- advancedServiceConfig: null,
- controllerName: 'addServiceController',
- configGroups: [],
- additionalClients: []
- }),
- setCurrentStep: function (currentStep, completed) {
- this._super(currentStep, completed);
- App.clusterStatus.setClusterStatus({
- wizardControllerName: this.get('name'),
- localdb: App.db.data
- });
- },
- /**
- * return new object extended from clusterStatusTemplate
- * @return Object
- */
- getCluster: function(){
- return jQuery.extend({}, this.get('clusterStatusTemplate'), {name: App.router.getClusterName()});
- },
- /**
- * Load confirmed hosts.
- * Will be used at <code>Assign Masters(step5)</code> step
- */
- loadConfirmedHosts: function () {
- var hosts = this.getDBProperty('hosts');
- if (hosts) {
- this.set('content.hosts', hosts);
- }
- console.log('AddServiceController.loadConfirmedHosts: loaded hosts', hosts);
- },
- /**
- * Load services data from server.
- */
- loadServicesFromServer: function() {
- if(this.getDBProperty('service')){
- return;
- }
- var apiService = this.loadServiceComponents();
- //
- apiService.forEach(function(item, index){
- apiService[index].isSelected = App.Service.find().someProperty('id', item.serviceName);
- apiService[index].isDisabled = apiService[index].isSelected;
- apiService[index].isInstalled = apiService[index].isSelected;
- });
- this.set('content.services', apiService);
- this.setDBProperty('service', apiService);
- },
- /**
- * Load services data. Will be used at <code>Select services(step4)</code> step
- */
- loadServices: function () {
- var servicesInfo = this.getDBProperty('service');
- servicesInfo.forEach(function (item, index) {
- servicesInfo[index] = Em.Object.create(item);
- });
- this.set('content.services', servicesInfo);
- console.log('AddServiceController.loadServices: loaded data ', servicesInfo);
- var serviceNames = servicesInfo.filterProperty('isSelected', true).filterProperty('isDisabled', false).mapProperty('serviceName');
- console.log('selected services ', serviceNames);
- this.set('content.skipSlavesStep', !serviceNames.contains('MAPREDUCE') && !serviceNames.contains('HBASE') && !serviceNames.contains('STORM') && !serviceNames.contains('YARN'));
- if (this.get('content.skipSlavesStep')) {
- this.get('isStepDisabled').findProperty('step', 3).set('value', this.get('content.skipSlavesStep'));
- }
- },
- /**
- * Save data to model
- * @param stepController App.WizardStep4Controller
- */
- saveServices: function (stepController) {var serviceNames = [];
- this.setDBProperty('service', stepController.get('content'));
- console.log('AddServiceController.saveServices: saved data', stepController.get('content'));
- stepController.filterProperty('isSelected', true).filterProperty('isInstalled', false).forEach(function (item) {
- serviceNames.push(item.serviceName);
- });
- this.set('content.selectedServiceNames', serviceNames);
- this.setDBProperty('selectedServiceNames',serviceNames);
- console.log('AddServiceController.selectedServiceNames:', serviceNames);
- this.set('content.skipSlavesStep', !serviceNames.contains('MAPREDUCE') && !serviceNames.contains('HBASE') && !serviceNames.contains('STORM') && !serviceNames.contains('YARN'));
- if (this.get('content.skipSlavesStep')) {
- this.get('isStepDisabled').findProperty('step', 3).set('value', this.get('content.skipSlavesStep'));
- }
- },
- /**
- * Save Master Component Hosts data to Main Controller
- * @param stepController App.WizardStep5Controller
- */
- saveMasterComponentHosts: function (stepController) {
- var obj = stepController.get('selectedServicesMasters');
- var masterComponentHosts = [];
- var installedComponents = App.HostComponent.find();
- obj.forEach(function (_component) {
- masterComponentHosts.push({
- display_name: _component.display_name,
- component: _component.component_name,
- hostName: _component.selectedHost,
- serviceId: _component.serviceId,
- isInstalled: installedComponents.someProperty('componentName', _component.component_name)
- });
- });
- console.log("AddServiceController.saveMasterComponentHosts: saved hosts ", masterComponentHosts);
- this.setDBProperty('masterComponentHosts', masterComponentHosts);
- this.set('content.masterComponentHosts', masterComponentHosts);
- this.set('content.skipMasterStep', this.get('content.masterComponentHosts').everyProperty('isInstalled', true));
- this.get('isStepDisabled').findProperty('step', 2).set('value', this.get('content.skipMasterStep'));
- },
- /**
- * Load master component hosts data for using in required step controllers
- */
- loadMasterComponentHosts: function () {
- this._super();
- this.set('content.skipMasterStep', this.get('content.masterComponentHosts').everyProperty('isInstalled', true));
- this.get('isStepDisabled').findProperty('step', 2).set('value', this.get('content.skipMasterStep'));
- },
- /**
- * Does service have any configs
- * @param {string} serviceName
- * @returns {boolean}
- */
- isServiceConfigurable: function(serviceName) {
- return this.get('serviceConfigs').mapProperty('serviceName').contains(serviceName);
- },
- /**
- * Should Config Step be skipped (based on selected services list)
- * @returns {boolean}
- */
- skipConfigStep: function() {
- var skipConfigStep = true;
- var selectedServices = this.get('content.services').filterProperty('isSelected', true).filterProperty('isInstalled', false).mapProperty('serviceName');
- selectedServices.map(function(serviceName) {
- skipConfigStep = skipConfigStep && !this.isServiceConfigurable(serviceName);
- }, this);
- return skipConfigStep;
- },
- loadServiceConfigProperties: function() {
- this._super();
- if (!this.get('content.services')) {
- this.loadServices();
- }
- if (this.get('currentStep') > 1 && this.get('currentStep') < 6) {
- this.set('content.skipConfigStep', this.skipConfigStep());
- this.get('isStepDisabled').findProperty('step', 4).set('value', this.get('content.skipConfigStep'));
- }
- },
- saveServiceConfigProperties: function(stepController) {
- this._super(stepController);
- if (this.get('currentStep') > 1 && this.get('currentStep') < 6) {
- this.set('content.skipConfigStep', this.skipConfigStep());
- this.get('isStepDisabled').findProperty('step', 4).set('value', this.get('content.skipConfigStep'));
- }
- },
- /**
- * Load master component hosts data for using in required step controllers
- */
- loadSlaveComponentHosts: function () {
- var slaveComponentHosts = this.getDBProperty('slaveComponentHosts');
- if(!slaveComponentHosts){
- slaveComponentHosts = this.getSlaveComponentHosts();
- }
- this.set("content.slaveComponentHosts", slaveComponentHosts);
- console.log("AddServiceController.loadSlaveComponentHosts: loaded hosts ", slaveComponentHosts);
- },
- /**
- * return slaveComponents bound to hosts
- * @return {Array}
- */
- getSlaveComponentHosts: function () {
- var components = this.get('slaveComponents');
- var result = [];
- var installedServices = App.Service.find().mapProperty('serviceName');
- var selectedServices = this.get('content.services').filterProperty('isSelected', true).mapProperty('serviceName');
- var installedComponentsMap = {};
- var uninstalledComponents = [];
- var installedHosts = this.get('content.hosts');
- components.forEach(function (component) {
- if (installedServices.contains(component.get('serviceName'))) {
- installedComponentsMap[component.get('componentName')] = [];
- } else if (selectedServices.contains(component.get('serviceName'))) {
- uninstalledComponents.push(component);
- }
- }, this);
- installedComponentsMap['HDFS_CLIENT'] = [];
- for (var hostName in installedHosts) {
- installedHosts[hostName].hostComponents.forEach(function (componentName) {
- if (installedComponentsMap[componentName]) {
- installedComponentsMap[componentName].push(hostName);
- }
- });
- }
- for (var componentName in installedComponentsMap) {
- var name = (componentName === 'HDFS_CLIENT') ? 'CLIENT' : componentName;
- var component = {
- componentName: name,
- displayName: App.format.role(name),
- hosts: [],
- isInstalled: true
- };
- installedComponentsMap[componentName].forEach(function (hostName) {
- component.hosts.push({
- group: "Default",
- hostName: hostName,
- isInstalled: true
- });
- }, this);
- result.push(component);
- }
- uninstalledComponents.forEach(function (component) {
- var hosts = jQuery.extend(true, [], result.findProperty('componentName', 'DATANODE').hosts);
- hosts.setEach('isInstalled', false);
- result.push({
- componentName: component.get('componentName'),
- displayName: App.format.role(component.get('componentName')),
- hosts: hosts,
- isInstalled: false
- })
- });
- return result;
- },
- /**
- * Generate clients list for selected services and save it to model
- * @param stepController step4WizardController
- */
- saveClients: function(stepController){
- var clients = [];
- var serviceComponents = App.StackServiceComponent.find();
- var clientComponents = [];
- var dbHosts = this.get('content.hosts');
- for (var hostName in dbHosts) {
- dbHosts[hostName].hostComponents.forEach(function (componentName) {
- clientComponents[componentName] = true;
- }, this);
- }
- this.get('content.services').filterProperty('isSelected').forEach(function (_service) {
- var client = serviceComponents.filterProperty('serviceName', _service.serviceName).findProperty('isClient');
- if (client) {
- clients.push({
- component_name: client.get('componentName'),
- display_name: client.get('displayName'),
- isInstalled: !!clientComponents[client.get('componentName')]
- });
- }
- }, this);
- this.setDBProperty('clientInfo', clients);
- this.set('content.clients', clients);
- console.log("AddServiceController.saveClients: saved list ", clients);
- },
- /**
- * Load data for all steps until <code>current step</code>
- */
- loadAllPriorSteps: function () {
- var step = this.get('currentStep');
- switch (step) {
- case '7':
- case '6':
- case '5':
- this.load('cluster');
- this.set('content.additionalClients', []);
- case '4':
- this.loadServiceConfigGroups();
- this.loadServiceConfigProperties();
- case '3':
- this.loadServices();
- this.loadClients();
- this.loadSlaveComponentHosts();//depends on loadServices
- case '2':
- this.loadMasterComponentHosts();
- this.loadConfirmedHosts();
- case '1':
- this.loadServices();
- }
- },
- /**
- * 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());
- },
- /**
- * Clear all temporary data
- */
- finish: function () {
- this.setCurrentStep('1');
- this.clearAllSteps();
- this.clearStorageData();
- App.router.get('updateController').updateAll();
- },
- installServices: function (isRetry) {
- this.set('content.cluster.oldRequestsId', []);
- var clusterName = this.get('content.cluster.name');
- var data;
- var name;
- this.installAdditionalClients();
- if (isRetry) {
- this.getFailedHostComponents();
- console.log('failedHostComponents', this.get('failedHostComponents'));
- name = 'wizard.install_services.installer_controller.is_retry';
- data = {
- "RequestInfo": {
- "context" : Em.I18n.t('requestInfo.installComponents'),
- "query": "HostRoles/component_name.in(" + this.get('failedHostComponents').join(',') + ")"
- },
- "Body": {
- "HostRoles": {
- "state": "INSTALLED"
- }
- }
- };
- data = JSON.stringify(data);
- }
- else {
- name = 'wizard.install_services.installer_controller.not_is_retry';
- data = '{"RequestInfo": {"context" :"' + Em.I18n.t('requestInfo.installServices') + '"}, "Body": {"ServiceInfo": {"state": "INSTALLED"}}}';
- }
- App.ajax.send({
- name: name,
- sender: this,
- data: {
- data: data,
- cluster: clusterName
- },
- success: 'installServicesSuccessCallback',
- error: 'installServicesErrorCallback'
- });
- },
- /**
- * installs clients before install new services
- * on host where some components require this
- * @method installAdditionalClients
- */
- installAdditionalClients: function() {
- this.get('content.additionalClients').forEach(function(c){
- App.ajax.send({
- name: 'host.host_component.install',
- sender: this,
- data: {
- hostName: c.hostName,
- componentName: c.componentName,
- data: JSON.stringify({
- RequestInfo: {
- "context": Em.I18n.t('requestInfo.installHostComponent') + " " + c.hostName
- },
- Body: {
- HostRoles: {
- state: 'INSTALLED'
- }
- }
- })
- }
- });
- }, this);
- },
- /**
- * List of failed to install HostComponents while adding Service
- */
- failedHostComponents: [],
- getFailedHostComponents: function() {
- App.ajax.send({
- name: 'wizard.install_services.add_service_controller.get_failed_host_components',
- sender: this,
- success: 'getFailedHostComponentsSuccessCallback',
- error: 'getFailedHostComponentsErrorCallback'
- });
- },
- /**
- * Parse all failed components and filter out installed earlier components (based on selected to install services)
- * @param {Object} json
- */
- getFailedHostComponentsSuccessCallback: function(json) {
- var allFailed = json.items.filterProperty('HostRoles.state', 'INSTALL_FAILED');
- var currentFailed = [];
- var selectedServices = this.getDBProperty('service').filterProperty('isInstalled', false).filterProperty('isSelected', true).mapProperty('serviceName');
- allFailed.forEach(function(failed) {
- if (selectedServices.contains(failed.component[0].ServiceComponentInfo.service_name)) {
- currentFailed.push(failed.HostRoles.component_name);
- }
- });
- this.set('failedHostComponents', currentFailed);
- },
- getFailedHostComponentsErrorCallback: function(request, ajaxOptions, error) {
- console.warn(error);
- }
- });
|