' . t('Sorry, the requested file is not found') .
+$link = jirafeau_get_link($link_name);
+if (count($link) == 0) {
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
+ echo '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+ require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
$delete_code = '';
-if (isset ($_GET['d']) && !empty ($_GET['d']) && $_GET['d'] != '1')
+if (isset($_GET['d']) && !empty($_GET['d']) && $_GET['d'] != '1') {
$delete_code = $_GET['d'];
+}
$crypt_key = '';
-if (isset ($_GET['k']) && !empty ($_GET['k']))
+if (isset($_GET['k']) && !empty($_GET['k'])) {
$crypt_key = $_GET['k'];
+}
$do_download = false;
-if (isset ($_GET['d']) && $_GET['d'] == '1')
+if (isset($_GET['d']) && $_GET['d'] == '1') {
$do_download = true;
+}
$do_preview = false;
-if (isset ($_GET['p']) && !empty ($_GET['p']))
+if (isset($_GET['p']) && !empty($_GET['p'])) {
$do_preview = true;
+}
-$p = s2p ($link['md5']);
-if (!file_exists (VAR_FILES . $p . $link['md5']))
-{
- jirafeau_delete_link ($link_name);
- require (JIRAFEAU_ROOT.'lib/template/header.php');
- echo '
'.t('File not available.').
+$p = s2p($link['hash']);
+if (!file_exists(VAR_FILES . $p . $link['hash'])) {
+ jirafeau_delete_link($link_name);
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
+ echo '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+ require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
-if (!empty ($delete_code) && $delete_code == $link['link_code'])
-{
- jirafeau_delete_link ($link_name);
- require (JIRAFEAU_ROOT.'lib/template/header.php');
- echo '
'.t('File has been deleted.').
- '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+if (!empty($delete_code) && $delete_code == $link['link_code']) {
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
+ if (isset($_POST['do_delete'])) {
+ jirafeau_delete_link($link_name);
+ echo '
';
+ } else { ?>
+
$link['time'])
-{
- jirafeau_delete_link ($link_name);
- require (JIRAFEAU_ROOT.'lib/template/header.php');
+if ($link['time'] != JIRAFEAU_INFINITY && time() > $link['time']) {
+ jirafeau_delete_link($link_name);
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
echo '
'.
- t('The time limit of this file has expired.') . ' ' .
- t('File has been deleted.') .
+ t('FILE_EXPIRED') . ' ' .
+ t('FILE_DELETED') .
'
';
- require (JIRAFEAU_ROOT . 'lib/template/footer.php');
+ require(JIRAFEAU_ROOT . 'lib/template/footer.php');
exit;
}
-if (empty ($crypt_key) && $link['crypted'])
-{
- require (JIRAFEAU_ROOT.'lib/template/header.php');
- echo '
' . t('Sorry, the requested file is not found') .
+if (empty($crypt_key) && $link['crypted']) {
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
+ echo '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+ require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
$password_challenged = false;
-if (!empty ($link['key']))
-{
- if (!isset ($_POST['key']))
- {
- require (JIRAFEAU_ROOT.'lib/template/header.php');
+if (!empty($link['key'])) {
+ if (!isset($_POST['key'])) {
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
echo '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+ require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
- }
- else
- {
- if ($link['key'] == md5 ($_POST['key']))
+ } else {
+ if ($link['key'] == md5($_POST['key'])) {
$password_challenged = true;
- else
- {
- header ("Access denied");
- require (JIRAFEAU_ROOT.'lib/template/header.php');
- echo '
' . t('Access denied') .
+ } else {
+ sleep(2);
+ require(JIRAFEAU_ROOT.'lib/template/header.php');
+ echo '
';
- require (JIRAFEAU_ROOT.'lib/template/footer.php');
+ require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
}
}
-if ($cfg['download_page'] && !$password_challenged && !$do_download && !$do_preview)
-{
- require (JIRAFEAU_ROOT.'lib/template/header.php');
- echo '