1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- include_once "archive/src/Parser.class.php";
- $type = $_REQUEST[ 'type' ];
- if ( $type === 'xmind' ) {
- $file = Parser::toXMind( $_REQUEST['data'] );
- } else if ( $type === 'freemind' ) {
- $file = Parser::toFreeMind( $_REQUEST['data'] );
- }
- if ( empty( $file ) ) {
- print 'parse error: empty data or data invalid!';
- die;
- }
- if (filesize( $file ) == 0) {
- http_response_code(500);
- echo "export failed.";
- die;
- }
- Header ( "Content-type: application/octet-stream" );
- Header ( "Accept-Ranges: bytes" );
- Header ( "Accept-Length: " . filesize ( $file ) );
- $download = isset($_REQUEST['download']);
- if ($download) {
- $downloadName = $_REQUEST[ 'filename' ];
- $downloadName = explode( ".", $downloadName );
- $downloadName = $downloadName[ 0 ];
- $T = array(
- 'xmind' => '.xmind',
- 'freemind' => '.mm'
- );
- Header ( "Content-Disposition: attachment; filename=" . urlencode($downloadName) . $T[ $type ] );
- }
- readfile( $file );
- unlink( $file );
|