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)
189 // Backward compatibility
193 if (empty($export_plugin)) {
194 PMA_fatalError(__('Bad type!'));
198 * valid compression methods
200 $compression_methods = array(
206 * init and variable checking
208 $compression = false;
210 $save_on_server = false;
211 $buffer_needed = false;
217 $separate_files = '';
219 // Is it a quick or custom export?
220 if (isset($_REQUEST['quick_or_custom'])
221 && $_REQUEST['quick_or_custom'] == 'quick'
223 $quick_export = true;
225 $quick_export = false;
228 if ($_REQUEST['output_format'] == 'astext') {
232 if (isset($_REQUEST['as_separate_files'])
233 && ! empty($_REQUEST['as_separate_files'])
235 if (isset($_REQUEST['compression'])
236 && ! empty($_REQUEST['compression'])
237 && $_REQUEST['compression'] == 'zip'
239 $separate_files = $_REQUEST['as_separate_files'];
242 if (in_array($_REQUEST['compression'], $compression_methods)) {
243 $compression = $_REQUEST['compression'];
244 $buffer_needed = true;
246 if (($quick_export && ! empty($_REQUEST['quick_export_onserver']))
247 ||
(! $quick_export && ! empty($_REQUEST['onserver']))
250 $onserver = $_REQUEST['quick_export_onserver'];
252 $onserver = $_REQUEST['onserver'];
254 // Will we save dump on server?
255 $save_on_server = ! empty($cfg['SaveDir']) && $onserver;
259 // Generate error url and check for needed variables
260 if ($export_type == 'server') {
261 $err_url = 'server_export.php' . URL
::getCommon();
262 } elseif ($export_type == 'database'
265 $err_url = 'db_export.php' . URL
::getCommon(array('db' => $db));
266 // Check if we have something to export
267 if (isset($table_select)) {
268 $tables = $table_select;
272 } elseif ($export_type == 'table' && mb_strlen($db)
275 $err_url = 'tbl_export.php' . URL
::getCommon(
277 'db' => $db, 'table' => $table
281 PMA_fatalError(__('Bad parameters!'));
284 // Merge SQL Query aliases with Export aliases from
285 // export page, Export page aliases are given more
286 // preference over SQL Query aliases.
287 $parser = new SqlParser\
Parser($sql_query);
289 if ((!empty($parser->statements
[0]))
290 && ($parser->statements
[0] instanceof SqlParser\Statements\SelectStatement
)
292 $aliases = SqlParser\Utils\Misc
::getAliases($parser->statements
[0], $db);
294 if (!empty($_REQUEST['aliases'])) {
295 $aliases = PMA_mergeAliases($aliases, $_REQUEST['aliases']);
296 $_SESSION['tmpval']['aliases'] = $_REQUEST['aliases'];
300 * Increase time limit for script execution and initializes some variables
302 @set_time_limit
($cfg['ExecTimeLimit']);
303 if (! empty($cfg['MemoryLimit'])) {
304 @ini_set
('memory_limit', $cfg['MemoryLimit']);
306 register_shutdown_function('PMA_shutdownDuringExport');
307 // Start with empty buffer
309 $dump_buffer_len = 0;
311 // Array of dump_buffers - used in separate file exports
312 $dump_buffer_objects = array();
314 // We send fake headers to avoid browser timeout when buffering
315 $time_start = time();
317 // Defines the default <CR><LF> format.
318 // For SQL always use \n as MySQL wants this on all platforms.
319 if ($what == 'sql') {
322 $crlf = PMA\libraries\Util
::whichCrlf();
325 $output_kanji_conversion = Encoding
::canConvertKanji() && $type != 'xls';
327 // Do we need to convert charset?
328 $output_charset_conversion = $asfile
329 && Encoding
::isSupported()
330 && isset($charset) && $charset != 'utf-8'
333 // Use on the fly compression?
334 $GLOBALS['onfly_compression'] = $GLOBALS['cfg']['CompressOnFly']
335 && $compression == 'gzip';
336 if ($GLOBALS['onfly_compression']) {
337 $GLOBALS['memory_limit'] = PMA_getMemoryLimitForExport();
340 // Generate filename and mime type if needed
342 if (empty($remember_template)) {
343 $remember_template = '';
345 list($filename, $mime_type) = PMA_getExportFilenameAndMimetype(
346 $export_type, $remember_template, $export_plugin, $compression,
353 // Open file on server if needed
354 if ($save_on_server) {
355 list($save_filename, $message, $file_handle) = PMA_openExportFile(
356 $filename, $quick_export
359 // problem opening export file on server?
360 if (! empty($message)) {
361 PMA_showExportPage($db, $table, $export_type);
365 * Send headers depending on whether the user chose to download a dump file
370 // (avoid rewriting data containing HTML with anchors and forms;
371 // this was reported to happen under Plesk)
372 @ini_set
('url_rewriter.tags', '');
373 $filename = Sanitize
::sanitizeFilename($filename);
375 PMA_downloadHeader($filename, $mime_type);
378 if ($export_type == 'database') {
379 $num_tables = count($tables);
380 if ($num_tables == 0) {
381 $message = PMA\libraries\Message
::error(
382 __('No tables found in database.')
384 $active_page = 'db_export.php';
385 include 'db_export.php';
389 list($html, $back_button) = PMA_getHtmlForDisplayedExportHeader(
390 $export_type, $db, $table
397 // Fake loop just to allow skip of remain of this code by break, I'd really
398 // need exceptions here :-)
402 $dump_buffer_len = 0;
404 // Add possibly some comments to export
405 if (! $export_plugin->exportHeader()) {
409 // Will we need relation & co. setup?
410 $do_relation = isset($GLOBALS[$what . '_relation']);
411 $do_comments = isset($GLOBALS[$what . '_include_comments'])
412 ||
isset($GLOBALS[$what . '_comments']);
413 $do_mime = isset($GLOBALS[$what . '_mime']);
414 if ($do_relation ||
$do_comments ||
$do_mime) {
415 $cfgRelation = PMA_getRelationsParam();
418 include_once 'libraries/transformations.lib.php';
421 // Include dates in export?
422 $do_dates = isset($GLOBALS[$what . '_dates']);
424 $whatStrucOrData = $GLOBALS[$what . '_structure_or_data'];
429 if ($export_type == 'server') {
430 if (! isset($db_select)) {
434 $db_select, $whatStrucOrData, $export_plugin, $crlf, $err_url,
435 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
436 $aliases, $separate_files
438 } elseif ($export_type == 'database') {
439 if (!isset($table_structure) ||
!is_array($table_structure)) {
440 $table_structure = array();
442 if (!isset($table_data) ||
!is_array($table_data)) {
443 $table_data = array();
445 if (!empty($_REQUEST['structure_or_data_forced'])) {
446 $table_structure = $tables;
447 $table_data = $tables;
449 if (isset($lock_tables)) {
450 PMA_lockTables($db, $tables, "READ");
453 $db, $tables, $whatStrucOrData, $table_structure,
454 $table_data, $export_plugin, $crlf, $err_url, $export_type,
455 $do_relation, $do_comments, $do_mime, $do_dates, $aliases,
463 $db, $tables, $whatStrucOrData, $table_structure, $table_data,
464 $export_plugin, $crlf, $err_url, $export_type, $do_relation,
465 $do_comments, $do_mime, $do_dates, $aliases, $separate_files
469 // We export just one table
470 // $allrows comes from the form when "Dump all rows" has been selected
471 if (! isset($allrows)) {
474 if (! isset($limit_to)) {
477 if (! isset($limit_from)) {
480 if (isset($lock_tables)) {
482 PMA_lockTables($db, array($table), "READ");
484 $db, $table, $whatStrucOrData, $export_plugin, $crlf,
485 $err_url, $export_type, $do_relation, $do_comments,
486 $do_mime, $do_dates, $allrows, $limit_to, $limit_from,
494 $db, $table, $whatStrucOrData, $export_plugin, $crlf, $err_url,
495 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
496 $allrows, $limit_to, $limit_from, $sql_query, $aliases
500 if (! $export_plugin->exportFooter()) {
507 if ($save_on_server && ! empty($message)) {
508 PMA_showExportPage($db, $table, $export_type);
512 * Send the dump as a file...
514 if (empty($asfile)) {
515 echo PMA_getHtmlForDisplayedExportFooter($back_button);
519 // Convert the charset if required.
520 if ($output_charset_conversion) {
521 $dump_buffer = Encoding
::convertString(
528 // Compression needed?
530 if (! empty($separate_files)) {
531 $dump_buffer = PMA_compressExport(
532 $dump_buffer_objects, $compression, $filename
535 $dump_buffer = PMA_compressExport($dump_buffer, $compression, $filename);
540 /* If we saved on server, we have to close file now */
541 if ($save_on_server) {
542 $message = PMA_closeExportFile(
543 $file_handle, $dump_buffer, $save_filename
545 PMA_showExportPage($db, $table, $export_type);