X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/e788e47fbd5f963e03de3b7eba41580f1f00dd0f..11e172891035764434fbf06bc4a6f1ff0b04fdca:/script.php?ds=sidebyside diff --git a/script.php b/script.php index 8968aac..396538c 100755 --- a/script.php +++ b/script.php @@ -30,19 +30,19 @@ require (JIRAFEAU_ROOT . 'lib/settings.php'); require (JIRAFEAU_ROOT . 'lib/functions.php'); require (JIRAFEAU_ROOT . 'lib/lang.php'); -if (file_exists (JIRAFEAU_ROOT . 'install.php')) -{ - header('Content-Type: text; charset=utf-8'); - echo "Error"; - exit; -} - global $script_langages; $script_langages = array ('bash' => 'Bash'); if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); + check_errors (); + if (has_error ()) + { + show_errors (); + require (JIRAFEAU_ROOT . 'lib/template/footer.php'); + exit; + } echo '
'; echo '

' . t('Welcome to Jirafeau\'s query interface') . '

'; echo '

'; @@ -135,6 +135,47 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) foreach ($script_langages as $lang => $name) echo "$name: " . $web_root . "script.php?lang=$lang "; echo '

'; + + echo '

' . t('Initalize a asynchronous transfert') . ':

'; + echo '

'; + echo t('The goal is to permit to transfert big file, chunk by chunk.') . ' '; + echo t('Chunks of data must be sent in order.'); + echo '

'; + echo '

'; + echo t('Send a GET query to') . ': ' . $web_root . 'script.php?init_async
'; + echo '
'; + echo t('Parameters') . ':
'; + echo "filename=file_name.ext (" . t('Required') . ")
"; + echo "type=MIME_TYPE (" . t('Optional') . ")
"; + echo "time=[minute|hour|day|week|month|none] (" . t('Optional') . ', '. t('default: none') . ")
"; + echo "password=your_password (" . t('Optional') . ")
"; + echo "one_time_download=1 (" . t('Optional') . ")
"; + echo '

'; + echo '

' . t('This will return brut text content.') . ' ' . + t('First line is the asynchronous transfert reference and the second line the code to use in the next operation.') . '

'; + + echo '

' . t('Push data during asynchronous transfert') . ':

'; + echo '

'; + echo t('Send a GET query to') . ': ' . $web_root . 'script.php?push_async
'; + echo '
'; + echo t('Parameters') . ':
'; + echo "ref=async_reference (" . t('Required') . ")
"; + echo "data=data_chunk (" . t('Required') . ")
"; + echo "code=last_provided_code (" . t('Required') . ")
"; + echo '

'; + echo '

' . t('This will return brut text content.') . ' ' . + t('Returns the next code to use.') . '

'; + + echo '

' . t('Finalize asynchronous transfert') . ':

'; + echo '

'; + echo t('Send a GET query to') . ': ' . $web_root . 'script.php?end_async
'; + echo '
'; + echo t('Parameters') . ':
'; + echo "ref=async_reference (" . t('Required') . ")
"; + echo "code=last_provided_code (" . t('Required') . ")
"; + echo '

'; + echo '

' . t('This will return brut text content.') . ' ' . + t('First line is the download reference and the second line the delete code.') . '

'; echo '

'; require (JIRAFEAU_ROOT . 'lib/template/footer.php'); @@ -238,11 +279,19 @@ elseif (isset ($_GET['h'])) exit; } + /* Read file. */ header ('Content-Length: ' . $link['file_size']); header ('Content-Type: ' . $link['mime_type']); header ('Content-Disposition: attachment; filename="' . $link['file_name'] . '"'); - readfile (VAR_FILES . $p . $link['md5']); + + $r = fopen (VAR_FILES . $p . $link['md5'], 'r'); + while (!feof ($r)) + { + print fread ($r, 1024); + ob_flush(); + } + fclose ($r); if ($link['onetime'] == 'O') jirafeau_delete_link ($link_name); @@ -393,7 +442,75 @@ fi exit; } } +/* Initialize an asynchronous upload. */ +elseif (isset ($_GET['init_async'])) +{ + if (!isset ($_POST['filename'])) + { + echo "Error"; + exit; + } + + $type = ''; + if (isset ($_POST['type'])) + $type = $_POST['type']; + + $key = ''; + if (isset ($_POST['password'])) + $key = $_POST['password']; + + $time = time (); + if (!isset ($_POST['time'])) + $time = JIRAFEAU_INFINITY; + else + switch ($_POST['time']) + { + case 'minute': + $time += JIRAFEAU_MINUTE; + break; + case 'hour': + $time += JIRAFEAU_HOUR; + break; + case 'day': + $time += JIRAFEAU_DAY; + break; + case 'week': + $time += JIRAFEAU_WEEK; + break; + case 'month': + $time += JIRAFEAU_MONTH; + break; + default: + $time = JIRAFEAU_INFINITY; + break; + } + echo jirafeau_async_init ($_POST['filename'], + $type, + isset ($_POST['one_time_download']), + $key, + $time, + $_SERVER['REMOTE_ADDR']); +} +/* Continue an asynchronous upload. */ +elseif (isset ($_GET['push_async'])) +{ + if ((!isset ($_POST['ref'])) + || (!isset ($_FILES['data'])) + || (!isset ($_POST['code']))) + echo "Error"; + else + echo jirafeau_async_push ($_POST['ref'], $_FILES['data'], $_POST['code']); +} +/* Finalize an asynchronous upload. */ +elseif (isset ($_GET['end_async'])) +{ + if (!isset ($_POST['ref']) + || !isset ($_POST['code'])) + echo "Error"; + else + echo jirafeau_async_end ($_POST['ref'], $_POST['code']); +} else echo "Error"; exit; -?> \ No newline at end of file +?>