/* * Copyright (c) 2017, Tony Opara * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of Google nor the names of its contributors may be used to * endorse or promote products derived from this software without specific * prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ $(function(){ $.contextMenu({ selector: '.context-menu-one', trigger: 'left', build: function($trigger, e) { return { callback: function(key, options) { var m = "clicked: " + key; DatabaseExtension.handleSavedConnectionClicked(key, $(this).text()); }, items: { "edit": {name: " Edit "}, "sep0": "", "delete": {name: " Delete "}, "sep1": "---------", "connect": {name: " Connect "}, "dummy": {name: "", icon: ""} } }; } }); }); Refine.DatabaseSourceUI = function(controller) { this._controller = controller; }; Refine.DatabaseSourceUI.prototype.attachUI = function(body) { this._body = body; this._body.html(DOM.loadHTML("database", "scripts/index/database-import-form.html")); this._elmts = DOM.bind(this._body); var self = this; $('#database-title').text($.i18n('database-import/title')); $('#connectionNameLabel').html($.i18n('database-source/connectionNameLabel')); $('#databaseTypeLabel').html($.i18n('database-source/databaseTypeLabel')); $('#databaseHostLabel').text($.i18n('database-source/databaseHostLabel')); $('#databasePortLabel').text($.i18n('database-source/databasePortLabel')); $('#databaseUserLabel').text($.i18n('database-source/databaseUserLabel')); $('#databasePasswordLabel').text($.i18n('database-source/databasePasswordLabel')); $('#databaseNameLabel').text($.i18n('database-source/databaseNameLabel')); $('#databaseSchemaLabel').text($.i18n('database-source/databaseSchemaLabel')); $('#databaseTestButton').text($.i18n('database-source/databaseTestButton')); $('#databaseSaveButton').text($.i18n('database-source/databaseSaveButton')); $('#databaseConnectButton').text($.i18n('database-source/databaseConnectButton')); $('#newConnectionButtonDiv').text($.i18n('database-source/newConnectionButtonDiv')); $('#savedConnectionSpan').text($.i18n('database-source/savedConnectionSpan')); this._elmts.newConnectionButton.click(function(evt) { self._resetDatabaseImportForm(); $( "#newConnectionDiv" ).show(); $( "#sqlEditorDiv" ).hide(); // self._body.find('.newConnectionDiv').show(); // self._body.find('.sqlEditorDiv').hide(); }); this._elmts.databaseTypeSelect.change(function(event) { var type = $( "#databaseTypeSelect" ).val(); if(type === "postgresql"){ $( "#databaseUser" ).val("postgres"); $( "#databasePort" ).val("5432"); }else if(type === "mysql"){ $( "#databaseUser" ).val("root"); $( "#databasePort" ).val("3306"); }else if(type === "mariadb"){ $( "#databaseUser" ).val("root"); $( "#databasePort" ).val("3306"); }else{ $( "#databaseUser" ).val("root"); $( "#databasePort" ).val("3306"); } }); this._elmts.testDatabaseButton.click(function(evt) { if(self._validateNewConnectionForm() === true){ self._testDatabaseConnect(self._getConnectionInfo()); } }); this._elmts.databaseConnectButton.click(function(evt) { if(self._validateNewConnectionForm() === true){ self._connect(self._getConnectionInfo()); } }); this._elmts.saveConnectionButton.click(function(evt) { if(self._validateNewConnectionForm() == true){ var connectionNameInput = $.trim(self._elmts.connectionNameInput[0].value); if (connectionNameInput.length === 0) { window.alert($.i18n('database-source/alert-connection-name')); } else{ self._saveConnection(self._getConnectionInfo()); } } }); this._elmts.executeQueryButton.click(function(evt) { var jdbcQueryInfo = {}; jdbcQueryInfo.connectionName = $( "#currentConnectionNameInput" ).val(); jdbcQueryInfo.databaseType = $( "#currentDatabaseTypeInput" ).val(); jdbcQueryInfo.databaseServer = $( "#currentDatabaseHostInput" ).val(); jdbcQueryInfo.databasePort = $( "#currentDatabasePortInput" ).val(); jdbcQueryInfo.databaseUser = $( "#currentDatabaseUserInput" ).val(); jdbcQueryInfo.databasePassword = $( "#currentDatabasePasswordInput" ).val(); jdbcQueryInfo.initialDatabase = $( "#currentInitialDatabaseInput" ).val(); jdbcQueryInfo.query = $.trim($( "#queryTextArea" ).val()); if(self.validateQuery(jdbcQueryInfo.query)) { self._executeQuery(jdbcQueryInfo); } }); this._elmts.editConnectionButton.click(function(evt) { if(self._validateNewConnectionForm() == true){ var connectionNameInput = $.trim(self._elmts.connectionNameInput[0].value); if (connectionNameInput.length === 0) { window.alert($.i18n('database-source/alert-connection-name')); } else{ self._editConnection(self._getConnectionInfo()); } } }); this._elmts.cancelEditConnectionButton.click(function(evt) { self._resetDatabaseImportForm(); }); //load saved connections from settings file in user home directory self._loadSavedConnections(); };//end Refine.createUI Refine.DatabaseSourceUI.prototype.focus = function() { }; Refine.DatabaseSourceUI.prototype.validateQuery = function(query) { //alert("query::" + query); if(!query || query.length <= 0 ) { window.alert($.i18n('database-source/alert-query')); return false; } var allCapsQuery = query.toUpperCase(); if(allCapsQuery.indexOf('DROP') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " DROP"); return false; }else if(allCapsQuery.indexOf('TRUNCATE') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " TRUNCATE"); return false; }else if(allCapsQuery.indexOf('DELETE') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " DELETE"); return false; }else if(allCapsQuery.indexOf('ROLLBACK') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " ROLLBACK"); return false; }else if(allCapsQuery.indexOf('SHUTDOWN') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " SHUTDOWN"); return false; }else if(allCapsQuery.indexOf('INSERT') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " INSERT"); return false; }else if(allCapsQuery.indexOf('ALTER') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " ALTER"); return false; }else if(allCapsQuery.indexOf('UPDATE') > -1){ window.alert($.i18n('database-source/alert-invalid-query-keyword') + " UPDATE"); return false; } if(!allCapsQuery.startsWith('SELECT')) { window.alert($.i18n('database-source/alert-invalid-query-select')); return false; } return true; }; Refine.DatabaseSourceUI.prototype._editConnection = function(connectionInfo) { //alert("database user:" + connectionInfo.databaseUser); var self = this; $.ajax({ url: 'command/database/saved-connection', type: 'PUT', contentType:'application/x-www-form-urlencoded', data: connectionInfo, success: function(settings) { if(settings){ $( "#menuListUl" ).empty(); var items = []; $.each(settings.savedConnections,function(index,savedConnection){ items.push('