]>
git.p6c8.net - jirafeau_mojo42.git/blob - f.php
3 * Jirafeau, your web file repository
4 * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
5 * Copyright (C) 2015 Jerome Jutteau <j.jutteau@gmail.com>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 define ('JIRAFEAU_ROOT', dirname (__FILE__
) . '/');
22 require (JIRAFEAU_ROOT
. 'lib/lang.php');
23 require (JIRAFEAU_ROOT
. 'lib/config.original.php');
24 require (JIRAFEAU_ROOT
. 'lib/settings.php');
25 require (JIRAFEAU_ROOT
. 'lib/functions.php');
27 if (!isset ($_GET['h']) ||
empty ($_GET['h']))
29 header ('Location: ' . $cfg['web_root']);
33 /* Operations may take a long time.
34 * Be sure PHP's safe mode is off.
40 $link_name = $_GET['h'];
42 if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
44 require (JIRAFEAU_ROOT
.'lib/template/header.php');
45 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') . '</p></div>';
46 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
50 $link = jirafeau_get_link ($link_name);
51 if (count ($link) == 0)
53 require (JIRAFEAU_ROOT
.'lib/template/header.php');
54 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
56 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
61 if (isset ($_GET['d']) && !empty ($_GET['d']) && $_GET['d'] != '1')
62 $delete_code = $_GET['d'];
65 if (isset ($_GET['k']) && !empty ($_GET['k']))
66 $crypt_key = $_GET['k'];
69 if (isset ($_GET['d']) && $_GET['d'] == '1')
73 if (isset ($_GET['p']) && !empty ($_GET['p']))
76 $p = s2p ($link['md5']);
77 if (!file_exists (VAR_FILES
. $p . $link['md5']))
79 jirafeau_delete_link ($link_name);
80 require (JIRAFEAU_ROOT
.'lib/template/header.php');
81 echo '<div class="error"><p>'.t('File not available.').
83 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
87 if (!empty ($delete_code) && $delete_code == $link['link_code'])
89 jirafeau_delete_link ($link_name);
90 require (JIRAFEAU_ROOT
.'lib/template/header.php');
91 echo '<div class="message"><p>'.t('File has been deleted.').
93 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
97 if ($link['time'] != JIRAFEAU_INFINITY
&& time () > $link['time'])
99 jirafeau_delete_link ($link_name);
100 require (JIRAFEAU_ROOT
.'lib/template/header.php');
101 echo '<div class="error"><p>'.
102 t('The time limit of this file has expired.') . ' ' .
103 t('File has been deleted.') .
105 require (JIRAFEAU_ROOT
. 'lib/template/footer.php');
109 if (empty ($crypt_key) && $link['crypted'])
111 require (JIRAFEAU_ROOT
.'lib/template/header.php');
112 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
114 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
118 $password_challenged = false;
119 if (!empty ($link['key']))
121 if (!isset ($_POST['key']))
123 require (JIRAFEAU_ROOT
.'lib/template/header.php');
126 echo $cfg['web_root'] . '/f.php';
128 'method = "post" id = "submit_post">'; ?
>
129 <input type
= "hidden" name
= "jirafeau" value
= "<?php echo JIRAFEAU_VERSION ?>"/><?php
131 '<legend>' . t('Password protection') .
132 '</legend><table><tr><td>' .
133 t('Give the password of this file') . ' : ' .
134 '<input type = "password" name = "key" />' .
137 t('By using our services, you accept our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
140 if ($link['onetime'] == 'O')
142 echo '<tr><td id="self_destruct">' .
143 t('Warning, this file will self-destruct after being read') .
147 ?
><tr
><td
><input type
="submit" id
= "submit_download" value
="<?php echo t('Download'); ?>"
148 onclick
="document.getElementById('submit_post').action='
150 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&d=1';
151 if (!empty($crypt_key))
152 echo '&k=' . urlencode($crypt_key);
154 document.getElementById('submit_download').submit ();"/><?php
155 if ($cfg['download_page'] && $cfg['preview'] && jirafeau_is_viewable($link['mime_type']))
157 ?
><input type
="submit" id
= "submit_preview" value
="<?php echo t('Preview'); ?>"
158 onclick
="document.getElementById('submit_post').action='
160 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&p=1';
161 if (!empty($crypt_key))
162 echo '&k=' . urlencode($crypt_key);
164 document.getElementById('submit_preview').submit ();"/><?php
166 echo '</td></tr></table></fieldset></form></div>';
167 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
172 if ($link['key'] == md5 ($_POST['key']))
173 $password_challenged = true;
176 require (JIRAFEAU_ROOT
.'lib/template/header.php');
177 echo '<div class="error"><p>' . t('Access denied') .
179 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
185 if ($cfg['download_page'] && !$password_challenged && !$do_download && !$do_preview)
187 require (JIRAFEAU_ROOT
.'lib/template/header.php');
190 echo $cfg['web_root'] . '/f.php';
192 'method = "post" id = "submit_post">'; ?
>
193 <input type
= "hidden" name
= "jirafeau" value
= "<?php echo JIRAFEAU_VERSION ?>"/><?php
194 echo '<fieldset><legend>' . $link['file_name'] . '</legend><table>' .
196 t('You are about to download') . ' "' . $link['file_name'] . '" (' . jirafeau_human_size($link['file_size']) . ')' .
199 t('By using our services, you accept our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
202 if ($link['onetime'] == 'O')
204 echo '<tr><td id="self_destruct">' .
205 t('Warning, this file will self-destruct after being read') .
210 <tr
><td
><input type
="submit" id
= "submit_download" value
="<?php echo t('Download'); ?>"
211 onclick
="document.getElementById('submit_post').action='
213 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&d=1';
214 if (!empty($crypt_key))
215 echo '&k=' . urlencode($crypt_key);
217 document.getElementById('submit_post').submit ();"/><?php
219 if ($cfg['download_page'] && $cfg['preview'] && jirafeau_is_viewable($link['mime_type']))
221 ?
><input type
="submit" id
= "submit_preview" value
="<?php echo t('Preview'); ?>"
222 onclick
="document.getElementById('submit_post').action='
224 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&p=1';
225 if (!empty($crypt_key))
226 echo '&k=' . urlencode($crypt_key);
228 document.getElementById('submit_post').submit ();"/><?php
231 echo '</table></fieldset></form></div>';
232 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
236 header ('HTTP/1.0 200 OK');
237 header ('Content-Length: ' . $link['file_size']);
238 if (!jirafeau_is_viewable ($link['mime_type']) ||
!$cfg['preview'] ||
$do_download)
239 header ('Content-Disposition: attachment; filename="' . $link['file_name'] . '"');
241 header ('Content-Disposition: filename="' . $link['file_name'] . '"');
242 header ('Content-Type: ' . $link['mime_type']);
244 /* Read encrypted file. */
245 if ($link['crypted'])
248 $m = mcrypt_module_open('rijndael-256', '', 'ofb', '');
249 /* Extract key and iv. */
250 $md5_key = md5 ($crypt_key);
251 $iv = jirafeau_crypt_create_iv ($md5_key, mcrypt_enc_get_iv_size($m));
253 mcrypt_generic_init ($m, $md5_key, $iv);
255 $r = fopen (VAR_FILES
. $p . $link['md5'], 'r');
258 $dec = mdecrypt_generic($m, fread ($r, 1024));
264 mcrypt_generic_deinit($m);
265 mcrypt_module_close($m);
270 $r = fopen (VAR_FILES
. $p . $link['md5'], 'r');
273 print fread ($r, 1024);
279 if ($link['onetime'] == 'O')
280 jirafeau_delete_link ($link_name);
patrick-canterino.de