|
@@ -0,0 +1,364 @@
|
|
|
+/**
|
|
|
+ * 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.
|
|
|
+ */
|
|
|
+
|
|
|
+require('views/common/controls_view');
|
|
|
+
|
|
|
+var App = require('app');
|
|
|
+
|
|
|
+App.TestDbConnectionWidgetView = App.ConfigWidgetView.extend({
|
|
|
+ templateName: require('templates/common/configs/widgets/test_db_connection_widget'),
|
|
|
+ classNames: ['widget'],
|
|
|
+
|
|
|
+ /** @property {string} btnCaption - text for button **/
|
|
|
+ btnCaption: function () {
|
|
|
+ return this.get('config.stackConfigProperty.widget.display-name');
|
|
|
+ }.property('config.stackConfigProperty.widget.display-name'),
|
|
|
+ /** @property {string} responseCaption - text for status link **/
|
|
|
+ responseCaption: null,
|
|
|
+ /** @property {boolean} isConnecting - is request to server activated **/
|
|
|
+ isConnecting: false,
|
|
|
+ /** @property {boolean} isValidationPassed - check validation for required fields **/
|
|
|
+ isValidationPassed: null,
|
|
|
+ /** @property {string} db_type- name of current database **/
|
|
|
+ db_type: null,
|
|
|
+ /** @property {boolean} isRequestResolved - check for finished request to server **/
|
|
|
+ isRequestResolved: false,
|
|
|
+ /** @property {boolean} isConnectionSuccess - check for successful connection to database **/
|
|
|
+ isConnectionSuccess: null,
|
|
|
+ /** @property {string} responseFromServer - message from server response **/
|
|
|
+ responseFromServer: null,
|
|
|
+ /** @property {Object} ambariRequiredProperties - properties that need for custom action request **/
|
|
|
+ ambariRequiredProperties: null,
|
|
|
+ /** @property {Number} currentRequestId - current custom action request id **/
|
|
|
+ currentRequestId: null,
|
|
|
+ /** @property {Number} currentTaskId - current custom action task id **/
|
|
|
+ currentTaskId: null,
|
|
|
+ /** @property {jQuery.Deferred} request - current $.ajax request **/
|
|
|
+ request: null,
|
|
|
+ /** @property {Number} pollInterval - timeout interval for ajax polling **/
|
|
|
+ pollInterval: 3000,
|
|
|
+ /** @property {Object} logsPopup - popup with DB connection check info **/
|
|
|
+ logsPopup: null,
|
|
|
+ /** @property {Array} or {String} masterHostName: The name of hosts from which the db connection will happen**/
|
|
|
+ masterHostName: null,
|
|
|
+ /** @property {String} db_connection_url: The jdbc urlfor performing db connection**/
|
|
|
+ db_connection_url: null,
|
|
|
+ /** @property {String} user_name: The user name to be used for performing db connection**/
|
|
|
+ user_name: null,
|
|
|
+ /** @property {String} user_passwd: password for the user name to be used for performing db connection**/
|
|
|
+ user_passwd: null,
|
|
|
+
|
|
|
+ /** @property {boolean} isBtnDisabled - disable button on failed validation or active request **/
|
|
|
+ isBtnDisabled: function () {
|
|
|
+ return !this.get('requiredProperties').everyProperty('isValid') || this.get('isConnecting');
|
|
|
+ }.property('requiredProperties.@each.isValid', 'isConnecting'),
|
|
|
+ /** @property {object} requiredProperties - properties that necessary for database connection **/
|
|
|
+ requiredProperties: [],
|
|
|
+
|
|
|
+ /** Check validation and load ambari properties **/
|
|
|
+ didInsertElement: function () {
|
|
|
+ var requiredProperties = this.get('config.stackConfigProperty.widget.required-properties');
|
|
|
+ var serviceName = this.get('config.serviceName');
|
|
|
+ var serviceConfigs = this.get('controller.stepConfigs').findProperty('serviceName',serviceName).get('configs');
|
|
|
+ var requiredServiceConfigs = Object.keys(requiredProperties).map(function(key){
|
|
|
+ var split = requiredProperties[key].split('/');
|
|
|
+ var fileName = split[0] + '.xml';
|
|
|
+ var configName = split[1];
|
|
|
+ return serviceConfigs.filterProperty('filename',fileName).findProperty('name', configName);
|
|
|
+ }, this);
|
|
|
+
|
|
|
+ this.set('requiredProperties', requiredServiceConfigs);
|
|
|
+ this.setDbProperties(requiredProperties);
|
|
|
+ this.getAmbariProperties();
|
|
|
+ },
|
|
|
+
|
|
|
+ /** On view destroy **/
|
|
|
+ willDestroyElement: function () {
|
|
|
+ this.set('isConnecting', false);
|
|
|
+ this._super();
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This function is used to set Database name and master host name
|
|
|
+ * @param requiredProperties
|
|
|
+ */
|
|
|
+ setDbProperties: function(requiredProperties) {
|
|
|
+ var dbInfo = require('data/db_properties_info');
|
|
|
+ var dbProperties = {
|
|
|
+ 'db.connection.source.host' : 'masterHostName',
|
|
|
+ 'db.type' : 'db_type',
|
|
|
+ 'db.connection.user': 'user_name',
|
|
|
+ 'db.connection.password': 'user_passwd',
|
|
|
+ 'jdbc.driver.url': 'db_connection_url'
|
|
|
+ };
|
|
|
+
|
|
|
+ for (var key in dbProperties) {
|
|
|
+ var masterHostNameProperty = requiredProperties[key];
|
|
|
+ var split = masterHostNameProperty.split('/');
|
|
|
+ var fileName = split[0] + '.xml';
|
|
|
+ var configName = split[1];
|
|
|
+ var dbConfig = this.get('requiredProperties').filterProperty('filename',fileName).findProperty('name', configName);
|
|
|
+ if (key === 'db.type') {
|
|
|
+ dbConfig = dbInfo.dpPropertiesMap[dbConfig.value].db_type.toUpperCase();
|
|
|
+ }
|
|
|
+ this.set(dbProperties[key], dbConfig);
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Set up ambari properties required for custom action request
|
|
|
+ *
|
|
|
+ * @method getAmbariProperties
|
|
|
+ **/
|
|
|
+ getAmbariProperties: function () {
|
|
|
+ var clusterController = App.router.get('clusterController');
|
|
|
+ var _this = this;
|
|
|
+ if (!App.isEmptyObject(App.db.get('tmp', 'ambariProperties')) && !this.get('ambariProperties')) {
|
|
|
+ this.set('ambariProperties', App.db.get('tmp', 'ambariProperties'));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (App.isEmptyObject(clusterController.get('ambariProperties'))) {
|
|
|
+ clusterController.loadAmbariProperties().done(function (data) {
|
|
|
+ _this.formatAmbariProperties(data.RootServiceComponents.properties);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.formatAmbariProperties(clusterController.get('ambariProperties'));
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ formatAmbariProperties: function (properties) {
|
|
|
+ var defaults = {
|
|
|
+ threshold: "60",
|
|
|
+ ambari_server_host: location.hostname,
|
|
|
+ check_execute_list: "db_connection_check"
|
|
|
+ };
|
|
|
+ var properties = App.permit(properties, ['jdk.name', 'jdk_location', 'java.home']);
|
|
|
+ var renameKey = function (oldKey, newKey) {
|
|
|
+ if (properties[oldKey]) {
|
|
|
+ defaults[newKey] = properties[oldKey];
|
|
|
+ delete properties[oldKey];
|
|
|
+ }
|
|
|
+ };
|
|
|
+ renameKey('java.home', 'java_home');
|
|
|
+ renameKey('jdk.name', 'jdk_name');
|
|
|
+ $.extend(properties, defaults);
|
|
|
+ App.db.set('tmp', 'ambariProperties', properties);
|
|
|
+ this.set('ambariProperties', properties);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * `Action` method for starting connect to current database.
|
|
|
+ *
|
|
|
+ * @method connectToDatabase
|
|
|
+ **/
|
|
|
+ connectToDatabase: function () {
|
|
|
+ if (this.get('isBtnDisabled')) return;
|
|
|
+ this.set('isRequestResolved', false);
|
|
|
+ this.setConnectingStatus(true);
|
|
|
+ if (App.get('testMode')) {
|
|
|
+ this.startPolling();
|
|
|
+ } else {
|
|
|
+ this.runCheckConnection();
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ /**
|
|
|
+ * runs check connections methods depending on service
|
|
|
+ * @return {void}
|
|
|
+ * @method runCheckConnection
|
|
|
+ */
|
|
|
+ runCheckConnection: function () {
|
|
|
+ this.createCustomAction();
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Run custom action for database connection.
|
|
|
+ *
|
|
|
+ * @method createCustomAction
|
|
|
+ **/
|
|
|
+ createCustomAction: function () {
|
|
|
+ var connectionProperties = this.getProperties('db_connection_url','user_name', 'user_passwd');
|
|
|
+ for (var key in connectionProperties) {
|
|
|
+ if (connectionProperties.hasOwnProperty(key)) {
|
|
|
+ connectionProperties[key] = connectionProperties[key].value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ var params = $.extend(true, {}, {db_name: this.get('db_type').toLowerCase()}, connectionProperties, this.get('ambariProperties'));
|
|
|
+ var filteredHosts = Array.isArray(this.get('masterHostName.value')) ? this.get('masterHostName.value') : [this.get('masterHostName.value')];
|
|
|
+ App.ajax.send({
|
|
|
+ name: 'custom_action.create',
|
|
|
+ sender: this,
|
|
|
+ data: {
|
|
|
+ requestInfo: {
|
|
|
+ parameters: params
|
|
|
+ },
|
|
|
+ filteredHosts: filteredHosts
|
|
|
+ },
|
|
|
+ success: 'onCreateActionSuccess',
|
|
|
+ error: 'onCreateActionError'
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * Run updater if task is created successfully.
|
|
|
+ *
|
|
|
+ * @method onConnectActionS
|
|
|
+ **/
|
|
|
+ onCreateActionSuccess: function (data) {
|
|
|
+ this.set('currentRequestId', data.Requests.id);
|
|
|
+ App.ajax.send({
|
|
|
+ name: 'custom_action.request',
|
|
|
+ sender: this,
|
|
|
+ data: {
|
|
|
+ requestId: this.get('currentRequestId')
|
|
|
+ },
|
|
|
+ success: 'setCurrentTaskId'
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ setCurrentTaskId: function (data) {
|
|
|
+ this.set('currentTaskId', data.items[0].Tasks.id);
|
|
|
+ this.startPolling();
|
|
|
+ },
|
|
|
+
|
|
|
+ startPolling: function () {
|
|
|
+ if (this.get('isConnecting'))
|
|
|
+ this.getTaskInfo();
|
|
|
+ },
|
|
|
+
|
|
|
+ getTaskInfo: function () {
|
|
|
+ var request = App.ajax.send({
|
|
|
+ name: 'custom_action.request',
|
|
|
+ sender: this,
|
|
|
+ data: {
|
|
|
+ requestId: this.get('currentRequestId'),
|
|
|
+ taskId: this.get('currentTaskId')
|
|
|
+ },
|
|
|
+ success: 'getTaskInfoSuccess'
|
|
|
+ });
|
|
|
+ this.set('request', request);
|
|
|
+ },
|
|
|
+
|
|
|
+ getTaskInfoSuccess: function (data) {
|
|
|
+ var task = data.Tasks;
|
|
|
+ this.set('responseFromServer', {
|
|
|
+ stderr: task.stderr,
|
|
|
+ stdout: task.stdout
|
|
|
+ });
|
|
|
+ if (task.status === 'COMPLETED') {
|
|
|
+ var structuredOut = task.structured_out.db_connection_check;
|
|
|
+ if (structuredOut.exit_code != 0) {
|
|
|
+ this.set('responseFromServer', {
|
|
|
+ stderr: task.stderr,
|
|
|
+ stdout: task.stdout,
|
|
|
+ structuredOut: structuredOut.message
|
|
|
+ });
|
|
|
+ this.setResponseStatus('failed');
|
|
|
+ } else {
|
|
|
+ this.setResponseStatus('success');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (task.status === 'FAILED') {
|
|
|
+ this.setResponseStatus('failed');
|
|
|
+ }
|
|
|
+ if (/PENDING|QUEUED|IN_PROGRESS/.test(task.status)) {
|
|
|
+ Em.run.later(this, function () {
|
|
|
+ this.startPolling();
|
|
|
+ }, this.get('pollInterval'));
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ onCreateActionError: function (jqXhr, status, errorMessage) {
|
|
|
+ this.setResponseStatus('failed');
|
|
|
+ this.set('responseFromServer', errorMessage);
|
|
|
+ },
|
|
|
+
|
|
|
+ setResponseStatus: function (isSuccess) {
|
|
|
+ var isSuccess = isSuccess == 'success';
|
|
|
+ this.setConnectingStatus(false);
|
|
|
+ this.set('responseCaption', isSuccess ? Em.I18n.t('services.service.config.database.connection.success') : Em.I18n.t('services.service.config.database.connection.failed'));
|
|
|
+ this.set('isConnectionSuccess', isSuccess);
|
|
|
+ this.set('isRequestResolved', true);
|
|
|
+ if (this.get('logsPopup')) {
|
|
|
+ var statusString = isSuccess ? 'common.success' : 'common.error';
|
|
|
+ this.set('logsPopup.header', Em.I18n.t('services.service.config.connection.logsPopup.header').format(this.get('db_type'), Em.I18n.t(statusString)));
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * Switch captions and statuses for active/non-active request.
|
|
|
+ *
|
|
|
+ * @method setConnectionStatus
|
|
|
+ * @param {Boolean} [active]
|
|
|
+ */
|
|
|
+ setConnectingStatus: function (active) {
|
|
|
+ if (active) {
|
|
|
+ this.set('responseCaption', Em.I18n.t('services.service.config.database.connection.inProgress'));
|
|
|
+ }
|
|
|
+ this.set('controller.testConnectionInProgress', !!active);
|
|
|
+ this.set('btnCaption', !!active ? Em.I18n.t('services.service.config.database.btn.connecting') : Em.I18n.t('services.service.config.database.btn.idle'));
|
|
|
+ this.set('isConnecting', !!active);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * Set view to init status.
|
|
|
+ *
|
|
|
+ * @method restore
|
|
|
+ **/
|
|
|
+ restore: function () {
|
|
|
+ if (this.get('request')) {
|
|
|
+ this.get('request').abort();
|
|
|
+ this.set('request', null);
|
|
|
+ }
|
|
|
+ this.set('responseCaption', null);
|
|
|
+ this.set('responseFromServer', null);
|
|
|
+ this.setConnectingStatus(false);
|
|
|
+ this.set('isRequestResolved', false);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * `Action` method for showing response from server in popup.
|
|
|
+ *
|
|
|
+ * @method showLogsPopup
|
|
|
+ **/
|
|
|
+ showLogsPopup: function () {
|
|
|
+ if (this.get('isConnectionSuccess')) return;
|
|
|
+ var _this = this;
|
|
|
+ var statusString = this.get('isRequestResolved') ? 'common.error' : 'common.testing';
|
|
|
+ var popup = App.showAlertPopup(Em.I18n.t('services.service.config.connection.logsPopup.header').format(this.get('db_type'), Em.I18n.t(statusString)), null, function () {
|
|
|
+ _this.set('logsPopup', null);
|
|
|
+ });
|
|
|
+ popup.reopen({
|
|
|
+ onClose: function () {
|
|
|
+ this._super();
|
|
|
+ _this.set('logsPopup', null);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (typeof this.get('responseFromServer') == 'object') {
|
|
|
+ popup.set('bodyClass', Em.View.extend({
|
|
|
+ checkDBConnectionView: _this,
|
|
|
+ templateName: require('templates/common/error_log_body'),
|
|
|
+ openedTask: function () {
|
|
|
+ return this.get('checkDBConnectionView.responseFromServer');
|
|
|
+ }.property('checkDBConnectionView.responseFromServer.stderr', 'checkDBConnectionView.responseFromServer.stdout', 'checkDBConnectionView.responseFromServer.structuredOut')
|
|
|
+ }));
|
|
|
+ } else {
|
|
|
+ popup.set('body', this.get('responseFromServer'));
|
|
|
+ }
|
|
|
+ this.set('logsPopup', popup);
|
|
|
+ return popup;
|
|
|
+ }
|
|
|
+});
|