2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Main export handling code
10 use PhpMyAdmin\Encoding
;
11 use PhpMyAdmin\Plugins\ExportPlugin
;
14 use PhpMyAdmin\Sanitize
;
17 * Get the variables sent or posted to this script and a core script
20 * If we are sending the export file (as opposed to just displaying it
21 * as text), we have to bypass the usual PhpMyAdmin\Response mechanism
23 if (isset($_POST['output_format']) && $_POST['output_format'] == 'sendit') {
24 define('PMA_BYPASS_GET_INSTANCE', 1);
26 include_once 'libraries/common.inc.php';
27 include_once 'libraries/plugin_interface.lib.php';
28 include_once 'libraries/export.lib.php';
30 //check if it's the GET request to check export time out
31 if (isset($_GET['check_time_out'])) {
32 if (isset($_SESSION['pma_export_error'])) {
33 $err = $_SESSION['pma_export_error'];
34 unset($_SESSION['pma_export_error']);
42 * Sets globals from $_POST
44 * - Please keep the parameters in order of their appearance in the form
45 * - Some of these parameters are not used, as the code below directly
46 * verifies from the superglobal $_POST or $_REQUEST
47 * TODO: this should be removed to avoid passing user input to GLOBALS
75 'htmlword_structure_or_data',
79 'mediawiki_structure_or_data',
81 'pdf_structure_or_data',
82 'odt_structure_or_data',
88 'codegen_structure_or_data',
94 'excel_structure_or_data',
95 'yaml_structure_or_data',
97 'ods_structure_or_data',
99 'json_structure_or_data',
102 'xml_structure_or_data',
104 'xml_export_functions',
105 'xml_export_procedures',
107 'xml_export_triggers',
109 'xml_export_contents',
110 'texytext_structure_or_data',
113 'phparray_structure_or_data',
114 'sql_include_comments',
115 'sql_header_comment',
119 'sql_use_transaction',
122 'sql_structure_or_data',
123 'sql_create_database',
125 'sql_procedure_function',
128 'sql_create_trigger',
130 'sql_auto_increment',
137 'sql_max_query_size',
138 'sql_hex_for_binary',
141 'sql_views_as_tables',
150 'csv_structure_or_data',
151 // csv_replace should have been here but we use it directly from $_POST
153 'latex_structure_or_data',
154 'latex_structure_caption',
155 'latex_structure_continued_caption',
156 'latex_structure_label',
161 'latex_data_caption',
162 'latex_data_continued_caption',
168 foreach ($post_params as $one_post_param) {
169 if (isset($_POST[$one_post_param])) {
170 $GLOBALS[$one_post_param] = $_POST[$one_post_param];
174 $table = $GLOBALS['table'];
176 PhpMyAdmin\Util
::checkParameters(array('what', 'export_type'));
178 // sanitize this parameter which will be used below in a file inclusion
179 $what = Core
::securePath($_POST['what']);
181 // export class instance, not array of properties, as before
182 /* @var $export_plugin ExportPlugin */
183 $export_plugin = PMA_getPlugin(
186 'libraries/classes/Plugins/Export/',
188 'export_type' => $export_type,
189 'single_table' => isset($single_table)
194 if (empty($export_plugin)) {
195 Core
::fatalError(__('Bad type!'));
199 * valid compression methods
201 $compression_methods = array(
207 * init and variable checking
209 $compression = false;
211 $save_on_server = false;
212 $buffer_needed = false;
218 $separate_files = '';
220 // Is it a quick or custom export?
221 if (isset($_REQUEST['quick_or_custom'])
222 && $_REQUEST['quick_or_custom'] == 'quick'
224 $quick_export = true;
226 $quick_export = false;
229 if ($_REQUEST['output_format'] == 'astext') {
233 if (isset($_REQUEST['as_separate_files'])
234 && ! empty($_REQUEST['as_separate_files'])
236 if (isset($_REQUEST['compression'])
237 && ! empty($_REQUEST['compression'])
238 && $_REQUEST['compression'] == 'zip'
240 $separate_files = $_REQUEST['as_separate_files'];
243 if (in_array($_REQUEST['compression'], $compression_methods)) {
244 $compression = $_REQUEST['compression'];
245 $buffer_needed = true;
247 if (($quick_export && ! empty($_REQUEST['quick_export_onserver']))
248 ||
(! $quick_export && ! empty($_REQUEST['onserver']))
251 $onserver = $_REQUEST['quick_export_onserver'];
253 $onserver = $_REQUEST['onserver'];
255 // Will we save dump on server?
256 $save_on_server = ! empty($cfg['SaveDir']) && $onserver;
260 // Generate error url and check for needed variables
261 if ($export_type == 'server') {
262 $err_url = 'server_export.php' . Url
::getCommon();
263 } elseif ($export_type == 'database' && strlen($db) > 0) {
264 $err_url = 'db_export.php' . Url
::getCommon(array('db' => $db));
265 // Check if we have something to export
266 if (isset($table_select)) {
267 $tables = $table_select;
271 } elseif ($export_type == 'table' && strlen($db) > 0 && strlen($table) > 0) {
272 $err_url = 'tbl_export.php' . Url
::getCommon(
274 'db' => $db, 'table' => $table
278 Core
::fatalError(__('Bad parameters!'));
281 // Merge SQL Query aliases with Export aliases from
282 // export page, Export page aliases are given more
283 // preference over SQL Query aliases.
284 $parser = new \PhpMyAdmin\SqlParser\
Parser($sql_query);
286 if ((!empty($parser->statements
[0]))
287 && ($parser->statements
[0] instanceof \PhpMyAdmin\SqlParser\Statements\SelectStatement
)
289 $aliases = \PhpMyAdmin\SqlParser\Utils\Misc
::getAliases($parser->statements
[0], $db);
291 if (!empty($_REQUEST['aliases'])) {
292 $aliases = PMA_mergeAliases($aliases, $_REQUEST['aliases']);
293 $_SESSION['tmpval']['aliases'] = $_REQUEST['aliases'];
297 * Increase time limit for script execution and initializes some variables
299 Util
::setTimeLimit();
300 if (! empty($cfg['MemoryLimit'])) {
301 @ini_set
('memory_limit', $cfg['MemoryLimit']);
303 register_shutdown_function('PMA_shutdownDuringExport');
304 // Start with empty buffer
306 $dump_buffer_len = 0;
308 // Array of dump_buffers - used in separate file exports
309 $dump_buffer_objects = array();
311 // We send fake headers to avoid browser timeout when buffering
312 $time_start = time();
314 // Defines the default <CR><LF> format.
315 // For SQL always use \n as MySQL wants this on all platforms.
316 if ($what == 'sql') {
322 $output_kanji_conversion = Encoding
::canConvertKanji();
324 // Do we need to convert charset?
325 $output_charset_conversion = $asfile
326 && Encoding
::isSupported()
327 && isset($charset) && $charset != 'utf-8';
329 // Use on the fly compression?
330 $GLOBALS['onfly_compression'] = $GLOBALS['cfg']['CompressOnFly']
331 && $compression == 'gzip';
332 if ($GLOBALS['onfly_compression']) {
333 $GLOBALS['memory_limit'] = PMA_getMemoryLimitForExport();
336 // Generate filename and mime type if needed
338 if (empty($remember_template)) {
339 $remember_template = '';
341 list($filename, $mime_type) = PMA_getExportFilenameAndMimetype(
342 $export_type, $remember_template, $export_plugin, $compression,
349 // Open file on server if needed
350 if ($save_on_server) {
351 list($save_filename, $message, $file_handle) = PMA_openExportFile(
352 $filename, $quick_export
355 // problem opening export file on server?
356 if (! empty($message)) {
357 PMA_showExportPage($db, $table, $export_type);
361 * Send headers depending on whether the user chose to download a dump file
366 // (avoid rewriting data containing HTML with anchors and forms;
367 // this was reported to happen under Plesk)
368 @ini_set
('url_rewriter.tags', '');
369 $filename = Sanitize
::sanitizeFilename($filename);
371 Core
::downloadHeader($filename, $mime_type);
374 if ($export_type == 'database') {
375 $num_tables = count($tables);
376 if ($num_tables == 0) {
377 $message = PhpMyAdmin\Message
::error(
378 __('No tables found in database.')
380 $active_page = 'db_export.php';
381 include 'db_export.php';
385 list($html, $back_button) = PMA_getHtmlForDisplayedExportHeader(
386 $export_type, $db, $table
393 // Fake loop just to allow skip of remain of this code by break, I'd really
394 // need exceptions here :-)
398 $dump_buffer_len = 0;
400 // Add possibly some comments to export
401 if (! $export_plugin->exportHeader()) {
405 // Will we need relation & co. setup?
406 $do_relation = isset($GLOBALS[$what . '_relation']);
407 $do_comments = isset($GLOBALS[$what . '_include_comments'])
408 ||
isset($GLOBALS[$what . '_comments']);
409 $do_mime = isset($GLOBALS[$what . '_mime']);
410 if ($do_relation ||
$do_comments ||
$do_mime) {
411 $cfgRelation = PMA_getRelationsParam();
414 // Include dates in export?
415 $do_dates = isset($GLOBALS[$what . '_dates']);
417 $whatStrucOrData = $GLOBALS[$what . '_structure_or_data'];
422 if ($export_type == 'server') {
423 if (! isset($db_select)) {
427 $db_select, $whatStrucOrData, $export_plugin, $crlf, $err_url,
428 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
429 $aliases, $separate_files
431 } elseif ($export_type == 'database') {
432 if (!isset($table_structure) ||
!is_array($table_structure)) {
433 $table_structure = array();
435 if (!isset($table_data) ||
!is_array($table_data)) {
436 $table_data = array();
438 if (!empty($_REQUEST['structure_or_data_forced'])) {
439 $table_structure = $tables;
440 $table_data = $tables;
442 if (isset($lock_tables)) {
443 PMA_lockTables($db, $tables, "READ");
446 $db, $tables, $whatStrucOrData, $table_structure,
447 $table_data, $export_plugin, $crlf, $err_url, $export_type,
448 $do_relation, $do_comments, $do_mime, $do_dates, $aliases,
456 $db, $tables, $whatStrucOrData, $table_structure, $table_data,
457 $export_plugin, $crlf, $err_url, $export_type, $do_relation,
458 $do_comments, $do_mime, $do_dates, $aliases, $separate_files
462 // We export just one table
463 // $allrows comes from the form when "Dump all rows" has been selected
464 if (! isset($allrows)) {
467 if (! isset($limit_to)) {
470 if (! isset($limit_from)) {
473 if (isset($lock_tables)) {
475 PMA_lockTables($db, array($table), "READ");
477 $db, $table, $whatStrucOrData, $export_plugin, $crlf,
478 $err_url, $export_type, $do_relation, $do_comments,
479 $do_mime, $do_dates, $allrows, $limit_to, $limit_from,
487 $db, $table, $whatStrucOrData, $export_plugin, $crlf, $err_url,
488 $export_type, $do_relation, $do_comments, $do_mime, $do_dates,
489 $allrows, $limit_to, $limit_from, $sql_query, $aliases
493 if (! $export_plugin->exportFooter()) {
500 if ($save_on_server && ! empty($message)) {
501 PMA_showExportPage($db, $table, $export_type);
505 * Send the dump as a file...
507 if (empty($asfile)) {
508 echo PMA_getHtmlForDisplayedExportFooter($back_button);
512 // Convert the charset if required.
513 if ($output_charset_conversion) {
514 $dump_buffer = Encoding
::convertString(
521 // Compression needed?
523 if (! empty($separate_files)) {
524 $dump_buffer = PMA_compressExport(
525 $dump_buffer_objects, $compression, $filename
528 $dump_buffer = PMA_compressExport($dump_buffer, $compression, $filename);
533 /* If we saved on server, we have to close file now */
534 if ($save_on_server) {
535 $message = PMA_closeExportFile(
536 $file_handle, $dump_buffer, $save_filename
538 PMA_showExportPage($db, $table, $export_type);