331 lines
17 KiB
PHP
331 lines
17 KiB
PHP
<?php
|
|
/* $Id$ */
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
|
|
|
|
/**
|
|
* Gets the variables sent to this script, retains the db name that may have
|
|
* been defined as startup option and include a core library
|
|
*/
|
|
require_once('./libraries/grab_globals.lib.php');
|
|
if (!empty($db)) {
|
|
$db_start = $db;
|
|
}
|
|
|
|
|
|
/**
|
|
* Gets a core script and starts output buffering work
|
|
*/
|
|
require_once('./libraries/common.lib.php');
|
|
require_once './libraries/sql_query_form.lib.php';
|
|
require_once('./libraries/ob.lib.php');
|
|
if ($cfg['OBGzip']) {
|
|
$ob_mode = PMA_outBufferModeGet();
|
|
if ($ob_mode) {
|
|
PMA_outBufferPre($ob_mode);
|
|
}
|
|
}
|
|
|
|
require_once('./libraries/relation.lib.php');
|
|
$cfgRelation = PMA_getRelationsParam();
|
|
|
|
/**
|
|
* Get the list and number of available databases.
|
|
* Skipped if no server selected: in this case no database should be displayed
|
|
* before the user choose among available ones at the welcome screen.
|
|
*/
|
|
if ($server > 0) {
|
|
PMA_availableDatabases(); // this function is defined in "common.lib.php"
|
|
} else {
|
|
$num_dbs = 0;
|
|
}
|
|
|
|
// garvin: For re-usability, moved http-headers and stylesheets
|
|
// to a seperate file. It can now be included by header.inc.php,
|
|
// queryframe.php, querywindow.php.
|
|
|
|
require_once('./libraries/header_http.inc.php');
|
|
require_once('./libraries/header_meta_style.inc.php');
|
|
?>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
<!--
|
|
function query_auto_commit() {
|
|
document.sqlform.submit();
|
|
}
|
|
|
|
function query_tab_commit(tab) {
|
|
document.querywindow.querydisplay_tab.value = tab;
|
|
document.querywindow.submit();
|
|
return false;
|
|
}
|
|
|
|
// js form validation stuff
|
|
/**/
|
|
var errorMsg0 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
|
|
var errorMsg1 = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
|
|
var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
|
|
var confirmMsg = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
|
|
/**/
|
|
|
|
<?php
|
|
if ( empty( $querydisplay_tab ) ) {
|
|
$onload = 'onload="resize();"';
|
|
?>
|
|
function resize() {
|
|
|
|
// for Gecko
|
|
if ( typeof( self.sizeToContent ) == 'function' ) {
|
|
self.sizeToContent();
|
|
//self.scrollbars.visible = false;
|
|
// give some more space ... to prevent 'fli(pp/ck)ing'
|
|
self.resizeBy( 10, 50 );
|
|
return;
|
|
}
|
|
|
|
// for IE, Opera
|
|
if (document.getElementById && typeof(document.getElementById('querywindowcontainer')) != 'undefined' ) {
|
|
|
|
// get content size
|
|
var newWidth = document.getElementById('querywindowcontainer').offsetWidth;
|
|
var newHeight = document.getElementById('querywindowcontainer').offsetHeight;
|
|
|
|
// set size to contentsize
|
|
// plus some offset for scrollbars, borders, statusbar, menus ...
|
|
self.resizeTo( newWidth + 45, newHeight + 75 );
|
|
}
|
|
}
|
|
<?php
|
|
} else {
|
|
$onload = '';
|
|
}
|
|
?>
|
|
//-->
|
|
</script>
|
|
<script src="libraries/functions.js" type="text/javascript" language="javascript"></script>
|
|
</head>
|
|
|
|
<body id="bodyquerywindow" <?php echo $onload; ?> bgcolor="<?php echo ($cfg['QueryFrameJS'] ? $cfg['LeftBgColor'] : $cfg['RightBgColor']); ?>">
|
|
<div id="querywindowcontainer">
|
|
<?php
|
|
if ( $cfg['QueryFrameJS'] && !isset($no_js) ) {
|
|
$querydisplay_tab = (isset($querydisplay_tab) ? $querydisplay_tab : $cfg['QueryWindowDefTab']);
|
|
|
|
$tabs = array();
|
|
$tabs['sql']['icon'] = 'b_sql.png';
|
|
$tabs['sql']['text'] = $strSQL;
|
|
$tabs['sql']['link'] = '#';
|
|
$tabs['sql']['attr'] = 'onclick="javascript:query_tab_commit(\'sql\');return false;"';
|
|
$tabs['sql']['active'] = (bool) ( $querydisplay_tab == 'sql' );
|
|
$tabs['import']['icon'] = 'b_import.png';
|
|
$tabs['import']['text'] = $strImportFiles;
|
|
$tabs['import']['link'] = '#';
|
|
$tabs['import']['attr'] = 'onclick="javascript:query_tab_commit(\'files\');return false;"';
|
|
$tabs['import']['active'] = (bool) ( $querydisplay_tab == 'files' );
|
|
$tabs['history']['text'] = $strQuerySQLHistory;
|
|
$tabs['history']['link'] = '#';
|
|
$tabs['history']['attr'] = 'onclick="javascript:query_tab_commit(\'history\');return false;"';
|
|
$tabs['history']['active'] = (bool) ( $querydisplay_tab == 'history' );
|
|
|
|
if ( $cfg['QueryWindowDefTab'] == 'full' ) {
|
|
$tabs['all']['text'] = $strAll;
|
|
$tabs['all']['link'] = '#';
|
|
$tabs['all']['attr'] = 'onclick="javascript:query_tab_commit(\'full\');return false;"';
|
|
$tabs['all']['active'] = (bool) ( $querydisplay_tab == 'full' );
|
|
}
|
|
|
|
echo PMA_getTabs( $tabs );
|
|
unset( $tabs );
|
|
} else {
|
|
$querydisplay_tab = 'full';
|
|
}
|
|
|
|
if ($cfg['PropertiesIconic'] == true) {
|
|
// We need to copy the value or else the == 'both' check will always return true
|
|
$propicon = (string)$cfg['PropertiesIconic'];
|
|
|
|
if ($propicon == 'both') {
|
|
$iconic_spacer = '<div class="nowrap">';
|
|
} else {
|
|
$iconic_spacer = '';
|
|
}
|
|
|
|
$titles['Change'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_edit.png" alt="' . $strChange . '" title="' . $strChange . '" border="0" />';
|
|
|
|
if ($propicon == 'both') {
|
|
$titles['Change'] .= ' ' . $strChange . ' </div>';
|
|
}
|
|
} else {
|
|
$titles['Change'] = $strChange;
|
|
}
|
|
|
|
// Hidden forms and query frame interaction stuff
|
|
if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
|
|
|
|
$input_query_history = array();
|
|
$sql_history = array();
|
|
$dup_sql = array();
|
|
|
|
if (isset($query_history_latest) && isset($query_history_latest_db) && $query_history_latest != '' && $query_history_latest_db != '') {
|
|
if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
|
|
PMA_setHistory((isset($query_history_latest_db) ? $query_history_latest_db : ''), (isset($query_history_latest_table) ? $query_history_latest_table : ''), $cfg['Server']['user'], $query_history_latest);
|
|
}
|
|
|
|
$input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_history_latest . '" />';
|
|
$input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_latest_db) . '" />';
|
|
$input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '" />';
|
|
|
|
$sql_history[] = '<li>'
|
|
. '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
|
|
. ' <a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_latest_db) . '] ' . urldecode($query_history_latest) . '</a>'
|
|
. '</li>' . "\n";
|
|
|
|
$sql_query = urldecode($query_history_latest);
|
|
$db = $query_history_latest_db;
|
|
$table = $query_history_latest_table;
|
|
$dup_sql[$query_history_latest] = true;
|
|
} elseif (isset($query_history_latest) && $query_history_latest != '') {
|
|
$sql_query = urldecode($query_history_latest);
|
|
}
|
|
|
|
if (isset($sql_query)) {
|
|
$show_query = 1;
|
|
}
|
|
|
|
if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
|
|
|
|
$temp_history = PMA_getHistory($cfg['Server']['user']);
|
|
if (is_array($temp_history) && count($temp_history) > 0) {
|
|
foreach ($temp_history AS $history_nr => $history_array) {
|
|
if (!isset($dup_sql[$history_array['sqlquery']])) {
|
|
$sql_history[] = '<li>'
|
|
. '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
|
|
. '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($history_array['db']) . '] ' . urldecode($history_array['sqlquery']) . '</a>'
|
|
. '</li>' . "\n";
|
|
$dup_sql[$history_array['sqlquery']] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($query_history) && is_array($query_history)) {
|
|
$current_index = count($query_history);
|
|
foreach ($query_history AS $query_no => $query_sql) {
|
|
if (!isset($dup_sql[$query_sql])) {
|
|
|
|
$input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_sql . '" />';
|
|
$input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_db[$query_no]) . '" />';
|
|
$input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '" />';
|
|
|
|
$sql_history[] = '<li>'
|
|
. '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
|
|
. '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_db[$query_no]) . '] ' . urldecode($query_sql) . '</a>'
|
|
. '</li>' . "\n";
|
|
$dup_sql[$query_sql] = true;
|
|
} // end if check if this item exists
|
|
} // end while print history
|
|
} // end if history exists
|
|
|
|
} // end if DB-based history
|
|
}
|
|
|
|
$url_query = PMA_generate_common_url(isset($db) ? $db : '', isset($table) ? $table : '');
|
|
if (!isset($goto)) {
|
|
$goto = '';
|
|
}
|
|
|
|
require_once './libraries/bookmark.lib.php';
|
|
|
|
// in case of javascript disabled in queryframe ...
|
|
if ( $GLOBALS['cfg']['QueryFrame'] && ! $GLOBALS['cfg']['QueryFrameJS'] ) {
|
|
// ... we redirect to appropriate query sql page
|
|
// works only full if $db and $table is also stored/grabbed from $_COOKIE
|
|
if ( ! empty( $table ) ) {
|
|
require 'tbl_properties.php';
|
|
}
|
|
elseif ( ! empty( $db ) ) {
|
|
require 'db_details.php';
|
|
}
|
|
else {
|
|
require 'server_sql.php';
|
|
}
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Defines the query to be displayed in the query textarea
|
|
*/
|
|
if ( ! empty( $show_query ) ) {
|
|
$query_to_display = $sql_query;
|
|
} else {
|
|
$query_to_display = '';
|
|
}
|
|
unset( $sql_query );
|
|
|
|
PMA_sqlQueryForm( $query_to_display, $querydisplay_tab );
|
|
|
|
// Hidden forms and query frame interaction stuff
|
|
if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
|
|
if (isset($auto_commit) && $auto_commit == 'true') {
|
|
?>
|
|
<script type="text/javascript" language="javascript">
|
|
query_auto_commit();
|
|
</script>
|
|
<?php
|
|
}
|
|
|
|
if (isset($sql_history) && isset($querydisplay_tab) && ($querydisplay_tab == 'history' || $querydisplay_tab == 'full') && is_array($sql_history) && count($sql_history) > 0) {
|
|
?>
|
|
<?php echo $strQuerySQLHistory . ':<br /><ul>' . implode('', $sql_history) . '</ul>'; ?>
|
|
<?php
|
|
}
|
|
?>
|
|
<form action="querywindow.php" method="post" name="querywindow">
|
|
<?php
|
|
echo PMA_generate_common_hidden_inputs('', '');
|
|
if (count($input_query_history) > 0) {
|
|
echo implode("\n", $input_query_history);
|
|
}
|
|
?>
|
|
<input type="hidden" name="db" value="<?php echo (empty($db) ? '' : htmlspecialchars($db)); ?>" />
|
|
<input type="hidden" name="table" value="<?php echo (empty($table) ? '' : htmlspecialchars($table)); ?>" />
|
|
|
|
<input type="hidden" name="query_history_latest" value="" />
|
|
<input type="hidden" name="query_history_latest_db" value="" />
|
|
<input type="hidden" name="query_history_latest_table" value="" />
|
|
|
|
<input type="hidden" name="previous_db" value="<?php echo htmlspecialchars($db); ?>" />
|
|
|
|
<input type="hidden" name="auto_commit" value="false" />
|
|
<input type="hidden" name="querydisplay_tab" value="<?php echo $querydisplay_tab; ?>" />
|
|
</form>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<?php
|
|
|
|
/**
|
|
* Close MySql connections
|
|
*/
|
|
if (isset($dbh) && $dbh) {
|
|
PMA_DBI_close($dbh);
|
|
}
|
|
if (isset($userlink) && $userlink) {
|
|
PMA_DBI_close($userlink);
|
|
}
|
|
|
|
|
|
/**
|
|
* Sends bufferized data
|
|
*/
|
|
if (isset($cfg['OBGzip']) && $cfg['OBGzip']
|
|
&& isset($ob_mode) && $ob_mode) {
|
|
PMA_outBufferPost($ob_mode);
|
|
}
|
|
?>
|