163 lines
5.3 KiB
PHP
163 lines
5.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Controllers\Database;
|
|
|
|
use PhpMyAdmin\Config\PageSettings;
|
|
use PhpMyAdmin\Controllers\AbstractController;
|
|
use PhpMyAdmin\Export;
|
|
use PhpMyAdmin\Export\Options;
|
|
use PhpMyAdmin\Message;
|
|
use PhpMyAdmin\Plugins;
|
|
use PhpMyAdmin\ResponseRenderer;
|
|
use PhpMyAdmin\Template;
|
|
use PhpMyAdmin\Url;
|
|
use PhpMyAdmin\Util;
|
|
|
|
use function __;
|
|
use function array_merge;
|
|
use function is_array;
|
|
|
|
final class ExportController extends AbstractController
|
|
{
|
|
/** @var Export */
|
|
private $export;
|
|
|
|
/** @var Options */
|
|
private $exportOptions;
|
|
|
|
public function __construct(
|
|
ResponseRenderer $response,
|
|
Template $template,
|
|
Export $export,
|
|
Options $exportOptions
|
|
) {
|
|
parent::__construct($response, $template);
|
|
$this->export = $export;
|
|
$this->exportOptions = $exportOptions;
|
|
}
|
|
|
|
public function __invoke(): void
|
|
{
|
|
$pageSettings = new PageSettings('Export');
|
|
$pageSettingsErrorHtml = $pageSettings->getErrorHTML();
|
|
$pageSettingsHtml = $pageSettings->getHTML();
|
|
|
|
$this->addScriptFiles(['export.js']);
|
|
|
|
// $sub_part is used in Util::getDbInfo() to see if we are coming from
|
|
// /database/export, in which case we don't obey $cfg['MaxTableList']
|
|
$GLOBALS['sub_part'] = '_export';
|
|
|
|
$this->checkParameters(['db']);
|
|
|
|
$GLOBALS['errorUrl'] = Util::getScriptNameForOption($GLOBALS['cfg']['DefaultTabDatabase'], 'database');
|
|
$GLOBALS['errorUrl'] .= Url::getCommon(['db' => $GLOBALS['db']], '&');
|
|
|
|
if (! $this->hasDatabase()) {
|
|
return;
|
|
}
|
|
|
|
$GLOBALS['urlParams']['goto'] = Url::getFromRoute('/database/export');
|
|
|
|
[
|
|
$GLOBALS['tables'],
|
|
$GLOBALS['num_tables'],
|
|
$GLOBALS['total_num_tables'],
|
|
$GLOBALS['sub_part'],,,
|
|
$GLOBALS['tooltip_truename'],
|
|
$GLOBALS['tooltip_aliasname'],
|
|
$GLOBALS['pos'],
|
|
] = Util::getDbInfo($GLOBALS['db'], $GLOBALS['sub_part']);
|
|
|
|
// exit if no tables in db found
|
|
if ($GLOBALS['num_tables'] < 1) {
|
|
$this->response->addHTML(
|
|
Message::error(__('No tables found in database.'))->getDisplay()
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
if (! empty($_POST['selected_tbl']) && empty($GLOBALS['table_select'])) {
|
|
$GLOBALS['table_select'] = $_POST['selected_tbl'];
|
|
}
|
|
|
|
$tablesForMultiValues = [];
|
|
|
|
foreach ($GLOBALS['tables'] as $each_table) {
|
|
if (isset($_POST['table_select']) && is_array($_POST['table_select'])) {
|
|
$is_checked = $this->export->getCheckedClause($each_table['Name'], $_POST['table_select']);
|
|
} elseif (isset($GLOBALS['table_select'])) {
|
|
$is_checked = $this->export->getCheckedClause($each_table['Name'], $GLOBALS['table_select']);
|
|
} else {
|
|
$is_checked = true;
|
|
}
|
|
|
|
if (isset($_POST['table_structure']) && is_array($_POST['table_structure'])) {
|
|
$structure_checked = $this->export->getCheckedClause($each_table['Name'], $_POST['table_structure']);
|
|
} else {
|
|
$structure_checked = $is_checked;
|
|
}
|
|
|
|
if (isset($_POST['table_data']) && is_array($_POST['table_data'])) {
|
|
$data_checked = $this->export->getCheckedClause($each_table['Name'], $_POST['table_data']);
|
|
} else {
|
|
$data_checked = $is_checked;
|
|
}
|
|
|
|
$tablesForMultiValues[] = [
|
|
'name' => $each_table['Name'],
|
|
'is_checked_select' => $is_checked,
|
|
'is_checked_structure' => $structure_checked,
|
|
'is_checked_data' => $data_checked,
|
|
];
|
|
}
|
|
|
|
if (! isset($GLOBALS['sql_query'])) {
|
|
$GLOBALS['sql_query'] = '';
|
|
}
|
|
|
|
if (! isset($GLOBALS['unlim_num_rows'])) {
|
|
$GLOBALS['unlim_num_rows'] = 0;
|
|
}
|
|
|
|
$isReturnBackFromRawExport = isset($_POST['export_type']) && $_POST['export_type'] === 'raw';
|
|
if (isset($_POST['raw_query']) || $isReturnBackFromRawExport) {
|
|
$export_type = 'raw';
|
|
} else {
|
|
$export_type = 'database';
|
|
}
|
|
|
|
$GLOBALS['single_table'] = $_POST['single_table'] ?? $_GET['single_table'] ?? $GLOBALS['single_table'] ?? null;
|
|
|
|
$exportList = Plugins::getExport($export_type, isset($GLOBALS['single_table']));
|
|
|
|
if (empty($exportList)) {
|
|
$this->response->addHTML(Message::error(
|
|
__('Could not load export plugins, please check your installation!')
|
|
)->getDisplay());
|
|
|
|
return;
|
|
}
|
|
|
|
$options = $this->exportOptions->getOptions(
|
|
$export_type,
|
|
$GLOBALS['db'],
|
|
$GLOBALS['table'],
|
|
$GLOBALS['sql_query'],
|
|
$GLOBALS['num_tables'],
|
|
$GLOBALS['unlim_num_rows'],
|
|
$exportList
|
|
);
|
|
|
|
$this->render('database/export/index', array_merge($options, [
|
|
'page_settings_error_html' => $pageSettingsErrorHtml,
|
|
'page_settings_html' => $pageSettingsHtml,
|
|
'structure_or_data_forced' => $_POST['structure_or_data_forced'] ?? 0,
|
|
'tables' => $tablesForMultiValues,
|
|
]));
|
|
}
|
|
}
|