2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Main export handling code
8 use PMA\libraries\Encoding
;
9 use PMA\libraries\plugins\ExportPlugin
;
10 use PMA\libraries\URL
;
11 use PMA\libraries\Sanitize
;
14 * Get the variables sent or posted to this script and a core script
17 * If we are sending the export file (as opposed to just displaying it
18 * as text), we have to bypass the usual PMA\libraries\Response mechanism
20 if (isset($_POST['output_format']) && $_POST['output_format'] == 'sendit') {
21 define('PMA_BYPASS_GET_INSTANCE', 1);
23 include_once 'libraries/common.inc.php';
24 include_once 'libraries/plugin_interface.lib.php';
25 include_once 'libraries/export.lib.php';
27 //check if it's the GET request to check export time out
28 if (isset($_GET['check_time_out'])) {
29 if (isset($_SESSION['pma_export_error'])) {
30 $err = $_SESSION['pma_export_error'];
31 unset($_SESSION['pma_export_error']);
39 * Sets globals from $_POST
41 * - Please keep the parameters in order of their appearance in the form
42 * - Some of these parameters are not used, as the code below directly
43 * verifies from the superglobal $_POST or $_REQUEST
44 * TODO: this should be removed to avoid passing user input to GLOBALS
72 'htmlword_structure_or_data',
76 'mediawiki_structure_or_data',
78 'pdf_structure_or_data',
79 'odt_structure_or_data',
85 'codegen_structure_or_data',
91 'excel_structure_or_data',
92 'yaml_structure_or_data',
94 'ods_structure_or_data',
96 'json_structure_or_data',
98 'xml_structure_or_data',
100 'xml_export_functions',
101 'xml_export_procedures',
103 'xml_export_triggers',
105 'xml_export_contents',
106 'texytext_structure_or_data',
109 'phparray_structure_or_data',
110 'sql_include_comments',
111 'sql_header_comment',
115 'sql_use_transaction',
118 'sql_structure_or_data',
119 'sql_create_database',
121 'sql_procedure_function',
124 'sql_create_trigger',
126 'sql_auto_increment',
133 'sql_max_query_size',
134 'sql_hex_for_binary',
137 'sql_views_as_tables',
146 'csv_structure_or_data',
147 // csv_replace should have been here but we use it directly from $_POST
149 'latex_structure_or_data',
150 'latex_structure_caption',
151 'latex_structure_continued_caption',
152 'latex_structure_label',
157 'latex_data_caption',
158 'latex_data_continued_caption',
164 foreach ($post_params as $one_post_param) {
165 if (isset($_POST[$one_post_param])) {
166 $GLOBALS[$one_post_param] = $_POST[$one_post_param];
170 $table = $GLOBALS['table'];
172 PMA\libraries\Util
::checkParameters(array('what', 'export_type'));
174 // sanitize this parameter which will be used below in a file inclusion
175 $what = PMA_securePath($_POST['what']);
177 // export class instance, not array of properties, as before
178 /* @var $export_plugin ExportPlugin */
179 $export_plugin = PMA_getPlugin(
182 'libraries/plugins/export/',
184 'export_type' => $export_type,
185 'single_table' => isset($single_table)
190 if (empty($export_plugin)) {
191 PMA_fatalError(__('Bad type!'));
195 * valid compression methods
197 $compression_methods = array(
203 * init and variable checking
205 $compression = false;
207 $save_on_server = false;
208 $buffer_needed = false;
214 $separate_files = '';
216 // Is it a quick or custom export?
217 if (isset($_REQUEST['quick_or_custom'])
218 && $_REQUEST['quick_or_custom'] == 'quick'
220 $quick_export = true;
222 $quick_export = false;
225 if ($_REQUEST['output_format'] == 'astext') {
229 if (isset($_REQUEST['as_separate_files'])
230 && ! empty($_REQUEST['as_separate_files'])
232 if (isset($_REQUEST['compression'])
233 && ! empty($_REQUEST['compression'])
234 && $_REQUEST['compression'] == 'zip'
236 $separate_files = $_REQUEST['as_separate_files'];
239 if (in_array($_REQUEST['compression'], $compression_methods)) {
240 $compression = $_REQUEST['compression'];
241 $buffer_needed = true;
243 if (($quick_export && ! empty($_REQUEST['quick_export_onserver']))
244 ||
(! $quick_export && ! empty($_REQUEST['onserver']))
247 $onserver = $_REQUEST['quick_export_onserver'];
249 $onserver = $_REQUEST['onserver'];
251 // Will we save dump on server?
252 $save_on_server = ! empty($cfg['SaveDir']) && $onserver;
256 // Generate error url and check for needed variables
257 if ($export_type == 'server') {
258 $err_url = 'server_export.php' . URL
::getCommon();
259 } elseif ($export_type == 'database' && strlen($db) > 0) {
260 $err_url = 'db_export.php' . URL
::getCommon(array('db' => $db));
261 // Check if we have something to export
262 if (isset($table_select)) {
263 $tables = $table_select;
267 } elseif ($export_type == 'table' && strlen($db) > 0 && strlen($table) > 0) {
268 $err_url = 'tbl_export.php' . URL
::getCommon(
270 'db' => $db, 'table' => $table
274 PMA_fatalError(__('Bad parameters!'));
277 // Merge SQL Query aliases with Export aliases from
278 // export page, Export page aliases are given more
279 // preference over SQL Query aliases.
280 $parser = new \PhpMyAdmin\SqlParser\
Parser($sql_query);
282 if ((!empty($parser->statements
[0]))
283 && ($parser->statements
[0] instanceof \PhpMyAdmin\SqlParser\Statements\SelectStatement
)
285 $aliases = \PhpMyAdmin\SqlParser\Utils\Misc
::getAliases($parser->statements
[0], $db);
287 if (!empty($_REQUEST['aliases'])) {
288 $aliases = PMA_mergeAliases($aliases, $_REQUEST['aliases']);
289 $_SESSION['tmpval']['aliases'] = $_REQUEST['aliases'];
293 * Increase time limit for script execution and initializes some variables
295 @set_time_limit
($cfg['ExecTimeLimit']);
296 if (! empty($cfg['MemoryLimit'])) {
297 @ini_set
('memory_limit', $cfg['MemoryLimit']);
299 register_shutdown_function('PMA_shutdownDuringExport');
300 // Start with empty buffer
302 $dump_buffer_len = 0;
304 // Array of dump_buffers - used in separate file exports
305 $dump_buffer_objects = array();
307 // We send fake headers to avoid browser timeout when buffering
308 $time_start = time();
310 // Defines the default <CR><LF> format.
311 // For SQL always use \n as MySQL wants this on all platforms.
312 if ($what == 'sql') {
318 $output_kanji_conversion = Encoding
::canConvertKanji();
320 // Do we need to convert charset?
321 $output_charset_conversion = $asfile
322 && Encoding
::isSupported()
323 && isset($charset) && $charset != 'utf-8';
325 // Use on the fly compression?
326 $GLOBALS['onfly_compression'] = $GLOBALS['cfg']['CompressOnFly']
327 && $compression == 'gzip';
328 if ($GLOBALS['onfly_compression']) {
329 $GLOBALS['memory_limit'] = PMA_getMemoryLimitForExport();
332 // Generate filename and mime type if needed
334 if (empty($remember_template)) {
335 $remember_template = '';
337 list($filename, $mime_type) = PMA_getExportFilenameAndMimetype(
338 $export_type, $remember_template, $export_plugin, $compression,
345 // Open file on server if needed
346 if ($save_on_server) {
347 list($save_filename, $message, $file_handle) = PMA_openExportFile(
348 $filename, $quick_export
351 // problem opening export file on server?
352 if (! empty($message)) {
353 PMA_showExportPage($db, $table, $export_type);
357 * Send headers depending on whether the user chose to download a dump file
362 // (avoid rewriting data containing HTML with anchors and forms;
363 // this was reported to happen under Plesk)
364 @ini_set
('url_rewriter.tags', '');
365 $filename = Sanitize
::sanitizeFilename($filename);
367 PMA_downloadHeader($filename, $mime_type);
370 if ($export_type == 'database') {
371 $num_tables = count($tables);
372 if ($num_tables == 0) {
373 $message = PMA\libraries\Message
::error(
374 __('No tables found in database.')
376 $active_page = 'db_export.php';
377 include 'db_export.php';
381 list($html, $back_button) = PMA_getHtmlForDisplayedExportHeader(
382 $export_type, $db, $table
389 // Fake loop just to allow skip of remain of this code by break, I'd really
390 // need exceptions here :-)
394 $dump_buffer_len = 0;
396 // Add possibly some comments to export
397 if (! $export_plugin->exportHeader()) {
401 // Will we need relation & co. setup?
402 $do_relation = isset($GLOBALS[$what . '_relation']);
403 $do_comments = isset($GLOBALS[$what . '_include_comments'])
404 ||
isset($GLOBALS[$what . '_comments']);
405 $do_mime = isset($GLOBALS[$what . '_mime']);
406 if ($do_relation ||
$do_comments ||
$do_mime) {
407 $cfgRelation = PMA_getRelationsParam();
410 include_once 'libraries/transformations.lib.php';
413 // Include dates in export?
414 $do_dates = isset($GLOBALS[$what . '_dates']);
416 $whatStrucOrData = $GLOBALS[$what . '_structure_or_data'];
421 if ($export_type == 'server') {
422 if (! isset($db_select)) {
426 $db_select, $whatStrucOrData, $export_plugin, $crlf, $err_url,
427 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
428 $aliases, $separate_files
430 } elseif ($export_type == 'database') {
431 if (!isset($table_structure) ||
!is_array($table_structure)) {
432 $table_structure = array();
434 if (!isset($table_data) ||
!is_array($table_data)) {
435 $table_data = array();
437 if (!empty($_REQUEST['structure_or_data_forced'])) {
438 $table_structure = $tables;
439 $table_data = $tables;
441 if (isset($lock_tables)) {
442 PMA_lockTables($db, $tables, "READ");
445 $db, $tables, $whatStrucOrData, $table_structure,
446 $table_data, $export_plugin, $crlf, $err_url, $export_type,
447 $do_relation, $do_comments, $do_mime, $do_dates, $aliases,
455 $db, $tables, $whatStrucOrData, $table_structure, $table_data,
456 $export_plugin, $crlf, $err_url, $export_type, $do_relation,
457 $do_comments, $do_mime, $do_dates, $aliases, $separate_files
461 // We export just one table
462 // $allrows comes from the form when "Dump all rows" has been selected
463 if (! isset($allrows)) {
466 if (! isset($limit_to)) {
469 if (! isset($limit_from)) {
472 if (isset($lock_tables)) {
474 PMA_lockTables($db, array($table), "READ");
476 $db, $table, $whatStrucOrData, $export_plugin, $crlf,
477 $err_url, $export_type, $do_relation, $do_comments,
478 $do_mime, $do_dates, $allrows, $limit_to, $limit_from,
486 $db, $table, $whatStrucOrData, $export_plugin, $crlf, $err_url,
487 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
488 $allrows, $limit_to, $limit_from, $sql_query, $aliases
492 if (! $export_plugin->exportFooter()) {
499 if ($save_on_server && ! empty($message)) {
500 PMA_showExportPage($db, $table, $export_type);
504 * Send the dump as a file...
506 if (empty($asfile)) {
507 echo PMA_getHtmlForDisplayedExportFooter($back_button);
511 // Convert the charset if required.
512 if ($output_charset_conversion) {
513 $dump_buffer = Encoding
::convertString(
520 // Compression needed?
522 if (! empty($separate_files)) {
523 $dump_buffer = PMA_compressExport(
524 $dump_buffer_objects, $compression, $filename
527 $dump_buffer = PMA_compressExport($dump_buffer, $compression, $filename);
532 /* If we saved on server, we have to close file now */
533 if ($save_on_server) {
534 $message = PMA_closeExportFile(
535 $file_handle, $dump_buffer, $save_filename
537 PMA_showExportPage($db, $table, $export_type);