123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /**
- * 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.MainConfigHistoryController = Em.ArrayController.extend(App.TableServerMixin, {
- name: 'mainConfigHistoryController',
- dataSource: App.ServiceConfigVersion.find(),
- content: function () {
- return this.get('dataSource').filterProperty('isRequested');
- }.property('dataSource.@each.isRequested'),
- isPolling: false,
- totalCount: 0,
- filteredCount: 0,
- timeoutRef: null,
- resetStartIndex: true,
- mockUrl: '/data/configurations/service_versions.json',
- realUrl: function () {
- return App.apiPrefix + '/clusters/' + App.get('clusterName') + '/configurations/service_config_versions?<parameters>fields=service_config_version,user,group_id,group_name,is_current,createtime,service_name,hosts,service_config_version_note&minimal_response=true';
- }.property('App.clusterName'),
- /**
- * associations between host property and column index
- * @type {Array}
- */
- colPropAssoc: function () {
- var associations = [];
- associations[1] = 'serviceVersion';
- associations[2] = 'configGroup';
- associations[3] = 'createTime';
- associations[4] = 'author';
- associations[5] = 'notes';
- return associations;
- }.property(),
- filterProps: [
- {
- name: 'serviceVersion',
- key: 'service_name',
- type: 'EQUAL'
- },
- {
- name: 'configGroup',
- key: 'group_name',
- type: 'EQUAL'
- },
- {
- name: 'createTime',
- key: 'createtime',
- type: 'MORE'
- },
- {
- name: 'author',
- key: 'user',
- type: 'MATCH'
- },
- {
- name: 'notes',
- key: 'service_config_version_note',
- type: 'MATCH'
- }
- ],
- sortProps: [
- {
- name: 'serviceVersion',
- key: 'service_name'
- },
- {
- name: 'configGroup',
- key: 'group_name'
- },
- {
- name: 'createTime',
- key: 'createtime'
- },
- {
- name: 'author',
- key: 'user'
- },
- {
- name: 'notes',
- key: 'service_config_version_note'
- }
- ],
- modifiedFilter: Em.Object.create({
- content: [
- {
- value: 'Any',
- label: Em.I18n.t('any')
- },
- {
- value: 'Past 1 hour',
- label: 'Past 1 hour'
- },
- {
- value: 'Past 1 Day',
- label: 'Past 1 Day'
- },
- {
- value: 'Past 2 Days',
- label: 'Past 2 Days'
- },
- {
- value: 'Past 7 Days',
- label: 'Past 7 Days'
- },
- {
- value: 'Past 14 Days',
- label: 'Past 14 Days'
- },
- {
- value: 'Past 30 Days',
- label: 'Past 30 Days'
- }
- ],
- optionValue: 'Any',
- filterModified: function () {
- var time = "";
- var curTime = new Date().getTime();
- switch (this.get('optionValue.value')) {
- case 'Past 1 hour':
- time = curTime - 3600000;
- break;
- case 'Past 1 Day':
- time = curTime - 86400000;
- break;
- case 'Past 2 Days':
- time = curTime - 172800000;
- break;
- case 'Past 7 Days':
- time = curTime - 604800000;
- break;
- case 'Past 14 Days':
- time = curTime - 1209600000;
- break;
- case 'Past 30 Days':
- time = curTime - 2592000000;
- break;
- case 'Any':
- time = "";
- break;
- }
- this.set("actualValues", {
- endTime: '',
- startTime: time
- });
- }.observes('optionValue'),
- cancel: function () {
- this.set('optionValue', this.get('content').findProperty('value', 'Any'));
- },
- actualValues: Em.Object.create({
- startTime: "",
- endTime: ""
- })
- }),
- /**
- * load all data components required by config history table
- * - total counter of service config versions(called in parallel)
- * - current versions
- * - filtered versions
- * @return {*}
- */
- load: function () {
- var dfd = $.Deferred();
- this.updateTotalCounter();
- this.loadConfigVersionsToModel().done(function () {
- dfd.resolve();
- });
- return dfd.promise();
- },
- /**
- * get filtered service config versions from server and push it to model
- * @return {*}
- */
- loadConfigVersionsToModel: function () {
- var dfd = $.Deferred();
- var queryParams = this.getQueryParameters();
- App.HttpClient.get(this.getUrl(queryParams), App.serviceConfigVersionsMapper, {
- complete: function () {
- dfd.resolve();
- }
- });
- return dfd.promise();
- },
- updateTotalCounter: function () {
- return App.ajax.send({
- name: 'service.serviceConfigVersions.get.total',
- sender: this,
- data: {},
- success: 'updateTotalCounterSuccess'
- })
- },
- updateTotalCounterSuccess: function (data, opt, params) {
- this.set('totalCount', data.itemTotal);
- },
- getUrl: function (queryParams) {
- var params = '';
- if (App.get('testMode')) {
- return this.get('mockUrl');
- } else {
- if (queryParams) {
- params = App.router.get('updateController').computeParameters(queryParams);
- }
- return this.get('realUrl').replace('<parameters>', params);
- }
- },
- /**
- * request latest data from server and update content
- */
- doPolling: function () {
- var self = this;
- this.set('timeoutRef', setTimeout(function () {
- if (self.get('isPolling')) {
- self.load().done(function () {
- self.doPolling();
- })
- }
- }, App.componentsUpdateInterval));
- },
- /**
- * get sort properties from local db. A overridden funtion from parent
- * @return {Array}
- */
- getSortProps: function () {
- var savedSortConditions = App.db.getSortingStatuses(this.get('name')) || [],
- sortProperties = this.get('sortProps'),
- sortParams = [];
- savedSortConditions.forEach(function (sort) {
- var property = sortProperties.findProperty('name', sort.name);
- if (property && (sort.status === 'sorting_asc' || sort.status === 'sorting_desc')) {
- property.value = sort.status.replace('sorting_', '');
- property.type = 'SORT';
- if (property.name == 'serviceVersion'){
- property.key = "service_name." + sort.status.replace('sorting_', '') + ",service_config_version";
- property.value = "desc";
- }
- if (property.name == 'configGroup'){
- property.key = "group_name." + sort.status.replace('sorting_', '') + ",service_config_version";
- property.value = "desc";
- }
- sortParams.push(property);
- }
- });
- return sortParams;
- }
- });
|