3 * Jirafeau, your web file repository
5 * Jerome Jutteau <j.jutteau@gmail.com>
6 * Jimmy Beauvois <jimmy.beauvois@gmail.com>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 define('JIRAFEAU_ROOT', dirname(__FILE__
) . '/');
23 require(JIRAFEAU_ROOT
. 'lib/settings.php');
24 require(JIRAFEAU_ROOT
. 'lib/functions.php');
25 require(JIRAFEAU_ROOT
. 'lib/lang.php');
30 require(JIRAFEAU_ROOT
. 'lib/template/footer.php');
34 require(JIRAFEAU_ROOT
. 'lib/template/header.php');
36 /* Check if user is allowed to upload. */
37 // First check: Challenge by IP
38 if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg))) {
39 // Is an upload password required?
40 if (jirafeau_has_upload_password($cfg)) {
44 if (isset($_POST['action']) && (strcmp($_POST['action'], 'logout') == 0)) {
48 // Challenge by password
49 // …save successful logins in session
50 if (isset($_POST['upload_password'])) {
51 if (jirafeau_challenge_upload_password($cfg, $_POST['upload_password'])) {
52 $_SESSION['upload_auth'] = true;
53 $_SESSION['user_upload_password'] = $_POST['upload_password'];
55 $_SESSION['admin_auth'] = false;
56 jirafeau_fatal_error(t('Wrong password.'), $cfg);
60 // Show login form if user session is not authorized yet
61 if (true === empty($_SESSION['upload_auth'])) {
63 <form method
="post" class="form login">
67 <td
class = "label"><label
for = "enter_password">
68 <?php
echo t('Upload password') . ':'; ?
></label
>
70 <td
class = "field"><input type
= "password"
71 name
= "upload_password" id
= "upload_password"
77 <td
class = "nav next">
78 <input type
= "submit" name
= "key" value
=
79 "<?php echo t('Login'); ?>" />
86 require(JIRAFEAU_ROOT
.'lib/template/footer.php');
92 jirafeau_fatal_error(t('Access denied'), $cfg);
96 <div id
="upload_finished">
97 <p
><?php
echo t('File uploaded !') ?
></p
>
99 <div id
="upload_finished_download_page">
101 <a id
="upload_link" href
=""><?php
echo t('Download page') ?
></a
>
102 <a id
="upload_link_email" href
=""><img id
="upload_image_email"/></a
>
106 <?php
if ($cfg['preview'] == true) {
108 <div id
="upload_finished_preview">
109 <p
><a id
="preview_link" href
=""><?php
echo t('View link') ?
></a
></p
>
114 <div id
="upload_direct_download">
115 <p
><a id
="direct_link" href
=""><?php
echo t('Direct download link') ?
></a
></p
>
118 <div id
="upload_delete">
119 <p
><a id
="delete_link" href
=""><?php
echo t('Delete link') ?
></a
></p
>
122 <div id
="upload_validity">
123 <p
><?php
echo t('This file is valid until the following date'); ?
>:</p
>
130 <?php
echo t('Uploading ...'); ?
>
131 <div id
="uploaded_percentage"></div
>
132 <div id
="uploaded_speed"></div
>
133 <div id
="uploaded_time"></div
>
137 <div id
="error_pop" class="error">
143 <?php
echo t('Select a file'); ?
>
146 <input type
="file" id
="file_select" size
="30"
147 onchange
="control_selected_file_size(<?php echo $cfg['maximal_upload_size'] ?>, '<?php echo t('File is too big') . ', ' . t('File size is limited to') . " " . $cfg['maximal_upload_size'] . " MB
"; ?>')"/>
151 <table id
="option_table">
153 <td
><?php
echo t('One time download'); ?
>:</td
>
154 <td
><input type
="checkbox" id
="one_time_download" /></td
>
157 <td
><label
for="input_key"><?php
echo t('Password') . ':'; ?
></label
></td
>
158 <td
><input type
="text" name
="key" id
="input_key" /></td
>
161 <td
><label
for="select_time"><?php
echo t('Time limit') . ':'; ?
></label
></td
>
162 <td
><select name
="time" id
="select_time">
164 $expirationTimeOptions = array(
167 'label' => 'One minute'
171 'label' => 'One hour'
179 'label' => 'One week'
183 'label' => 'One month'
186 'value' => 'quarter',
187 'label' => 'One quarter'
191 'label' => 'One year'
198 foreach ($expirationTimeOptions as $expirationTimeOption) {
199 $selected = ($expirationTimeOption['value'] === $cfg['availability_default'])?
'selected="selected"' : '';
200 if (true === $cfg['availabilities'][$expirationTimeOption['value']]) {
201 echo '<option value="' . $expirationTimeOption['value'] . '" ' .
202 $selected . '>' . t($expirationTimeOption['label']) . '</option>';
210 if ($cfg['maximal_upload_size'] > 0) {
211 echo '<p class="config">' . t('File size is limited to');
212 echo " " . $cfg['maximal_upload_size'] . " MB</p>";
216 <p id
="max_file_size" class="config"></p
>
219 if (jirafeau_has_upload_password($cfg) && $_SESSION['upload_auth']) {
221 <input type
="hidden" id
="upload_password" name
="upload_password" value
="<?php echo $_SESSION['user_upload_password'] ?>"/>
226 <input type
="hidden" id
="upload_password" name
="upload_password" value
=""/>
231 <input type
="submit" id
="send" value
="<?php echo t('Send'); ?>"
233 document.getElementById('upload').style.display = 'none';
234 document.getElementById('uploading').style.display = '';
235 upload (<?php echo jirafeau_get_max_upload_size_bytes(); ?>);
242 if (jirafeau_has_upload_password($cfg)) {
244 <form method
="post" class="form logout">
245 <input type
= "hidden" name
= "action" value
= "logout"/>
246 <input type
= "submit" value
= "<?php echo t('Logout'); ?>" />
255 <script type
="text/javascript" lang
="Javascript">
256 document
.getElementById('error_pop').style
.display
= 'none';
257 document
.getElementById('uploading').style
.display
= 'none';
258 document
.getElementById('upload_finished').style
.display
= 'none';
259 document
.getElementById('options').style
.display
= 'none';
260 document
.getElementById('send').style
.display
= 'none';
261 if (!check_html5_file_api ())
262 document
.getElementById('max_file_size').innerHTML
= '<?php
263 echo t('You browser may not support HTML5 so the maximum file size is
') . jirafeau_get_max_upload_size();
266 <?php
require(JIRAFEAU_ROOT
. 'lib/template/footer.php'); ?
>