123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940 |
- /**
- * 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 validator = require('utils/validator');
- var hostsManagement = require('utils/hosts');
- var numberUtils = require('utils/number_utils');
- App.ManageConfigGroupsController = Em.Controller.extend(App.ConfigOverridable, {
- name: 'manageConfigGroupsController',
- /**
- * Determines if needed data is already loaded
- * Loading chain starts at <code>loadHosts</code> and is complete on the <code>loadConfigGroups</code> (if user on
- * the Installer) or on the <code>_onLoadConfigGroupsSuccess</code> (otherwise)
- * @type {boolean}
- */
- isLoaded: false,
- /**
- * Determines if user currently is on the Cluster Installer
- * @type {boolean}
- */
- isInstaller: false,
- /**
- * Determines if user currently is on the Add Service Wizard
- * @type {boolean}
- */
- isAddService: false,
- /**
- * Current service name
- * @type {string}
- */
- serviceName: null,
- /**
- * @type {App.ConfigGroup[]}
- */
- configGroups: [],
- /**
- * @type {App.ConfigGroup[]}
- */
- originalConfigGroups: [],
- /**
- * @type {App.ConfigGroup}
- */
- selectedConfigGroup: null,
- /**
- * @type {string[]}
- */
- selectedHosts: [],
- /**
- * List of all hosts in the cluster
- * @type {{
- * id: string,
- * ip: string,
- * osType: string,
- * osArch: string,
- * hostName: string,
- * publicHostName: string,
- * cpu: number,
- * memory: number,
- * diskTotal: string,
- * diskFree: string,
- * disksMounted: number,
- * hostComponents: {
- * componentName: string,
- * displayName: string
- * }[]
- * }[]}
- */
- clusterHosts: [],
- /**
- * trigger <code>selectDefaultGroup</code> after group delete
- * @type {null}
- */
- groupDeleteTrigger: null,
- /**
- * List of available service components for <code>serviceName</code>
- * @type {{componentName: string, displayName: string, selected: boolean}[]}
- */
- componentsForFilter: function () {
- return App.StackServiceComponent.find().filterProperty('serviceName', this.get('serviceName')).map(function (component) {
- return Em.Object.create({
- componentName: component.get('componentName'),
- displayName: App.format.role(component.get('componentName')),
- selected: false
- });
- });
- }.property('serviceName'),
- /**
- * Determines when host may be deleted from config group
- * @type {boolean}
- */
- isDeleteHostsDisabled: function () {
- var selectedConfigGroup = this.get('selectedConfigGroup');
- if (selectedConfigGroup) {
- return selectedConfigGroup.get('isDefault') || this.get('selectedHosts').length === 0;
- }
- return true;
- }.property('selectedConfigGroup', 'selectedConfigGroup.hosts.length', 'selectedHosts.length'),
- /**
- * Map with modified/deleted/created config groups
- * @type {{
- * toClearHosts: App.ConfigGroup[],
- * toDelete: App.ConfigGroup[],
- * toSetHosts: App.ConfigGroup[],
- * toCreate: App.ConfigGroup[]
- * }}
- */
- hostsModifiedConfigGroups: {},
- /**
- * Check when some config group was changed and updates <code>hostsModifiedConfigGroups</code> once
- * @method hostsModifiedConfigGroupsObs
- */
- hostsModifiedConfigGroupsObs: function() {
- Em.run.once(this, this.hostsModifiedConfigGroupsObsOnce);
- }.observes('selectedConfigGroup.hosts.@each', 'selectedConfigGroup.hosts.length', 'selectedConfigGroup.description', 'configGroups', 'isLoaded'),
- /**
- * Update <code>hostsModifiedConfigGroups</code>-value
- * Called once in the <code>hostsModifiedConfigGroupsObs</code>
- * @method hostsModifiedConfigGroupsObsOnce
- * @returns {boolean}
- */
- hostsModifiedConfigGroupsObsOnce: function() {
- if (!this.get('isLoaded')) {
- return false;
- }
- var groupsToClearHosts = [];
- var groupsToDelete = [];
- var groupsToSetHosts = [];
- var groupsToCreate = [];
- var groups = this.get('configGroups');
- var originalGroups = [];
- var originalGroupsMap = {};
- this.get('originalConfigGroups').forEach(function(item){
- if (!item.is_default) {
- originalGroupsMap[item.id] = item;
- originalGroups.push(item);
- }
- }, this);
- groups.forEach(function (groupRecord) {
- if (!groupRecord.get('isDefault')) {
- var originalGroup = originalGroupsMap[groupRecord.get('id')];
- if (originalGroup) {
- if (!(JSON.stringify(groupRecord.get('hosts').slice().sort()) === JSON.stringify(originalGroup.hosts.sort()))) {
- groupsToClearHosts.push(groupRecord);
- if (groupRecord.get('hosts').length) {
- groupsToSetHosts.push(groupRecord);
- }
- // should update name or description
- } else if (groupRecord.get('description') !== originalGroup.description || groupRecord.get('name') !== originalGroup.name) {
- groupsToSetHosts.push(groupRecord);
- }
- delete originalGroupsMap[groupRecord.get('id')];
- } else {
- groupsToCreate.push({
- id: groupRecord.get('id'),
- config_group_id: groupRecord.get('configGroupId'),
- name: groupRecord.get('name'),
- description: groupRecord.get('description'),
- hosts: groupRecord.get('hosts').slice(0),
- service_id: groupRecord.get('serviceName'),
- desired_configs: groupRecord.get('desiredConfigs')
- });
- }
- }
- });
- //groups to delete
- for (var id in originalGroupsMap) {
- groupsToDelete.push(App.ServiceConfigGroup.find(id));
- }
- this.set('hostsModifiedConfigGroups', {
- toClearHosts: groupsToClearHosts,
- toDelete: groupsToDelete,
- toSetHosts: groupsToSetHosts,
- toCreate: groupsToCreate,
- initialGroups: originalGroups
- });
- },
- /**
- * Determines if some changes were done with config groups
- * @use hostsModifiedConfigGroups
- * @type {boolean}
- */
- isHostsModified: function () {
- if (!this.get('isLoaded')) {
- return false;
- }
- var ignoreKeys = ['initialGroups'];
- var modifiedGroups = this.get('hostsModifiedConfigGroups');
- return Em.keys(modifiedGroups).map(function (key) {
- return ignoreKeys.contains(key) ? 0 : Em.get(modifiedGroups[key], 'length');
- }).reduce(Em.sum) > 0;
- }.property('hostsModifiedConfigGroups'),
- /**
- * Resort config groups according to order:
- * default group first, other - last
- * @method resortConfigGroup
- */
- resortConfigGroup: function() {
- var configGroups = Em.copy(this.get('configGroups'));
- if(configGroups.length < 2) return;
- var defaultConfigGroup = configGroups.findProperty('isDefault');
- configGroups.removeObject(defaultConfigGroup);
- var sorted = [defaultConfigGroup].concat(configGroups.sortProperty('name'));
- this.removeObserver('configGroups.@each.name', this, 'resortConfigGroup');
- this.set('configGroups', sorted);
- this.addObserver('configGroups.@each.name', this, 'resortConfigGroup');
- }.observes('configGroups.@each.name'),
- /**
- * Load hosts from server or
- * get them from installerController if user on the install wizard
- * get them from isAddServiceController if user on the add service wizard
- * @method loadHosts
- */
- loadHosts: function() {
- this.set('isLoaded', false);
- if (this.get('isInstaller')) {
- var allHosts = this.get('isAddService') ? App.router.get('addServiceController').get('allHosts') : App.router.get('installerController').get('allHosts');
- this.set('clusterHosts', allHosts);
- this.loadConfigGroups(this.get('serviceName'));
- }
- else {
- this.loadHostsFromServer();
- this.loadConfigGroups(this.get('serviceName'));
- }
- },
- /**
- * Request all hosts directly from server
- * @method loadHostsFromServer
- * @return {$.ajax}
- */
- loadHostsFromServer: function() {
- return App.ajax.send({
- name: 'hosts.config_groups',
- sender: this,
- data: {},
- success: '_loadHostsFromServerSuccessCallback',
- error: '_loadHostsFromServerErrorCallback'
- });
- },
- /**
- * Success-callback for <code>loadHostsFromServer</code>
- * Parse hosts response and wrap them into Ember.Object
- * @param {object} data
- * @method _loadHostsFromServerSuccessCallback
- * @private
- */
- _loadHostsFromServerSuccessCallback: function (data) {
- var wrappedHosts = [];
- data.items.forEach(function (host) {
- var hostComponents = [];
- var diskInfo = host.Hosts.disk_info.filter(function(item) {
- return /^ext|^ntfs|^fat|^xfs/i.test(item.type);
- });
- if (diskInfo.length) {
- diskInfo = diskInfo.reduce(function(a, b) {
- return {
- available: parseInt(a.available) + parseInt(b.available),
- size: parseInt(a.size) + parseInt(b.size)
- };
- });
- }
- host.host_components.forEach(function (hostComponent) {
- hostComponents.push(Em.Object.create({
- componentName: hostComponent.HostRoles.component_name,
- displayName: App.format.role(hostComponent.HostRoles.component_name)
- }));
- }, this);
- wrappedHosts.pushObject(Em.Object.create({
- id: host.Hosts.host_name,
- ip: host.Hosts.ip,
- osType: host.Hosts.os_type,
- osArch: host.Hosts.os_arch,
- hostName: host.Hosts.host_name,
- publicHostName: host.Hosts.public_host_name,
- cpu: host.Hosts.cpu_count,
- memory: host.Hosts.total_mem,
- diskTotal: numberUtils.bytesToSize(diskInfo.size, 0, undefined, 1024),
- diskFree: numberUtils.bytesToSize(diskInfo.available, 0, undefined, 1024),
- disksMounted: host.Hosts.disk_info.length,
- hostComponents: hostComponents
- }
- ));
- }, this);
- this.set('clusterHosts', wrappedHosts);
- },
- /**
- * Error-callback for <code>loadHostsFromServer</code>
- * @method _loadHostsFromServerErrorCallback
- * @private
- */
- _loadHostsFromServerErrorCallback: function () {
- this.set('clusterHosts', []);
- },
- /**
- * Load config groups from server if user is on the already installed cluster
- * If not - use loaded data form wizardStep7Controller
- * @param {string} serviceName
- * @method loadConfigGroups
- */
- loadConfigGroups: function (serviceName) {
- if (this.get('isInstaller')) {
- var configGroups = App.router.get('wizardStep7Controller.selectedService.configGroups').slice(0);
- var originalConfigGroups = this.generateOriginalConfigGroups(configGroups);
- this.setProperties({
- configGroups: configGroups,
- originalConfigGroups: originalConfigGroups,
- isLoaded: true
- });
- }
- else {
- this.set('serviceName', serviceName);
- App.ajax.send({
- name: 'service.load_config_groups',
- data: {
- serviceName: serviceName
- },
- sender: this,
- success: '_onLoadConfigGroupsSuccess'
- });
- }
- },
- /**
- * Success-callback for <code>loadConfigGroups</code>
- * @param {object} data
- * @private
- * @method _onLoadConfigGroupsSuccess
- */
- _onLoadConfigGroupsSuccess: function (data) {
- var serviceName = this.get('serviceName');
- App.configGroupsMapper.map(data, false, [serviceName]);
- var configGroups = App.ServiceConfigGroup.find().filterProperty('serviceName', serviceName);
- var rawConfigGroups = this.generateOriginalConfigGroups(configGroups);
- var groupToTypeToTagMap = {};
- rawConfigGroups.forEach(function (item) {
- if (Array.isArray(item.desired_configs)) {
- item.desired_configs.forEach(function (config) {
- if (!groupToTypeToTagMap[item.name]) {
- groupToTypeToTagMap[item.name] = {};
- }
- groupToTypeToTagMap[item.name][config.type] = config.tag;
- });
- }
- });
- this.set('configGroups', configGroups);
- this.set('originalConfigGroups', rawConfigGroups);
- this.loadProperties(groupToTypeToTagMap);
- this.set('isLoaded', true);
- },
- /**
- *
- * @param {Array} configGroups
- * @returns {Array}
- */
- generateOriginalConfigGroups: function(configGroups) {
- return configGroups.map(function (item) {
- return {
- id: item.get('id'),
- config_group_id: item.get('configGroupId'),
- name: item.get('name'),
- service_name: item.get('serviceName'),
- description: item.get('description'),
- hosts: item.get('hosts').slice(0),
- service_id: item.get('serviceName'),
- desired_configs: item.get('desiredConfigs'),
- is_default: item.get('isDefault'),
- child_config_groups: item.get('childConfigGroups') ? item.get('childConfigGroups').mapProperty('id') : [],
- parent_config_group_id: item.get('parentConfigGroup.id'),
- properties: item.get('properties')
- };
- });
- },
- /**
- *
- * @param {object} groupToTypeToTagMap
- * @method loadProperties
- */
- loadProperties: function (groupToTypeToTagMap) {
- var typeTagToGroupMap = {};
- var urlParams = [];
- for (var group in groupToTypeToTagMap) {
- var overrideTypeTags = groupToTypeToTagMap[group];
- for (var type in overrideTypeTags) {
- var tag = overrideTypeTags[type];
- typeTagToGroupMap[type + "///" + tag] = group;
- urlParams.push('(type=' + type + '&tag=' + tag + ')');
- }
- }
- var params = urlParams.join('|');
- if (urlParams.length) {
- App.ajax.send({
- name: 'config.host_overrides',
- sender: this,
- data: {
- params: params,
- typeTagToGroupMap: typeTagToGroupMap
- },
- success: '_onLoadPropertiesSuccess'
- });
- }
- },
- /**
- * Success-callback for <code>loadProperties</code>
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @private
- * @method _onLoadPropertiesSuccess
- */
- _onLoadPropertiesSuccess: function (data, opt, params) {
- data.items.forEach(function (configs) {
- var typeTagConfigs = [];
- var group = params.typeTagToGroupMap[configs.type + "///" + configs.tag];
- for (var config in configs.properties) {
- typeTagConfigs.push({
- name: config,
- value: configs.properties[config]
- });
- }
- this.get('configGroups').findProperty('name', group).set('properties', typeTagConfigs);
- }, this);
- },
- /**
- * Show popup with properties overridden in the selected config group
- * @method showProperties
- */
- showProperties: function () {
- var properies = this.get('selectedConfigGroup.propertiesList').htmlSafe();
- if (properies) {
- App.showAlertPopup(Em.I18n.t('services.service.config_groups_popup.properties'), properies);
- }
- },
- /**
- * Show popup with hosts to add to the selected config group
- * @returns {boolean}
- * @method addHosts
- */
- addHosts: function () {
- if (this.get('selectedConfigGroup.isAddHostsDisabled')) {
- return false;
- }
- var availableHosts = this.get('selectedConfigGroup.availableHosts');
- var popupDescription = {
- header: Em.I18n.t('hosts.selectHostsDialog.title'),
- dialogMessage: Em.I18n.t('hosts.selectHostsDialog.message').format(this.get('selectedConfigGroup.displayName'))
- };
- hostsManagement.launchHostsSelectionDialog(availableHosts, [], false, this.get('componentsForFilter'), this.addHostsCallback.bind(this), popupDescription);
- },
- /**
- * Remove selected hosts from default group (<code>selectedConfigGroup.parentConfigGroup</code>) and add them to the <code>selectedConfigGroup</code>
- * @param {string[]} selectedHosts
- * @method addHostsCallback
- */
- addHostsCallback: function (selectedHosts) {
- if (selectedHosts) {
- var group = this.get('selectedConfigGroup');
- var parentGroupHosts = group.get('parentConfigGroup.hosts');
- var newHostsForParentGroup = parentGroupHosts.filter(function(hostName) {
- return !selectedHosts.contains(hostName);
- });
- group.get('hosts').pushObjects(selectedHosts);
- group.set('parentConfigGroup.hosts', newHostsForParentGroup);
- }
- },
- /**
- * Delete hosts from <code>selectedConfigGroup</code> and move them to the Default group (<code>selectedConfigGroup.parentConfigGroup</code>)
- * @method deleteHosts
- */
- deleteHosts: function () {
- if (this.get('isDeleteHostsDisabled')) {
- return;
- }
- var hosts = this.get('selectedHosts').slice();
- var newHosts = [];
- this.get('selectedConfigGroup.parentConfigGroup.hosts').pushObjects(hosts);
- this.get('selectedConfigGroup.hosts').forEach(function(host) {
- if (!hosts.contains(host)) {
- newHosts.pushObject(host);
- }
- });
- this.set('selectedConfigGroup.hosts', newHosts);
- this.set('selectedHosts', []);
- },
- /**
- * show popup for confirmation delete config group
- * @method confirmDelete
- */
- confirmDelete: function () {
- var self = this;
- App.showConfirmationPopup(function() {
- self.deleteConfigGroup();
- });
- },
- /**
- * delete selected config group (stored in the <code>selectedConfigGroup</code>)
- * then select default config group
- * @method deleteConfigGroup
- */
- deleteConfigGroup: function () {
- var selectedConfigGroup = this.get('selectedConfigGroup');
- if (this.get('isDeleteGroupDisabled')) {
- return;
- }
- //move hosts of group to default group (available hosts)
- this.set('selectedHosts', selectedConfigGroup.get('hosts'));
- this.deleteHosts();
- this.get('configGroups').removeObject(selectedConfigGroup);
- this.set('selectedConfigGroup', this.get('configGroups').findProperty('isDefault'));
- this.propertyDidChange('groupDeleteTrigger');
- },
- /**
- * rename new config group (not allowed for default group)
- * @method renameConfigGroup
- */
- renameConfigGroup: function () {
- if(this.get('selectedConfigGroup.isDefault')) {
- return;
- }
- var self = this;
- var renameGroupPopup = App.ModalPopup.show({
- header: Em.I18n.t('services.service.config_groups.rename_config_group_popup.header'),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/service/new_config_group')
- }),
- configGroupName: self.get('selectedConfigGroup.name'),
- configGroupDesc: self.get('selectedConfigGroup.description'),
- warningMessage: null,
- isDescriptionDirty: false,
- validate: function () {
- var warningMessage = '';
- var originalGroup = self.get('selectedConfigGroup');
- var groupName = this.get('configGroupName').trim();
- if (originalGroup.get('description') !== this.get('configGroupDesc') && !this.get('isDescriptionDirty')) {
- this.set('isDescriptionDirty', true);
- }
- if (originalGroup.get('name').trim() === groupName) {
- if (this.get('isDescriptionDirty')) {
- warningMessage = '';
- } else {
- warningMessage = Em.I18n.t("config.group.selection.dialog.err.name.exists");
- }
- } else {
- if (self.get('configGroups').mapProperty('name').contains(groupName)) {
- warningMessage = Em.I18n.t("config.group.selection.dialog.err.name.exists");
- }
- else if (groupName && !validator.isValidConfigGroupName(groupName)) {
- warningMessage = Em.I18n.t("form.validator.configGroupName");
- }
- }
- this.set('warningMessage', warningMessage);
- }.observes('configGroupName', 'configGroupDesc'),
- disablePrimary: function () {
- return !(this.get('configGroupName').trim().length > 0 && (this.get('warningMessage') !== null && !this.get('warningMessage')));
- }.property('warningMessage', 'configGroupName', 'configGroupDesc'),
- onPrimary: function () {
- self.set('selectedConfigGroup.name', this.get('configGroupName'));
- self.set('selectedConfigGroup.description', this.get('configGroupDesc'));
- this.hide();
- }
- });
- this.set('renameGroupPopup', renameGroupPopup);
- },
- /**
- * add new config group (or copy existing)
- * @param {boolean} duplicated true - copy <code>selectedConfigGroup</code>, false - create a new one
- * @method addConfigGroup
- */
- addConfigGroup: function (duplicated) {
- duplicated = (duplicated === true);
- var self = this;
- var addGroupPopup = App.ModalPopup.show({
- header: Em.I18n.t('services.service.config_groups.add_config_group_popup.header'),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/service/new_config_group')
- }),
- configGroupName: duplicated ? self.get('selectedConfigGroup.name') + ' Copy' : "",
- configGroupDesc: duplicated ? self.get('selectedConfigGroup.description') + ' (Copy)' : "",
- warningMessage: '',
- didInsertElement: function(){
- this.validate();
- this.$('input').focus();
- this.fitZIndex();
- },
- validate: function () {
- var warningMessage = '';
- var groupName = this.get('configGroupName').trim();
- if (self.get('configGroups').mapProperty('name').contains(groupName)) {
- warningMessage = Em.I18n.t("config.group.selection.dialog.err.name.exists");
- }
- else if (groupName && !validator.isValidConfigGroupName(groupName)) {
- warningMessage = Em.I18n.t("form.validator.configGroupName");
- }
- this.set('warningMessage', warningMessage);
- }.observes('configGroupName'),
- disablePrimary: function () {
- return !(this.get('configGroupName').trim().length > 0 && !this.get('warningMessage'));
- }.property('warningMessage', 'configGroupName'),
- onPrimary: function () {
- var defaultConfigGroup = self.get('configGroups').findProperty('isDefault');
- var properties = [];
- var serviceName = self.get('serviceName');
- //temporarily id until real assigned by server
- var newGroupId = serviceName + "_NEW_" + self.get('configGroups.length');
- App.store.load(App.ServiceConfigGroup, {
- id: newGroupId,
- name: this.get('configGroupName').trim(),
- description: this.get('configGroupDesc'),
- isDefault: false,
- parent_config_group_id: App.ServiceConfigGroup.getParentConfigGroupId(serviceName),
- service_id: serviceName,
- service_name: serviceName,
- hosts: [],
- configSiteTags: [],
- properties: []
- });
- App.store.commit();
- var childConfigGroups = defaultConfigGroup.get('childConfigGroups').mapProperty('id');
- childConfigGroups.push(newGroupId);
- App.store.load(App.ServiceConfigGroup, App.configGroupsMapper.generateDefaultGroup(self.get('serviceName'), defaultConfigGroup.get('hosts'), childConfigGroups));
- App.store.commit();
- if (duplicated) {
- self.get('selectedConfigGroup.properties').forEach(function(item) {
- var property = App.ServiceConfigProperty.create($.extend(false, {}, item));
- property.set('group', App.ServiceConfigGroup.find(newGroupId));
- properties.push(property);
- });
- App.ServiceConfigGroup.find(newGroupId).set('properties', properties);
- }
- self.get('configGroups').pushObject(App.ServiceConfigGroup.find(newGroupId));
- this.hide();
- }
- });
- this.set('addGroupPopup', addGroupPopup);
- },
- /**
- * Duplicate existing config group
- * @method duplicateConfigGroup
- */
- duplicateConfigGroup: function() {
- this.addConfigGroup(true);
- },
- /**
- * Show popup with config groups
- * User may edit/create/delete them
- * @param {Em.Controller} controller
- * @param {App.Service} service
- * @returns {App.ModalPopup}
- * @method manageConfigurationGroups
- */
- manageConfigurationGroups: function (controller, service) {
- var configsController = this;
- var serviceData = (controller && controller.get('selectedService')) || service;
- var serviceName = serviceData.get('serviceName');
- var displayName = serviceData.get('displayName');
- this.setProperties({
- isInstaller: !!controller,
- serviceName: serviceName
- });
- if (controller) {
- configsController.set('isAddService', controller.get('content.controllerName') == 'addServiceController');
- }
- return App.ModalPopup.show({
- header: Em.I18n.t('services.service.config_groups_popup.header').format(displayName),
- bodyClass: App.MainServiceManageConfigGroupView.extend({
- serviceName: serviceName,
- displayName: displayName,
- controller: configsController
- }),
- classNames: ['sixty-percent-width-modal', 'manage-configuration-group-popup'],
- primary: Em.I18n.t('common.save'),
- subViewController: configsController,
- /**
- * handle onPrimary action particularly in wizard
- * @param {Em.Controller} controller
- * @param {object} modifiedConfigGroups
- */
- onPrimaryWizard: function (controller, modifiedConfigGroups) {
- controller.set('selectedService.configGroups', configsController.get('configGroups'));
- controller.selectedServiceObserver();
- if (controller.get('name') == "wizardStep7Controller") {
- if (controller.get('selectedService.selected') === false && modifiedConfigGroups.toDelete.length > 0) {
- controller.setGroupsToDelete(modifiedConfigGroups.toDelete);
- }
- configsController.persistConfigGroups();
- this.updateConfigGroupOnServicePage();
- }
- this.hide();
- },
- onClose: function () {
- //<code>_super</code> has to be called before <code>resetGroupChanges</code>
- var originalGroups = this.get('subViewController.originalConfigGroups').slice(0);
- this._super();
- this.resetGroupChanges(originalGroups);
- },
- onSecondary: function () {
- this.onClose();
- },
- /**
- * reset group changes made by user
- * @param {Array} originalGroups
- */
- resetGroupChanges: function (originalGroups) {
- if (this.get('subViewController.isHostsModified')) {
- App.ServiceConfigGroup.find().clear();
- App.store.commit();
- App.store.loadMany(App.ServiceConfigGroup, originalGroups);
- App.store.commit();
- }
- },
- /**
- * run requests which delete config group and clear its hosts
- * @param {Function} finishFunction
- * @param {object} modifiedConfigGroups
- */
- runClearCGQueue: function (finishFunction, modifiedConfigGroups) {
- var counter = 0;
- var dfd = $.Deferred();
- var doneFunction = function (xhr, text, errorThrown) {
- counter--;
- if (counter === 0) dfd.resolve();
- finishFunction(xhr, text, errorThrown);
- };
- modifiedConfigGroups.toClearHosts.forEach(function (cg) {
- counter++;
- configsController.updateConfigurationGroup(cg, doneFunction, doneFunction)
- }, this);
- modifiedConfigGroups.toDelete.forEach(function (cg) {
- counter++;
- configsController.deleteConfigurationGroup(cg, doneFunction, doneFunction);
- }, this);
- if (counter === 0) dfd.resolve();
- return dfd.promise();
- },
- /**
- * run requests which change properties of config group
- * @param {Function} finishFunction
- * @param {object} modifiedConfigGroups
- */
- runModifyCGQueue: function (finishFunction, modifiedConfigGroups) {
- var counter = 0;
- var dfd = $.Deferred();
- var doneFunction = function (xhr, text, errorThrown) {
- counter--;
- if (counter === 0) dfd.resolve();
- finishFunction(xhr, text, errorThrown);
- };
- modifiedConfigGroups.toSetHosts.forEach(function (cg) {
- counter++;
- configsController.updateConfigurationGroup(cg, doneFunction, doneFunction);
- }, this);
- if (counter === 0) dfd.resolve();
- return dfd.promise();
- },
- /**
- * run requests which create new config group
- * @param {Function} finishFunction
- * @param {object} modifiedConfigGroups
- */
- runCreateCGQueue: function (finishFunction, modifiedConfigGroups) {
- var counter = 0;
- var dfd = $.Deferred();
- var doneFunction = function (xhr, text, errorThrown) {
- counter--;
- if (counter === 0) dfd.resolve();
- finishFunction(xhr, text, errorThrown);
- };
- modifiedConfigGroups.toCreate.forEach(function (cg) {
- counter++;
- configsController.postNewConfigurationGroup(cg, doneFunction);
- }, this);
- if (counter === 0) dfd.resolve();
- return dfd.promise();
- },
- onPrimary: function () {
- var modifiedConfigGroups = configsController.get('hostsModifiedConfigGroups');
- var errors = [];
- var self = this;
- var finishFunction = function (xhr, text, errorThrown) {
- if (xhr && errorThrown) {
- var error = xhr.status + "(" + errorThrown + ") ";
- try {
- var json = $.parseJSON(xhr.responseText);
- error += json.message;
- } catch (err) {
- }
- errors.push(error);
- }
- };
- // Save modified config-groups
- if (controller) {
- //called only in Wizard
- return this.onPrimaryWizard(controller, modifiedConfigGroups);
- }
- this.runClearCGQueue(finishFunction, modifiedConfigGroups).done(function () {
- self.runModifyCGQueue(finishFunction, modifiedConfigGroups).done(function () {
- self.runCreateCGQueue(finishFunction, modifiedConfigGroups).done(function () {
- if (errors.length > 0) {
- self.get('subViewController').set('errorMessage', errors.join(". "));
- } else {
- self.updateConfigGroupOnServicePage();
- self.hide();
- }
- });
- });
- });
- },
- updateConfigGroupOnServicePage: function () {
- var selectedConfigGroup = configsController.get('selectedConfigGroup');
- var managedConfigGroups = configsController.get('configGroups').slice(0);
- if (!controller) {
- controller = App.router.get('mainServiceInfoConfigsController');
- //controller.set('configGroups', managedConfigGroups);
- controller.loadConfigGroups([controller.get('content.serviceName')]);
- } else {
- controller.set('selectedService.configGroups', managedConfigGroups);
- }
- var selectEventObject = {};
- //check whether selectedConfigGroup exists
- if (selectedConfigGroup && controller.get('configGroups').someProperty('name', selectedConfigGroup.get('name'))) {
- selectEventObject.context = selectedConfigGroup;
- } else {
- selectEventObject.context = managedConfigGroups.findProperty('isDefault', true);
- }
- controller.selectConfigGroup(selectEventObject);
- },
- updateButtons: function () {
- var modified = this.get('subViewController.isHostsModified');
- this.set('disablePrimary', !modified);
- }.observes('subViewController.isHostsModified'),
- didInsertElement: function () {
- this.fitZIndex();
- }
- });
- }
- });
|