sql = $sql; $this->checkUserPrivileges = $checkUserPrivileges; $this->dbi = $dbi; } public function __invoke(): void { $GLOBALS['display_query'] = $GLOBALS['display_query'] ?? null; $GLOBALS['ajax_reload'] = $GLOBALS['ajax_reload'] ?? null; $GLOBALS['goto'] = $GLOBALS['goto'] ?? null; $GLOBALS['errorUrl'] = $GLOBALS['errorUrl'] ?? null; $GLOBALS['find_real_end'] = $GLOBALS['find_real_end'] ?? null; $GLOBALS['unlim_num_rows'] = $GLOBALS['unlim_num_rows'] ?? null; $GLOBALS['import_text'] = $GLOBALS['import_text'] ?? null; $GLOBALS['disp_query'] = $GLOBALS['disp_query'] ?? null; $GLOBALS['extra_data'] = $GLOBALS['extra_data'] ?? null; $GLOBALS['message_to_show'] = $GLOBALS['message_to_show'] ?? null; $GLOBALS['disp_message'] = $GLOBALS['disp_message'] ?? null; $GLOBALS['complete_query'] = $GLOBALS['complete_query'] ?? null; $GLOBALS['is_gotofile'] = $GLOBALS['is_gotofile'] ?? null; $GLOBALS['back'] = $GLOBALS['back'] ?? null; $GLOBALS['table_from_sql'] = $GLOBALS['table_from_sql'] ?? null; $this->checkUserPrivileges->getPrivileges(); $pageSettings = new PageSettings('Browse'); $this->response->addHTML($pageSettings->getErrorHTML()); $this->response->addHTML($pageSettings->getHTML()); $this->addScriptFiles([ 'vendor/jquery/jquery.uitablefilter.js', 'table/change.js', 'indexes.js', 'vendor/stickyfill.min.js', 'gis_data_editor.js', 'multi_column_sort.js', ]); /** * Set ajax_reload in the response if it was already set */ if (isset($GLOBALS['ajax_reload']) && $GLOBALS['ajax_reload']['reload'] === true) { $this->response->addJSON('ajax_reload', $GLOBALS['ajax_reload']); } /** * Defines the url to return to in case of error in a sql statement */ $GLOBALS['is_gotofile'] = true; if (empty($GLOBALS['goto'])) { if (empty($GLOBALS['table'])) { $GLOBALS['goto'] = Util::getScriptNameForOption($GLOBALS['cfg']['DefaultTabDatabase'], 'database'); } else { $GLOBALS['goto'] = Util::getScriptNameForOption($GLOBALS['cfg']['DefaultTabTable'], 'table'); } } if (! isset($GLOBALS['errorUrl'])) { $GLOBALS['errorUrl'] = ! empty($GLOBALS['back']) ? $GLOBALS['back'] : $GLOBALS['goto']; $GLOBALS['errorUrl'] .= Url::getCommon( ['db' => $GLOBALS['db']], ! str_contains($GLOBALS['errorUrl'], '?') ? '?' : '&' ); if ( (mb_strpos(' ' . $GLOBALS['errorUrl'], 'db_') !== 1 || ! str_contains($GLOBALS['errorUrl'], '?route=/database/')) && strlen($GLOBALS['table']) > 0 ) { $GLOBALS['errorUrl'] .= '&table=' . urlencode($GLOBALS['table']); } } // Coming from a bookmark dialog if (isset($_POST['bkm_fields']['bkm_sql_query'])) { $GLOBALS['sql_query'] = $_POST['bkm_fields']['bkm_sql_query']; } elseif (isset($_POST['sql_query'])) { $GLOBALS['sql_query'] = $_POST['sql_query']; } elseif (isset($_GET['sql_query'], $_GET['sql_signature'])) { if (Core::checkSqlQuerySignature($_GET['sql_query'], $_GET['sql_signature'])) { $GLOBALS['sql_query'] = $_GET['sql_query']; } } // This one is just to fill $db if (isset($_POST['bkm_fields']['bkm_database'])) { $GLOBALS['db'] = $_POST['bkm_fields']['bkm_database']; } // Default to browse if no query set and we have table // (needed for browsing from DefaultTabTable) if (empty($GLOBALS['sql_query']) && strlen($GLOBALS['table']) > 0 && strlen($GLOBALS['db']) > 0) { $GLOBALS['sql_query'] = $this->sql->getDefaultSqlQueryForBrowse($GLOBALS['db'], $GLOBALS['table']); // set $goto to what will be displayed if query returns 0 rows $GLOBALS['goto'] = ''; } else { $this->checkParameters(['sql_query']); } /** * Parse and analyze the query */ [ $analyzed_sql_results, $GLOBALS['db'], $GLOBALS['table_from_sql'], ] = ParseAnalyze::sqlQuery($GLOBALS['sql_query'], $GLOBALS['db']); if ($GLOBALS['table'] != $GLOBALS['table_from_sql'] && ! empty($GLOBALS['table_from_sql'])) { $GLOBALS['table'] = $GLOBALS['table_from_sql']; } /** * Check rights in case of DROP DATABASE * * This test may be bypassed if $is_js_confirmed = 1 (already checked with js) * but since a malicious user may pass this variable by url/form, we don't take * into account this case. */ if ( $this->sql->hasNoRightsToDropDatabase( $analyzed_sql_results, $GLOBALS['cfg']['AllowUserDropDatabase'], $this->dbi->isSuperUser() ) ) { Generator::mysqlDie( __('"DROP DATABASE" statements are disabled.'), '', false, $GLOBALS['errorUrl'] ); } /** * Need to find the real end of rows? */ if (isset($GLOBALS['find_real_end']) && $GLOBALS['find_real_end']) { $GLOBALS['unlim_num_rows'] = $this->sql->findRealEndOfRows($GLOBALS['db'], $GLOBALS['table']); } /** * Bookmark add */ if (isset($_POST['store_bkm'])) { $this->addBookmark($GLOBALS['goto']); return; } /** * Sets or modifies the $goto variable if required */ if ($GLOBALS['goto'] === Url::getFromRoute('/sql')) { $GLOBALS['is_gotofile'] = false; $GLOBALS['goto'] = Url::getFromRoute('/sql', [ 'db' => $GLOBALS['db'], 'table' => $GLOBALS['table'], 'sql_query' => $GLOBALS['sql_query'], ]); } $this->response->addHTML($this->sql->executeQueryAndSendQueryResponse( $analyzed_sql_results, $GLOBALS['is_gotofile'], $GLOBALS['db'], $GLOBALS['table'], $GLOBALS['find_real_end'] ?? null, $GLOBALS['import_text'] ?? null, $GLOBALS['extra_data'] ?? null, $GLOBALS['message_to_show'] ?? null, null, $GLOBALS['goto'], isset($GLOBALS['disp_query']) ? $GLOBALS['display_query'] : null, $GLOBALS['disp_message'] ?? null, $GLOBALS['sql_query'], $GLOBALS['complete_query'] ?? null )); } private function addBookmark(string $goto): void { $bookmark = Bookmark::createBookmark( $this->dbi, $_POST['bkm_fields'], isset($_POST['bkm_all_users']) && $_POST['bkm_all_users'] === 'true' ); $result = null; if ($bookmark instanceof Bookmark) { $result = $bookmark->save(); } if (! $this->response->isAjax()) { Core::sendHeaderLocation('./' . $goto . '&label=' . $_POST['bkm_fields']['bkm_label']); return; } if ($result) { $msg = Message::success(__('Bookmark %s has been created.')); $msg->addParam($_POST['bkm_fields']['bkm_label']); $this->response->addJSON('message', $msg); return; } $msg = Message::error(__('Bookmark not created!')); $this->response->setRequestStatus(false); $this->response->addJSON('message', $msg); } }