X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/d98c495abf51c2581b2d8b1edfc09004f5defcde..4e94acfa77564a30dfda5a2fb57f978446265e6c:/script.php?ds=sidebyside diff --git a/script.php b/script.php index d17978c..cafd10c 100644 --- a/script.php +++ b/script.php @@ -14,7 +14,7 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . */ /* @@ -50,156 +50,14 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) require (JIRAFEAU_ROOT . 'lib/template/footer.php'); exit; } - echo '
'; - echo '

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

'; - echo '

'; - echo t('This interface permits to script your uploads and downloads.') . - ' ' . t('The instructions above show how to query this interface.'); - echo '

'; - - echo '

' . t('Get Jirafeau\'s version') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "get_version=1 (" . t('Required') . ")
"; - echo '

'; - echo '

' . t('This will return brut text content.') . ' ' . - t('First line is the version number.') . '

'; - echo '

'; - echo t('Example') . ": " . $web_root . "script.php?get_version=1 "; - echo '

'; - - echo '

' . t('Get server capacity') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "get_capacity=1 (" . t('Required') . ")
"; - echo '

'; - echo '

' . t('This will return brut text content.') . ' ' . - t('First line is the server capacity (in Bytes).') . '

'; - echo '

'; - echo t('Example') . ": " . $web_root . "script.php?get_capacity=1 "; - echo '

'; - - echo '

' . t('Maximal allowed size of an uploaded file') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "get_maximal_upload_size=1 (" . t('Required') . ")
"; - echo '

'; - echo '

' . t('This will return brut text content.') . ' ' . - t('First line returns size (in MB).') . '

'; - echo '

'; - echo t('Example') . ": " . $web_root . "script.php?get_maximal_upload_size=1 "; - echo '

'; - - echo '

' . t('Upload a file') . ':

'; - echo '

'; - echo t('Send a POST query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "file=C:\\your\\file\\path (" . t('Required') . ")
"; - echo "time=[minute|hour|day|week|month|year|none] (" . t('Optional') . ', '. t('default: none') . ")
"; - echo "password=your_password (" . t('Optional') . ")
"; - echo "one_time_download=1 (" . t('Optional') . ")
"; - echo "upload_password=your_upload_password (" . t('Optional') . ")
"; - echo '

'; - echo '

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

'; - - echo '

' . t('Get a file') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "h=your_download_reference (" . t('Required') . ")
"; - echo '

'; - echo '

'; - echo t('If a password has been set, send a POST request with it.'); - echo '
'; - echo t('Parameters') . ':
'; - echo "password=your_password (" . t('Optional') . ")
"; - echo '

'; - echo '

'; - echo t('Example') . ": " . $web_root . "script.php?h=30ngy0hsDcpfrF8zR7x9iU "; - echo '

'; - - echo '

' . t('Delete a file') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "h=your_download_reference (" . t('Required') . ")
"; - echo "d=yout_delete_code (" . t('Required') . ")
"; - echo '

'; - echo '

' . t('This will return "Ok" if succeeded, "Error" otherwhise.') . '

'; - echo '

'; - echo t('Example') . ": " . $web_root . "script.php?h=30ngy0hsDcpfrF8zR7x9iU&d=0d210a952 "; - echo '

'; - - echo '

' . t('Get a generated script') . ':

'; - echo '

'; - echo t('Send a GET query to') . ': ' . $web_root . 'script.php
'; - echo '
'; - echo t('Parameters') . ':
'; - echo "lang=["; - foreach ($script_langages as $lang => $name) - echo $lang; - echo "] (" . t('Required') . ")
"; - echo '

'; - echo '

' . t('This will return brut text content of the code.') . '

'; - echo '

'; - echo t('Example') . ":
"; - foreach ($script_langages as $lang => $name) - echo "$name: " . $web_root . "script.php?lang=$lang "; - echo '

'; - - echo '

' . t('Initalize an asynchronous transfer') . ':

'; - echo '

'; - echo t('The goal is to permit to transfer 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|year|none] (" . t('Optional') . ', '. t('default: none') . ")
"; - echo "password=your_password (" . t('Optional') . ")
"; - echo "one_time_download=1 (" . t('Optional') . ")
"; - echo "upload_password=your_upload_password (" . t('Optional') . ")
"; - echo '

'; - echo '

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

'; - - echo '

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

'; - 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 transfer') . ':

'; - 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 '

'; + ?> +
+

Scripting interface

+

This interface permits to script your uploads and downloads.

+

See source code of this interface to get available calls :)

+
+
+ 0 && $_FILES['file']['size'] > $cfg['maximal_upload_size'] * 1024 * 1024) { - echo "Error"; + echo 'Error'; exit; } @@ -283,7 +141,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES) if (empty($res) || $res['error']['has_error']) { - echo "Error"; + echo 'Error'; exit; } /* Print direct link. */ @@ -307,14 +165,14 @@ elseif (isset ($_GET['h'])) if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name)) { - echo "Error"; + echo 'Error'; exit; } $link = jirafeau_get_link ($link_name); if (count ($link) == 0) { - echo "Error"; + echo 'Error'; exit; } if (strlen ($d) > 0 && $d == $link['link_code']) @@ -326,18 +184,18 @@ elseif (isset ($_GET['h'])) if ($link['time'] != JIRAFEAU_INFINITY && time () > $link['time']) { jirafeau_delete_link ($link_name); - echo "Error"; + echo 'Error'; exit; } if (strlen ($link['key']) > 0 && md5 ($key) != $link['key']) { - echo "Error"; + echo 'Error'; exit; } $p = s2p ($link['md5']); if (!file_exists (VAR_FILES . $p . $link['md5'])) { - echo "Error"; + echo 'Error'; exit; } @@ -504,7 +362,7 @@ fi } else { - echo "Error"; + echo 'Error'; exit; } } @@ -514,7 +372,7 @@ elseif (isset ($_GET['alias_create'])) $ip = get_ip_address($cfg); if (!jirafeau_challenge_upload_ip ($cfg, $ip)) { - echo "Error"; + echo 'Error'; exit; } @@ -522,7 +380,7 @@ elseif (isset ($_GET['alias_create'])) (!isset ($_POST['upload_password']) || !jirafeau_challenge_upload_password ($cfg, $_POST['upload_password']))) { - echo "Error"; + echo 'Error'; exit; } @@ -530,7 +388,7 @@ elseif (isset ($_GET['alias_create'])) !isset ($_POST['destination']) || !isset ($_POST['password'])) { - echo "Error"; + echo 'Error'; exit; } @@ -544,7 +402,7 @@ elseif (isset ($_GET['alias_get'])) { if (!isset ($_POST['alias'])) { - echo "Error"; + echo 'Error'; exit; } @@ -557,7 +415,7 @@ elseif (isset ($_GET['alias_update'])) !isset ($_POST['destination']) || !isset ($_POST['password'])) { - echo "Error"; + echo 'Error'; exit; } @@ -577,7 +435,7 @@ elseif (isset ($_GET['alias_delete'])) if (!isset ($_POST['alias']) || !isset ($_POST['password'])) { - echo "Error"; + echo 'Error'; exit; } @@ -589,7 +447,7 @@ elseif (isset ($_GET['init_async'])) { if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg))) { - echo "Error"; + echo 'Error'; exit; } @@ -597,13 +455,13 @@ elseif (isset ($_GET['init_async'])) (!isset ($_POST['upload_password']) || !jirafeau_challenge_upload_password ($cfg, $_POST['upload_password']))) { - echo "Error"; + echo 'Error'; exit; } if (!isset ($_POST['filename'])) { - echo "Error"; + echo 'Error'; exit; } @@ -618,7 +476,7 @@ elseif (isset ($_GET['init_async'])) $time = time (); if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']]) { - echo "Error"; + echo 'Error'; exit; } else @@ -659,7 +517,7 @@ elseif (isset ($_GET['push_async'])) if ((!isset ($_POST['ref'])) || (!isset ($_FILES['data'])) || (!isset ($_POST['code']))) - echo "Error"; + echo 'Error'; else { echo jirafeau_async_push ($_POST['ref'], @@ -673,12 +531,11 @@ elseif (isset ($_GET['end_async'])) { if (!isset ($_POST['ref']) || !isset ($_POST['code'])) - echo "Error"; + echo 'Error'; else echo jirafeau_async_end ($_POST['ref'], $_POST['code'], $cfg['enable_crypt'], $cfg['link_name_length']); } else - echo "Error"; + echo 'Error'; exit; ?> -