123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /**
- * 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 stringUtils = require('utils/string_utils');
- require('controllers/main/service/info/configs');
- App.MainAdminMiscController = App.MainServiceInfoConfigsController.extend({
- name: 'mainAdminMiscController',
- users: null,
- content: Em.Object.create({
- serviceName: 'MISC'
- }),
- loadUsers: function () {
- this.set('selectedService', this.get('content.serviceName'));
- this.loadServiceConfig();
- },
- loadServiceConfig: function () {
- App.ajax.send({
- name: 'config.tags',
- sender: this,
- data: {
- serviceName: this.get('content.serviceName'),
- serviceConfigsDef: this.get('serviceConfigs').findProperty('serviceName', this.get('content.serviceName'))
- },
- success: 'loadServiceTagSuccess'
- });
- },
- loadServiceTagSuccess: function (data, opt, params) {
- var installedServices = App.Service.find().mapProperty("serviceName");
- var serviceConfigsDef = params.serviceConfigsDef;
- var serviceName = this.get('content.serviceName');
- var loadedClusterSiteToTagMap = {};
- for (var site in data.Clusters.desired_configs) {
- if (serviceConfigsDef.sites.indexOf(site) > -1) {
- loadedClusterSiteToTagMap[site] = data.Clusters.desired_configs[site]['tag'];
- }
- }
- this.setServiceConfigTags(loadedClusterSiteToTagMap);
- var configGroups = App.router.get('configurationController').getConfigsByTags(this.get('serviceConfigTags'));
- var configSet = App.config.mergePreDefinedWithLoaded(configGroups, [], this.get('serviceConfigTags'), serviceName);
- var misc_configs = configSet.globalConfigs.filterProperty('serviceName', this.get('selectedService')).filterProperty('category', 'Users and Groups').filterProperty('isVisible', true);
- misc_configs = App.config.miscConfigVisibleProperty(misc_configs, installedServices);
- var sortOrder = this.get('configs').filterProperty('serviceName', this.get('selectedService')).filterProperty('category', 'Users and Groups').filterProperty('isVisible', true).mapProperty('name');
- //stack, with version lower than 2.1, doesn't have Falcon service
- this.setProxyUserGroupLabel(misc_configs);
- this.set('users', this.sortByOrder(sortOrder, misc_configs));
- this.setContentProperty('hdfsUser', 'hdfs_user', misc_configs);
- this.setContentProperty('group', 'user_group', misc_configs);
- this.set('dataIsLoaded', true);
- },
- /**
- * set config value to property of "content"
- * @param key
- * @param configName
- * @param misc_configs
- * @return {Boolean}
- */
- setContentProperty: function (key, configName, misc_configs) {
- var content = this.get('content');
- if (key && configName && misc_configs.someProperty('name', configName) && content.get(key)) {
- content.set(key, misc_configs.findProperty('name', configName).get("value"));
- return true;
- }
- return false;
- },
- /**
- * sort miscellaneous configs by specific order
- * @param sortOrder
- * @param arrayToSort
- * @return {Array}
- */
- sortByOrder: function (sortOrder, arrayToSort) {
- var sorted = [];
- if (sortOrder && sortOrder.length > 0) {
- sortOrder.forEach(function (name) {
- var user = arrayToSort.findProperty('name', name);
- if (user) {
- sorted.push({
- isVisible: user.get('isVisible'),
- displayName: user.get('displayName'),
- value: user.get('value')
- });
- }
- });
- return sorted;
- } else {
- return arrayToSort;
- }
- },
- /**
- * set displayName of "proxyuser_group" depending on stack version
- * @param misc_configs
- */
- setProxyUserGroupLabel: function (misc_configs) {
- var proxyUserGroup = misc_configs.findProperty('name', 'proxyuser_group');
- if (proxyUserGroup && !App.get('isHadoop21Stack')) {
- proxyUserGroup.set('displayName', "Proxy group for Hive, WebHCat and Oozie");
- }
- }
- });
|