]>
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) 2012 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.
38 $link_name = $_GET['h'];
40 if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
42 require (JIRAFEAU_ROOT
.'lib/template/header.php');
43 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') . '</p></div>';
44 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
48 $link = jirafeau_get_link ($link_name);
49 if (count ($link) == 0)
51 require (JIRAFEAU_ROOT
.'lib/template/header.php');
52 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
54 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
59 if (isset ($_GET['d']) && !empty ($_GET['d']))
60 $delete_code = $_GET['d'];
63 if (isset ($_GET['k']) && !empty ($_GET['k']))
64 $crypt_key = $_GET['k'];
66 $button_download = false;
67 if (isset ($_GET['bd']) && !empty ($_GET['bd']))
68 $button_download = true;
70 $button_preview = false;
71 if (isset ($_GET['bp']) && !empty ($_GET['bp']))
72 $button_preview = true;
74 $p = s2p ($link['md5']);
75 if (!file_exists (VAR_FILES
. $p . $link['md5']))
77 jirafeau_delete_link ($link_name);
78 require (JIRAFEAU_ROOT
.'lib/template/header.php');
79 echo '<div class="error"><p>'.t('File not available.').
81 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
85 if (!empty ($delete_code) && $delete_code == $link['link_code'])
87 jirafeau_delete_link ($link_name);
88 require (JIRAFEAU_ROOT
.'lib/template/header.php');
89 echo '<div class="message"><p>'.t('File has been deleted.').
91 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
95 if ($link['time'] != JIRAFEAU_INFINITY
&& time () > $link['time'])
97 jirafeau_delete_link ($link_name);
98 require (JIRAFEAU_ROOT
.'lib/template/header.php');
99 echo '<div class="error"><p>'.
100 t('The time limit of this file has expired.') . ' ' .
101 t('File has been deleted.') .
103 require (JIRAFEAU_ROOT
. 'lib/template/footer.php');
107 if (empty ($crypt_key) && $link['crypted'])
109 require (JIRAFEAU_ROOT
.'lib/template/header.php');
110 echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
112 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
116 $password_challenged = false;
117 if (!empty ($link['key']))
119 if (!isset ($_POST['key']))
121 require (JIRAFEAU_ROOT
.'lib/template/header.php');
124 echo $cfg['web_root'] . '/f.php';
126 'method = "post" id = "submit">'; ?
>
127 <input type
= "hidden" name
= "jirafeau" value
= "<?php echo JIRAFEAU_VERSION ?>"/><?php
129 '<legend>' . t('Password protection') .
130 '</legend><table><tr><td>' .
131 t('Give the password of this file') . ' : ' .
132 '<input type = "password" name = "key" />' .
135 t('By using our services, you accept of our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
138 ?
><input type
="submit" id
= "submit_download" value
="<?php echo t('Download'); ?>"
139 onclick
="document.getElementById('submit').action='
141 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&bd=1';
142 if (!empty($crypt_key))
143 echo '&k=' . urlencode($crypt_key);
145 document.getElementById('submit_download').submit ();"/><?php
146 if ($cfg['download_page'] && $cfg['preview'])
148 ?
><input type
="submit" id
= "submit_preview" value
="<?php echo t('Preview'); ?>"
149 onclick
="document.getElementById('submit').action='
151 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&bp=1';
152 if (!empty($crypt_key))
153 echo '&k=' . urlencode($crypt_key);
155 document.getElementById('submit_preview').submit ();"/><?php
157 echo '</td></tr></table></fieldset></form></div>';
158 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
163 if ($link['key'] == md5 ($_POST['key']))
164 $password_challenged = true;
167 header ("Access denied");
168 require (JIRAFEAU_ROOT
.'lib/template/header.php');
169 echo '<div class="error"><p>' . t('Access denied') .
171 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
177 if ($cfg['download_page'] && !$password_challenged && !$button_download && !$button_preview)
179 require (JIRAFEAU_ROOT
.'lib/template/header.php');
182 echo $cfg['web_root'] . '/f.php';
184 'method = "post" id = "submit">'; ?
>
185 <input type
= "hidden" name
= "jirafeau" value
= "<?php echo JIRAFEAU_VERSION ?>"/><?php
186 echo '<fieldset><legend>' . $link['file_name'] . '</legend><table>' .
188 t('You are about to download') . ' "' . $link['file_name'] . '" (' . jirafeau_human_size($link['file_size']) . ')' .
191 t('By using our services, you accept of our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>';
192 ?
></td
></tr
><tr
><td
><input type
="submit" id
= "submit_download" value
="<?php echo t('Download'); ?>"
193 onclick
="document.getElementById('submit').action='
195 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&bd=1';
196 if (!empty($crypt_key))
197 echo '&k=' . urlencode($crypt_key);
199 document.getElementById('submit_download').submit ();"/><?php
201 if ($cfg['download_page'] && $cfg['preview'])
203 ?
><input type
="submit" id
= "submit_preview" value
="<?php echo t('Preview'); ?>"
204 onclick
="document.getElementById('submit').action='
206 echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&bp=1';
207 if (!empty($crypt_key))
208 echo '&k=' . urlencode($crypt_key);
210 document.getElementById('submit_preview').submit ();"/><?php
213 echo '</table></fieldset></form></div>';
214 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
218 header ('HTTP/1.0 200 OK');
219 header ('Content-Length: ' . $link['file_size']);
220 if (!jirafeau_is_viewable ($link['mime_type']) ||
!$cfg['preview'] ||
$button_download)
221 header ('Content-Disposition: attachment; filename="' .
222 $link['file_name'] . '"');
224 header ('Content-Type: ' . $link['mime_type']);
226 /* Read encrypted file. */
227 if ($link['crypted'])
230 $m = mcrypt_module_open('rijndael-256', '', 'ofb', '');
231 /* Extract key and iv. */
232 $md5_key = md5 ($crypt_key);
233 $iv = jirafeau_crypt_create_iv ($md5_key, mcrypt_enc_get_iv_size($m));
235 mcrypt_generic_init ($m, $md5_key, $iv);
237 $r = fopen (VAR_FILES
. $p . $link['md5'], 'r');
240 $dec = mdecrypt_generic($m, fread ($r, 1024));
246 mcrypt_generic_deinit($m);
247 mcrypt_module_close($m);
252 $r = fopen (VAR_FILES
. $p . $link['md5'], 'r');
255 print fread ($r, 1024);
261 if ($link['onetime'] == 'O')
262 jirafeau_delete_link ($link_name);
patrick-canterino.de