123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605 |
- /**
- * 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 batchUtils = require('utils/batch_scheduled_requests');
- App.MainHostDetailsController = Em.Controller.extend({
- name: 'mainHostDetailsController',
- /**
- * Viewed host
- * @type {App.Host|null}
- */
- content: null,
- /**
- * Does user come from hosts page
- * @type {bool}
- */
- isFromHosts: false,
- /**
- * path to page visited before
- * @type {string}
- */
- referer: '',
- /**
- * Open dashboard page
- * @method routeHome
- */
- routeHome: function () {
- App.router.transitionTo('main.dashboard');
- },
- /**
- * Open summary page of the selected service
- * @param {object} event
- * @method routeToService
- */
- routeToService: function(event){
- var service = event.context;
- App.router.transitionTo('main.services.service.summary',service);
- },
- /**
- * List of active (not in passive state) host components
- * @type {Ember.Enumerable}
- */
- serviceActiveComponents: function() {
- return this.get('content.hostComponents').filterProperty('service.isInPassive',false);
- }.property('content.hostComponents'),
- /**
- * List of active host components which aren't clients
- * @type {Ember.Enumerable}
- */
- serviceNonClientActiveComponents: function() {
- return this.get('serviceActiveComponents').filterProperty('isClient',false);
- }.property('serviceActiveComponents'),
- /**
- * Default error-callback for ajax-requests in current page
- * @param {object} request
- * @param {object} ajaxOptions
- * @param {string} error
- * @param {object} opt
- * @param {object} params
- * @method ajaxErrorCallback
- */
- ajaxErrorCallback: function (request, ajaxOptions, error, opt, params) {
- console.log('error on change component host status');
- App.ajax.defaultErrorHandler(request, opt.url, opt.method);
- },
- /**
- * send command to server to start selected host component
- * @param {object} event
- * @method startComponent
- */
- startComponent: function (event) {
- var self = this;
- App.showConfirmationPopup(function() {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.startHostComponent') + " " + component.get('displayName');
- self.sendStartComponentCommand(component, context);
- });
- },
-
- /**
- * PUTs a command to server to start a component. If no
- * specific component is provided, all components are started.
- * @param {object} component When <code>null</code> all startable components are started.
- * @param {string} context Context under which this command is beign sent.
- * @method sendStartComponentCommand
- */
- sendStartComponentCommand: function(component, context) {
- var dataToSend = {
- RequestInfo : {
- "context" : context
- },
- Body:{
- HostRoles: {
- state: 'STARTED'
- }
- }
- };
- if (Em.isArray(component)) {
- dataToSend.RequestInfo.query = "HostRoles/component_name.in(" + component.mapProperty('componentName').join(',') + ")";
- App.ajax.send({
- name: 'host.host_components.stop',
- sender: this,
- data: {
- data: JSON.stringify(dataToSend),
- hostName: this.get('content.hostName'),
- component: component
- },
- success: 'stopComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- }
- else {
- App.ajax.send({
- name: 'host.host_component.stop',
- sender: this,
- data: {
- data: JSON.stringify(dataToSend),
- hostName: this.get('content.hostName'),
- componentName: component.get('componentName').toUpperCase(),
- component: component
- },
- success: 'startComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- }
- },
- /**
- * Success callback for start component(s) request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method startComponentSuccessCallback
- */
- startComponentSuccessCallback: function(data, opt, params) {
- console.log('Send request for STARTING successfully');
- if (App.testMode) {
- if(Em.isArray(params.component)){
- var allComponents = this.get('content.hostComponents');
- allComponents.forEach(function(c){
- c.set('workStatus', App.HostComponentStatus.stopping);
- setTimeout(function(){
- c.set('workStatus', App.HostComponentStatus.stopped);
- },App.testModeDelayForActions);
- });
- } else {
- params.component.set('workStatus', App.HostComponentStatus.starting);
- setTimeout(function(){
- params.component.set('workStatus', App.HostComponentStatus.started);
- },App.testModeDelayForActions);
- }
- } else {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- },
- /**
- * Send command to server to delete selected host component
- * @param {object} event
- * @method deleteComponent
- */
- deleteComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName');
- var displayName = component.get('displayName');
- var isLastComponent = (App.HostComponent.find().filterProperty('componentName', componentName).get('length') === 1);
- App.ModalPopup.show({
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- primary: Em.I18n.t('hosts.host.deleteComponent.popup.confirm'),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/deleteComponentPopup')
- }),
- isChecked: false,
- disablePrimary: function () {
- return !this.get('isChecked');
- }.property('isChecked'),
- lastComponent: function() {
- if (isLastComponent) {
- this.set('isChecked', false);
- return true;
- } else {
- this.set('isChecked', true);
- return false;
- }
- }.property(),
- lastComponentError: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.warning').format(displayName))
- }),
- restartNagiosMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.msg2').format(displayName))
- }),
- deleteComponentMsg: function() {
- return Em.I18n.t('hosts.host.deleteComponent.popup.msg1').format(displayName);
- }.property(),
- onPrimary: function () {
- self._doDeleteHostComponent(component);
- self.set('redrawComponents', true);
- this.hide();
- }
- });
- },
- /**
- * Trigger to reset list of master/slaves components on the view
- * @type {bool}
- */
- redrawComponents: false,
- /**
- * Deletes the given host component, or all host components.
- *
- * @param {object|null} component When <code>null</code> all host components are deleted.
- * @return <code>null</code> when components get deleted.
- * <code>{xhr: XhrObj, url: "http://", method: "DELETE"}</code>
- * when components failed to get deleted.
- * @method _doDeleteHostComponent
- */
- _doDeleteHostComponent: function(component) {
- if (component === null) {
- App.ajax.send({
- name: 'host.host_components.delete',
- sender: this,
- data: {
- hostName: this.get('content.hostName')
- },
- success: '_doDeleteHostComponentSuccessCallback',
- error: '_doDeleteHostComponentErrorCallback'
- });
- }
- else {
- App.ajax.send({
- name: 'host.host_component.delete',
- sender: this,
- data: {
- componentName: component.get('componentName').toUpperCase(),
- hostName: this.get('content.hostName')
- },
- success: '_doDeleteHostComponentSuccessCallback',
- error: '_doDeleteHostComponentErrorCallback'
- });
- }
- return this.get('_deletedHostComponentResult');
- },
- /**
- * Result of delete component(s) request
- * @type {object}
- */
- _deletedHostComponentResult: null,
- /**
- * Success callback for delete host component request
- * @method _doDeleteHostComponentSuccessCallback
- */
- _doDeleteHostComponentSuccessCallback: function() {
- this.set('_deletedHostComponentResult', null);
- },
- /**
- * Error-callback for delete host component request
- * @param {object} xhr
- * @param {string} textStatus
- * @param {object} errorThrown
- * @method _doDeleteHostComponentErrorCallback
- */
- _doDeleteHostComponentErrorCallback: function(xhr, textStatus, errorThrown) {
- console.log('Error deleting host component');
- console.log(textStatus);
- console.log(errorThrown);
- this.set('_deletedHostComponentResult', {xhr: xhr, url: url, method: 'DELETE'});
- },
- /**
- * Send command to server to upgrade selected host component
- * @param {object} event
- * @method upgradeComponent
- */
- upgradeComponent: function (event) {
- var self = this;
- var component = event.context;
- App.showConfirmationPopup(function() {
- App.ajax.send({
- name: 'host.host_component.upgrade',
- sender: self,
- data: {
- component: component,
- hostName: self.get('content.hostName'),
- componentName: component.get('componentName').toUpperCase(),
- data: JSON.stringify({
- RequestInfo : {
- "context" : Em.I18n.t('requestInfo.upgradeHostComponent') + " " + component.get('displayName')
- },
- Body:{
- HostRoles:{
- stack_id: 'HDP-1.2.2',
- state: 'INSTALLED'
- }
- }
- })
- },
- success: 'upgradeComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- });
- },
- /**
- * Success callback for upgrade host component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method upgradeComponentSuccessCallback
- */
- upgradeComponentSuccessCallback: function(data, opt, params) {
- console.log('Send request for UPGRADE successfully');
- if (App.testMode) {
- params.component.set('workStatus', App.HostComponentStatus.starting);
- setTimeout(function(){
- params.component.set('workStatus', App.HostComponentStatus.started);
- },App.testModeDelayForActions);
- } else {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- },
- /**
- * Send command to server to stop selected host component
- * @param {object} event
- * @method stopComponent
- */
- stopComponent: function (event) {
- var self = this;
- App.showConfirmationPopup(function() {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.stopHostComponent')+ " " + component.get('displayName');
- self.sendStopComponentCommand(component, context);
- });
- },
-
- /**
- * PUTs a command to server to stop a component. If no
- * specific component is provided, all components are stopped.
- * @param {object} component When <code>null</code> all components are stopped.
- * @param {object} context Context under which this command is beign sent.
- * @method sendStopComponentCommand
- */
- sendStopComponentCommand: function(component, context) {
- var dataToSend = {
- RequestInfo : {
- "context" : context
- },
- Body:{
- HostRoles: {
- state: 'INSTALLED'
- }
- }
- };
- if (Em.isArray(component)) {
- dataToSend.RequestInfo.query = "HostRoles/component_name.in(" + component.mapProperty('componentName').join(',') + ")";
- App.ajax.send({
- name: 'host.host_components.stop',
- sender: this,
- data: {
- data: JSON.stringify(dataToSend),
- hostName: this.get('content.hostName'),
- component: component
- },
- success: 'stopComponentSuccessCallback'
- });
- }
- else {
- App.ajax.send({
- name: 'host.host_component.stop',
- sender: this,
- data: {
- data: JSON.stringify(dataToSend),
- hostName: this.get('content.hostName'),
- componentName: component.get('componentName').toUpperCase(),
- component: component
- },
- success: 'stopComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- }
- },
- /**
- * Success callback for stop host component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method stopComponentSuccessCallback
- */
- stopComponentSuccessCallback: function(data, opt, params) {
- console.log('Send request for STOPPING successfully');
- if (App.testMode) {
- if(Em.isArray(params.component)) {
- params.component.forEach(function(c){
- c.set('workStatus', App.HostComponentStatus.stopping);
- setTimeout(function(){
- c.set('workStatus', App.HostComponentStatus.stopped);
- },App.testModeDelayForActions);
- });
- }
- else {
- params.component.set('workStatus', App.HostComponentStatus.stopping);
- setTimeout(function() {
- params.component.set('workStatus', App.HostComponentStatus.stopped);
- },App.testModeDelayForActions);
- }
- }
- else {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- },
- /**
- * Send command to server to restart selected components
- * @param {object} event
- * @method restartComponent
- */
- restartComponent: function(event) {
- var self = this;
- var component = event.context;
- App.showConfirmationPopup(function(){
- batchUtils.restartHostComponents([component], Em.I18n.t('rollingrestart.context.selectedComponentOnSelectedHost').format(component.get('displayName')));
- });
- },
- /**
- * Send command to server to install selected host component
- * @param {object} event
- * @method addComponent
- */
- addComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName').toUpperCase().toString();
- var subComponentNames = component.get('subComponentNames');
- var displayName = component.get('displayName');
- var securityEnabled = App.router.get('mainAdminSecurityController').getUpdatedSecurityStatus();
- if (componentName === 'ZOOKEEPER_SERVER') {
- App.showConfirmationPopup(function() {
- self.primary(component);
- }, Em.I18n.t('hosts.host.addComponent.addZooKeeper'));
- }
- else {
- if (securityEnabled && component.get('componentName') !== 'CLIENTS') {
- App.showConfirmationPopup(function() {
- self.primary(component);
- }, Em.I18n.t('hosts.host.addComponent.securityNote').format(componentName,self.get('content.hostName')));
- }
- else {
- var dn = displayName;
- if (subComponentNames !== null && subComponentNames.length > 0) {
- var dns = [];
- subComponentNames.forEach(function(scn){
- dns.push(App.format.role(scn));
- });
- dn += " ("+dns.join(", ")+")";
- }
- App.ModalPopup.show({
- primary: Em.I18n.t('hosts.host.addComponent.popup.confirm'),
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- addComponentMsg: function() {
- return Em.I18n.t('hosts.host.addComponent.msg').format(dn);
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/addComponentPopup')
- }),
- restartNagiosMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.addComponent.note').format(dn))
- }),
- onPrimary: function () {
- this.hide();
- if (component.get('componentName') === 'CLIENTS') {
- // Clients component has many sub-components which
- // need to be installed.
- var scs = component.get('subComponentNames');
- scs.forEach(function (sc, index) {
- var c = Em.Object.create({
- displayName: App.format.role(sc),
- componentName: sc
- });
- self.primary(c);
- });
- }
- else {
- self.primary(component);
- }
- }
- });
- }
- }
- },
- /**
- * Send request to add host component
- * @param {App.HostComponent} component
- * @method primary
- */
- primary: function(component) {
- var self = this;
- var componentName = component.get('componentName').toUpperCase();
- var displayName = component.get('displayName');
- App.ajax.send({
- name: 'host.host_component.add_new_component',
- sender: self,
- data: {
- hostName: self.get('content.hostName'),
- component: component,
- data: JSON.stringify({
- RequestInfo: {
- "context": Em.I18n.t('requestInfo.installHostComponent') + " " + displayName
- },
- Body: {
- host_components: [
- {
- HostRoles: {
- component_name: componentName
- }
- }
- ]
- }
- })
- },
- success: 'addNewComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- },
- /**
- * Success callback for add host component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method addNewComponentSuccessCallback
- */
- addNewComponentSuccessCallback: function(data, opt, params) {
- console.log('Send request for ADDING NEW COMPONENT successfully');
- App.ajax.send({
- name: 'host.host_component.install_new_component',
- sender: this,
- data: {
- hostName: this.get('content.hostName'),
- componentName: params.component.get('componentName'),
- component: params.component,
- data: JSON.stringify({
- RequestInfo: {
- "context": Em.I18n.t('requestInfo.installNewHostComponent') + " " + params.component.get('displayName')
- },
- Body: {
- HostRoles: {
- state: 'INSTALLED'
- }
- }
- })
- },
- success: 'installNewComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- },
- /**
- * Success callback for install host component request (sent in <code>addNewComponentSuccessCallback</code>)
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method installNewComponentSuccessCallback
- */
- installNewComponentSuccessCallback: function(data, opt, params) {
- if (!data.Requests || !data.Requests.id) {
- return;
- }
- var self = this;
- console.log('Send request for INSTALLING NEW COMPONENT successfully');
- if (App.testMode) {
- params.component.set('workStatus', App.HostComponentStatus.installing);
- setTimeout(function () {
- params.component.set('workStatus', App.HostComponentStatus.stopped);
- }, App.testModeDelayForActions);
- }
- else {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- if (params.componentName === 'ZOOKEEPER_SERVER') {
- self.set('zkRequestId', data.Requests.id);
- self.addObserver('App.router.backgroundOperationsController.serviceTimestamp', self, self.checkZkConfigs);
- self.checkZkConfigs();
- }
- });
- },
- /**
- * Send command to server to resfresh configs of selected component
- * @param {object} event
- * @method refreshComponentConfigs
- */
- refreshComponentConfigs: function (event) {
- var self = this;
- App.showConfirmationPopup(function() {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.refreshComponentConfigs').format(component.get('displayName'));
- self.sendRefreshComponentConfigsCommand(component, context);
- });
- },
- /**
- * PUTs a command to server to refresh configs of host component.
- * @param {object} component
- * @param {object} context Context under which this command is beign sent.
- * @method sendRefreshComponentConfigsCommand
- */
- sendRefreshComponentConfigsCommand: function (component, context) {
- resource_filters = [
- {
- service_name: component.get('service.serviceName'),
- component_name: component.get('componentName'),
- hosts: component.get('host.hostName')
- }
- ];
- App.ajax.send({
- name: 'host.host_component.refresh_configs',
- sender: this,
- data: {
- resource_filters: resource_filters,
- context: context
- },
- success: 'refreshComponentConfigsSuccessCallback'
- });
- },
- /**
- * Success callback for refresh host component configs request
- * @method refreshComponentConfigsSuccessCallback
- */
- refreshComponentConfigsSuccessCallback: function() {
- console.log('Send request for refresh configs successfully');
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (showPopup) {
- if (showPopup) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- },
- /**
- * Load tags
- * @method checkZkConfigs
- */
- checkZkConfigs: function() {
- var bg = App.router.get('backgroundOperationsController.services').findProperty('id', this.get('zkRequestId'));
- if (!bg) return;
- if (!bg.get('isRunning')) {
- this.loadConfigs();
- }
- },
- /**
- * Load configs
- * @method loadConfigs
- */
- loadConfigs: function() {
- this.removeObserver('App.router.backgroundOperationsController.serviceTimestamp', this, this.checkZkConfigs);
- App.ajax.send({
- name: 'config.tags',
- sender: this,
- success: 'loadConfigsSuccessCallback'
- });
- },
- /**
- * Success callback for load configs request
- * @param {object} data
- * @method adConfigsSuccessCallback
- */
- loadConfigsSuccessCallback: function(data) {
- var urlParams = [];
- if (App.get('isHaEnabled')) {
- urlParams.push('(type=core-site&tag=' + data.Clusters.desired_configs['core-site'].tag + ')');
- }
- if (App.Service.find().someProperty('serviceName', 'HBASE')) {
- urlParams.push('(type=hbase-site&tag=' + data.Clusters.desired_configs['hbase-site'].tag + ')');
- }
- if (App.Service.find().someProperty('serviceName', 'HIVE')) {
- urlParams.push('(type=webhcat-site&tag=' + data.Clusters.desired_configs['webhcat-site'].tag + ')');
- }
- if (App.Service.find().someProperty('serviceName', 'STORM')) {
- urlParams.push('(type=storm-site&tag=' + data.Clusters.desired_configs['storm-site'].tag + ')');
- }
- if (!urlParams.length) {
- return;
- }
- App.ajax.send({
- name: 'reassign.load_configs',
- sender: this,
- data: {
- urlParams: urlParams.join('|')
- },
- success: 'setNewZkConfigs'
- });
- },
- /**
- * Set new values for some configs (based on available ZooKeeper Servers)
- * @param {object} data
- * @method setNewZkConfigs
- */
- setNewZkConfigs: function(data) {
- var configs = [];
- data.items.forEach(function (item) {
- configs[item.type] = item.properties;
- }, this);
- var zks = this.getZkServerHosts();
- var zks_with_port = '';
- zks.forEach(function(zk) {
- zks_with_port += zk + ':2181,';
- });
- zks_with_port = zks_with_port.slice(0,-1);
- if (App.get('isHaEnabled')) {
- configs['core-site']['ha.zookeeper.quorum'] = zks_with_port;
- }
- if (configs['hbase-site']) {
- configs['hbase-site']['hbase.zookeeper.quorum'] = zks.join(',');
- }
- if (configs['webhcat-site']) {
- configs['webhcat-site']['templeton.zookeeper.hosts'] = zks_with_port;
- }
- if (configs['storm-site']) {
- configs['storm-site']['storm.zookeeper.servers'] = JSON.stringify(zks).replace(/"/g, "'");
- }
- for (var site in configs) {
- if (!configs.hasOwnProperty(site)) continue;
- App.ajax.send({
- name: 'reassign.save_configs',
- sender: this,
- data: {
- siteName: site,
- properties: configs[site]
- }
- });
- }
- },
- /**
- * Is deleteHost action id fired
- * @type {bool}
- */
- fromDeleteHost: false,
- /**
- * Get list of hostnames where ZK Server is installed
- * @returns {string[]}
- * @method getZkServerHosts
- */
- getZkServerHosts: function() {
- var zks = App.HostComponent.find().filterProperty('componentName', 'ZOOKEEPER_SERVER').mapProperty('host.hostName');
- if (this.get('fromDeleteHost')) {
- this.set('fromDeleteHost', false);
- return zks.without(this.get('content.hostName'));
- }
- return zks;
- },
- /**
- * Send command to server to install selected host component
- * @param {Object} event
- * @method installComponent
- */
- installComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName').toUpperCase();
- var displayName = component.get('displayName');
- App.ModalPopup.show({
- primary: Em.I18n.t('hosts.host.installComponent.popup.confirm'),
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- installComponentMessage: function(){
- return Em.I18n.t('hosts.host.installComponent.msg').format(displayName);
- }.property(),
- restartNagiosMsg : Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.addComponent.note').format(displayName))
- }),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/installComponentPopup')
- }),
- onPrimary: function () {
- this.hide();
- App.ajax.send({
- name: 'host.host_component.install',
- sender: self,
- data: {
- hostName: self.get('content.hostName'),
- componentName: componentName,
- component: component,
- data: JSON.stringify({
- RequestInfo: {
- "context": Em.I18n.t('requestInfo.installHostComponent') + " " + displayName
- },
- Body: {
- HostRoles: {
- state: 'INSTALLED'
- }
- }
- })
- },
- success: 'installComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- }
- });
- },
- /**
- * Success callback for install component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method installComponentSuccessCallback
- */
- installComponentSuccessCallback: function(data, opt, params) {
- console.log('Send request for REINSTALL COMPONENT successfully');
- if (App.testMode) {
- params.component.set('workStatus', App.HostComponentStatus.installing);
- setTimeout(function () {
- params.component.set('workStatus', App.HostComponentStatus.stopped);
- }, App.testModeDelayForActions);
- } else {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- },
- /**
- * Send command to server to run decommission on DATANODE, TASKTRACKER, NODEMANAGER, REGIONSERVER
- * @param {App.HostComponent} component
- * @method decommission
- */
- decommission: function(component) {
- var self = this;
- App.showConfirmationPopup(function(){
- var svcName = component.get('service.serviceName');
- var hostName = self.get('content.hostName');
- // HDFS service, decommission DataNode
- if (svcName === "HDFS") {
- self.doDecommission(hostName, svcName, "NAMENODE", "DATANODE");
- }
- // YARN service, decommission NodeManager
- if (svcName === "YARN") {
- self.doDecommission(hostName, svcName, "RESOURCEMANAGER", "NODEMANAGER");
- }
- // MAPREDUCE service, decommission TaskTracker
- if (svcName === "MAPREDUCE") {
- self.doDecommission(hostName, svcName, "JOBTRACKER", "TASKTRACKER");
- }
- // HBASE service, decommission RegionServer
- if (svcName === "HBASE") {
- self.warnBeforeDecommission(hostName, svcName, "HBASE_MASTER", "HBASE_REGIONSERVER");
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- });
- },
-
- /**
- * Send command to server to run recommission on DATANODE, TASKTRACKER, NODEMANAGER
- * @param {App.HostComponent} component
- * @method recommission
- */
- recommission: function(component){
- var self = this;
- App.showConfirmationPopup(function(){
- var svcName = component.get('service.serviceName');
- var hostName = self.get('content.hostName');
- // HDFS service, Recommission datanode
- if (svcName === "HDFS") {
- self.doRecommissionAndStart(hostName, svcName, "NAMENODE", "DATANODE");
- }
- // YARN service, Recommission nodeManager
- if (svcName === "YARN") {
- self.doRecommissionAndStart(hostName, svcName, "RESOURCEMANAGER", "NODEMANAGER");
- }
- // MAPREDUCE service, Recommission taskTracker
- if (svcName === "MAPREDUCE") {
- self.doRecommissionAndRestart(hostName, svcName, "JOBTRACKER", "TASKTRACKER");
- }
- // HBASE service, Recommission RegionServer
- if (svcName === "HBASE") {
- self.doRecommissionAndStart(hostName, svcName, "HBASE_MASTER", "HBASE_REGIONSERVER");
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- });
- },
- /**
- * Performs Decommission (for DN, TT and NM)
- * @param {string} hostName
- * @param {string} serviceName
- * @param {string} componentName
- * @param {string} slaveType
- * @method doDecommission
- */
- doDecommission: function(hostName, serviceName, componentName, slaveType){
- var contextNameString = 'hosts.host.' + slaveType.toLowerCase() + '.decommission';
- var context = Em.I18n.t(contextNameString);
- App.ajax.send({
- name: 'host.host_component.decommission_slave',
- sender: this,
- data: {
- context: context,
- command: 'DECOMMISSION',
- hostName: hostName,
- serviceName: serviceName ,
- componentName: componentName,
- slaveType: slaveType
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Recomends user to put component in MM before decommision (for HBASE only)
- * @method warnBeforeDecommission
- * @param {string[]} hostNames - list of host when run from bulk operations or current host
- * @param {string} serviceName - serviceName
- * @param {string} componentName - master compoent name
- * @param {string} slaveType - slave component name
- */
- warnBeforeDecommission: function(hostNames, serviceName, componentName, slaveType) {
- if (this.get('content.hostComponents').findProperty('componentName', componentName).get('passiveState') == "OFF") {
- App.ModalPopup.show({
- header: Em.I18n.t('common.warning'),
- message: function(){
- return Em.I18n.t('hostPopup.reccomendation.beforeDecommission').format(App.format.components[componentName]);
- }.property(),
- bodyClass: Em.View.extend({
- template: Em.Handlebars.compile('<div class="alert alert-warning">{{message}}</div>')
- }),
- secondary: false
- });
- } else {
- this.doDecommissionRegionServer(hostNames, serviceName, componentName, slaveType);
- }
- },
- /**
- * Performs Decommission (for RegionServer)
- * @method doDecommissionRegionServer
- * @param {string[]} hostNames - list of host when run from bulk operations or current host
- * @param {string} serviceName - serviceName
- * @param {string} componentName - master compoent name
- * @param {string} slaveType - slave component name
- */
- doDecommissionRegionServer: function(hostNames, serviceName, componentName, slaveType){
- App.ajax.send({
- name: 'host.host_component.recommission_and_restart',
- sender: this,
- data: {
- intervalTimeSeconds: 1,
- tolerateSize : 0,
- batches:[
- {
- "order_id" : 1,
- "type" : "POST",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- "context" : Em.I18n.t('hosts.host.regionserver.decommission.batch1'),
- "command" : "DECOMMISSION",
- "parameters" : {
- "slave_type": slaveType,
- "excluded_hosts": hostNames
- }
- },
- "Requests/resource_filters": [{"service_name" : serviceName, "component_name" : componentName}]
- }
- },
- {
- "order_id": 2,
- "type": "PUT",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/host_components",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- context: Em.I18n.t('hosts.host.regionserver.decommission.batch2'),
- query: 'HostRoles/component_name=' + slaveType + '&HostRoles/host_name.in(' + hostNames + ')&HostRoles/maintenance_state=OFF'
- },
- "Body": {
- HostRoles: {
- state: "INSTALLED"
- }
- }
- }
- },
- {
- "order_id" : 3,
- "type" : "POST",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- "context" : Em.I18n.t('hosts.host.regionserver.decommission.batch3'),
- "command" : "DECOMMISSION",
- "service_name" : serviceName,
- "component_name" : componentName,
- "parameters" : {
- "slave_type": slaveType,
- "excluded_hosts": hostNames,
- "mark_draining_only": "true"
- }
- }
- }
- }
- ]
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Error callback for decommission requests
- * @param {object} request
- * @param {object} ajaxOptions
- * @param {string} error
- * @method decommissionErrorCallback
- */
- decommissionErrorCallback: function (request, ajaxOptions, error) {
- console.log('ERROR: '+ error);
- },
- /**
- * Success ajax response for Recommission/Decommission slaves
- * @param {object} data
- * @method decommissionSuccessCallback
- */
- decommissionSuccessCallback: function(data) {
- if(data && (data.Requests || data.resources[0].RequestSchedule) ) {
- if (!App.testMode) {
- App.router.get('clusterController').loadUpdatedStatusDelayed(500);
- }
- // load data (if we need to show this background operations popup) from persist
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- });
- }
- else {
- console.log('cannot get request id from ', data);
- }
- },
- /**
- * Performs Recommission and Start
- * @param {string} hostNames
- * @param {string} serviceName
- * @param {string} componentName
- * @param {string} slaveType
- * @method doRecommissionAndStart
- */
- doRecommissionAndStart: function(hostNames, serviceName, componentName, slaveType){
- var contextNameString_1 = 'hosts.host.' + slaveType.toLowerCase() + '.recommission';
- var context_1 = Em.I18n.t(contextNameString_1);
- var contextNameString_2 = 'requestInfo.startHostComponent.' + slaveType.toLowerCase();
- var startContext = Em.I18n.t(contextNameString_2);
- App.ajax.send({
- name: 'host.host_component.recommission_and_restart',
- sender: this,
- data: {
- intervalTimeSeconds: 1,
- tolerateSize : 1,
- batches:[
- {
- "order_id" : 1,
- "type" : "POST",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- "context" : context_1,
- "command" : "DECOMMISSION",
- "parameters" : {
- "slave_type": slaveType,
- "included_hosts": hostNames
- }
- },
- "Requests/resource_filters": [{"service_name" : serviceName, "component_name" : componentName}]
- }
- },
- {
- "order_id": 2,
- "type": "PUT",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/host_components",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- context: startContext,
- query: 'HostRoles/component_name=' + slaveType + '&HostRoles/host_name.in(' + hostNames + ')&HostRoles/maintenance_state=OFF'
- },
- "Body": {
- HostRoles: {
- state: "STARTED"
- }
- }
- }
- }
- ]
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Performs Recommission and Restart
- * @param {string} hostNames
- * @param {string} serviceName
- * @param {string} componentName
- * @param {string} slaveType
- * @method doRecommissionAndStart
- */
- doRecommissionAndRestart: function(hostNames, serviceName, componentName, slaveType){
- var contextNameString_1 = 'hosts.host.' + slaveType.toLowerCase() + '.recommission';
- var context_1 = Em.I18n.t(contextNameString_1);
- var contextNameString_2 = 'hosts.host.' + slaveType.toLowerCase() + '.restart';
- var context_2 = Em.I18n.t(contextNameString_2);
- App.ajax.send({
- name: 'host.host_component.recommission_and_restart',
- sender: this,
- data: {
- intervalTimeSeconds: 1,
- tolerateSize : 1,
- batches:[
- {
- "order_id" : 1,
- "type" : "POST",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- "context" : context_1,
- "command" : "DECOMMISSION",
- "parameters" : {
- "slave_type": slaveType,
- "included_hosts": hostNames
- }
- },
- "Requests/resource_filters": [{"service_name" : serviceName, "component_name" : componentName}]
- }
- },
- {
- "order_id" : 2,
- "type" : "POST",
- "uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo" : {
- "RequestInfo" : {
- "context" : context_2,
- "command" : "RESTART",
- "service_name" : serviceName,
- "component_name" : slaveType,
- "hosts" : hostNames
- }
- }
- }
- ]
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Handler for host-menu items actions
- * @param {object} option
- * @method doAction
- */
- doAction: function(option) {
- switch (option.context.action) {
- case "deleteHost":
- this.validateAndDeleteHost();
- break;
- case "startAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doStartAllComponents();
- break;
- case "stopAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doStopAllComponents();
- break;
- case "restartAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doRestartAllComponents();
- break;
- case "onOffPassiveModeForHost":
- this.onOffPassiveModeForHost(option.context);
- break;
- default:
- break;
- }
- },
- /**
- * Turn On/Off Passive Mode for host
- * @param {object} context
- * @method onOffPassiveModeForHost
- */
- onOffPassiveModeForHost: function(context) {
- var state = context.active ? 'ON' : 'OFF';
- var self = this;
- var message = context.label + ' for host';
- App.showConfirmationPopup(function() {
- self.hostPassiveModeRequest(state, message);
- },
- Em.I18n.t('hosts.passiveMode.popup').format(context.active ? 'On' : 'Off',this.get('content.hostName'))
- );
- },
- /**
- * Send request to get passive state for host
- * @param {string} state
- * @param {string} message
- * @method hostPassiveModeRequest
- */
- hostPassiveModeRequest: function(state,message) {
- App.ajax.send({
- name: 'bulk_request.hosts.passive_state',
- sender: this,
- data: {
- hostNames: this.get('content.hostName'),
- passive_state: state,
- requestInfo: message
- },
- success: 'updateHost'
- });
- },
- /**
- * Success callback for receiving host passive state
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method updateHost
- */
- updateHost: function(data, opt, params) {
- this.set('content.passiveState', params.passive_state);
- App.router.get('clusterController').loadUpdatedStatus(function(){
- batchUtils.infoPassiveState(params.passive_state);
- });
- },
- /**
- * Show confirmation popup for action "start all components"
- * @method doStartAllComponents
- */
- doStartAllComponents: function() {
- var self = this;
- var components = this.get('serviceNonClientActiveComponents');
- var componentsLength = components == null ? 0 : components.get('length');
- if (componentsLength > 0) {
- App.showConfirmationPopup(function() {
- self.sendStartComponentCommand(components, Em.I18n.t('hosts.host.maintainance.startAllComponents.context'));
- });
- }
- },
- /**
- * Show confirmation popup for action "stop all components"
- * @method doStopAllComponents
- */
- doStopAllComponents: function() {
- var self = this;
- var components = this.get('serviceNonClientActiveComponents');
- var componentsLength = components == null ? 0 : components.get('length');
- if (componentsLength > 0) {
- App.showConfirmationPopup(function() {
- self.sendStopComponentCommand(components, Em.I18n.t('hosts.host.maintainance.stopAllComponents.context'));
- });
- }
- },
- /**
- * Show confirmation popup for action "restart all components"
- * @method doRestartAllComponents
- */
- doRestartAllComponents: function() {
- var self = this;
- var components = this.get('serviceActiveComponents');
- var componentsLength = components == null ? 0 : components.get('length');
- if (componentsLength > 0) {
- App.showConfirmationPopup(function() {
- batchUtils.restartHostComponents(components, Em.I18n.t('rollingrestart.context.allOnSelectedHost').format(self.get('content.hostName')));
- });
- }
- },
- /**
- * Deletion of hosts not supported for this version
- * @method validateAndDeleteHost
- */
- validateAndDeleteHost: function () {
- if (!App.supports.deleteHost) {
- return;
- }
- var stoppedStates = [App.HostComponentStatus.stopped,
- App.HostComponentStatus.install_failed,
- App.HostComponentStatus.upgrade_failed,
- App.HostComponentStatus.init,
- App.HostComponentStatus.unknown];
- var masterComponents = [];
- var runningComponents = [];
- var unknownComponents = [];
- var nonDeletableComponents = [];
- var lastComponents = [];
- var componentsOnHost = this.get('content.hostComponents');
- var allComponents = App.HostComponent.find();
- var zkServerInstalled = false;
- if (componentsOnHost && componentsOnHost.get('length') > 0) {
- componentsOnHost.forEach(function (cInstance) {
- if (cInstance.get('componentName') === 'ZOOKEEPER_SERVER') {
- zkServerInstalled = true;
- }
- if (allComponents.filterProperty('componentName', cInstance.get('componentName')).get('length') === 1) {
- lastComponents.push(cInstance.get('displayName'));
- }
- var workStatus = cInstance.get('workStatus');
- if (cInstance.get('isMaster') && !cInstance.get('isDeletable')) {
- masterComponents.push(cInstance.get('displayName'));
- }
- if (stoppedStates.indexOf(workStatus) < 0) {
- runningComponents.push(cInstance.get('displayName'));
- }
- if (!cInstance.get('isDeletable')) {
- nonDeletableComponents.push(cInstance.get('displayName'));
- }
- if (workStatus === App.HostComponentStatus.unknown) {
- unknownComponents.push(cInstance.get('displayName'));
- }
- });
- }
- if (masterComponents.length > 0) {
- this.raiseDeleteComponentsError(masterComponents, 'masterList');
- return;
- } else if (nonDeletableComponents.length > 0) {
- this.raiseDeleteComponentsError(nonDeletableComponents, 'nonDeletableList');
- return;
- } else if (runningComponents.length > 0) {
- this.raiseDeleteComponentsError(runningComponents, 'runningList');
- return;
- }
- if (zkServerInstalled) {
- var self = this;
- App.showConfirmationPopup(function() {
- self._doDeleteHost(unknownComponents, lastComponents);
- }, Em.I18n.t('hosts.host.addComponent.deleteHostWithZooKeeper'));
- }
- else {
- this._doDeleteHost(unknownComponents, lastComponents);
- }
- },
- /**
- * Show popup with info about reasons why host can't be deleted
- * @param {string[]} components
- * @param {string} type
- * @method raiseDeleteComponentsError
- */
- raiseDeleteComponentsError: function (components, type) {
- App.ModalPopup.show({
- header: Em.I18n.t('hosts.cant.do.popup.title'),
- type: type,
- showBodyEnd: function() {
- return this.get('type') === 'runningList' || this.get('type') === 'masterList';
- }.property(),
- components: components,
- componentsStr: function() {
- return this.get('components').join(", ");
- }.property(),
- componentsBody: function() {
- return Em.I18n.t('hosts.cant.do.popup.'+type+'.body').format(this.get('components').length);
- }.property(),
- componentsBodyEnd: function() {
- if (this.get('showBodyEnd')) {
- return Em.I18n.t('hosts.cant.do.popup.'+type+'.body.end');
- }
- return '';
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/raiseDeleteComponentErrorPopup')
- }),
- secondary: null
- })
- },
- /**
- * Show confirmation popup to delete host
- * @param {string[]} unknownComponents
- * @param {string[]} lastComponents
- * @method _doDeleteHost
- */
- _doDeleteHost: function(unknownComponents,lastComponents) {
- var self = this;
- App.ModalPopup.show({
- header: Em.I18n.t('hosts.delete.popup.title'),
- deletePopupBody: function() {
- return Em.I18n.t('hosts.delete.popup.body').format(self.get('content.publicHostName'));
- }.property(),
- lastComponent: function() {
- if (lastComponents && lastComponents.length) {
- this.set('isChecked', false);
- return true;
- } else {
- this.set('isChecked', true);
- return false;
- }
- }.property(),
- disablePrimary: function () {
- return !this.get('isChecked');
- }.property('isChecked'),
- isChecked: false,
- lastComponentError: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.delete.popup.body.msg4').format(lastComponents))
- }),
- unknownComponents: function() {
- if (unknownComponents && unknownComponents.length) {
- return unknownComponents.join(", ");
- }
- return '';
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/doDeleteHostPopup')
- }),
- onPrimary: function() {
- self.set('fromDeleteHost', true);
- var allComponents = self.get('content.hostComponents');
- var deleteError = null;
- allComponents.forEach(function(component){
- if (!deleteError) {
- deleteError = self._doDeleteHostComponent(component);
- }
- });
- if (!deleteError) {
- App.ajax.send({
- name: 'host.delete',
- sender: this,
- data: {
- hostName: self.get('content.hostName')
- },
- success: 'deleteHostSuccessCallback',
- error: 'deleteHostErrorCallback'
- });
- }
- else {
- this.hide();
- deleteError.xhr.responseText = "{\"message\": \"" + deleteError.xhr.statusText + "\"}";
- App.ajax.defaultErrorHandler(deleteError.xhr, deleteError.url, deleteError.method, deleteError.xhr.status);
- }
- },
- deleteHostSuccessCallback: function(data) {
- var dialogSelf = this;
- App.router.get('updateController').updateHost(function(){
- self.loadConfigs();
- dialogSelf.hide();
- App.router.transitionTo('hosts.index');
- });
- },
- deleteHostErrorCallback: function (xhr, textStatus, errorThrown, opt) {
- console.log('Error deleting host.');
- console.log(textStatus);
- console.log(errorThrown);
- xhr.responseText = "{\"message\": \"" + xhr.statusText + "\"}";
- self.loadConfigs();
- this.hide();
- App.ajax.defaultErrorHandler(xhr, opt.url, 'DELETE', xhr.status);
- }
- })
- },
- /**
- * Send command to server to restart all host components with stale configs
- * @method restartAllStaleConfigComponents
- */
- restartAllStaleConfigComponents: function() {
- var self = this;
- App.showConfirmationPopup(function () {
- var staleComponents = self.get('content.componentsWithStaleConfigs');
- batchUtils.restartHostComponents(staleComponents, Em.I18n.t('rollingrestart.context.allWithStaleConfigsOnSelectedHost').format(self.get('content.hostName')));
- });
- },
- /**
- * open Reassign Master Wizard with selected component
- * @param {object} event
- * @method moveComponent
- */
- moveComponent: function (event) {
- App.showConfirmationPopup(function() {
- var component = event.context;
- var reassignMasterController = App.router.get('reassignMasterController');
- reassignMasterController.saveComponentToReassign(component);
- reassignMasterController.getSecurityStatus();
- reassignMasterController.setCurrentStep('1');
- App.router.transitionTo('reassign');
- });
- },
- /**
- * Restart clients host components to apply config changes
- * @param {object} event
- * @method refreshConfigs
- */
- refreshConfigs: function(event) {
- var self = this;
- var components = event.context.filter(function(component) {
- return component.get('staleConfigs');
- });
- if (components.get('length') > 0) {
- App.showConfirmationPopup(function() {
- batchUtils.restartHostComponents(components, Em.I18n.t('rollingrestart.context.allClientsOnSelectedHost').format(self.get('content.hostName')));
- });
- }
- }
- });
|