]> git.p6c8.net - jirafeau.git/blob - index.php
[BUGFIX] Prevent object ProgressEvent Error
[jirafeau.git] / index.php
1 <?php
2 /*
3 * Jirafeau, your web file repository
4 * Copyright (C) 2013
5 * Jerome Jutteau <j.jutteau@gmail.com>
6 * Jimmy Beauvois <jimmy.beauvois@gmail.com>
7 *
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.
12 *
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.
17 *
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/>.
20 */
21 define('JIRAFEAU_ROOT', dirname(__FILE__) . '/');
22
23 require(JIRAFEAU_ROOT . 'lib/settings.php');
24 require(JIRAFEAU_ROOT . 'lib/functions.php');
25 require(JIRAFEAU_ROOT . 'lib/lang.php');
26
27 check_errors($cfg);
28 if (has_error()) {
29 show_errors();
30 require(JIRAFEAU_ROOT . 'lib/template/footer.php');
31 exit;
32 }
33
34 require(JIRAFEAU_ROOT . 'lib/template/header.php');
35
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)) {
41 session_start();
42
43 // Logout action
44 if (isset($_POST['action']) && (strcmp($_POST['action'], 'logout') == 0)) {
45 session_unset();
46 }
47
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'];
54 } else {
55 $_SESSION['admin_auth'] = false;
56 jirafeau_fatal_error(t('Wrong password.'), $cfg);
57 }
58 }
59
60 // Show login form if user session is not authorized yet
61 if (true === empty($_SESSION['upload_auth'])) {
62 ?>
63 <form method="post" class="form login">
64 <fieldset>
65 <table>
66 <tr>
67 <td class = "label"><label for = "enter_password">
68 <?php echo t('Upload password') . ':'; ?></label>
69 </td>
70 <td class = "field"><input type = "password"
71 name = "upload_password" id = "upload_password"
72 size = "40" />
73 </td>
74 </tr>
75 <tr class = "nav">
76 <td></td>
77 <td class = "nav next">
78 <input type = "submit" name = "key" value =
79 "<?php echo t('Login'); ?>" />
80 </td>
81 </tr>
82 </table>
83 </fieldset>
84 </form>
85 <?php
86 require(JIRAFEAU_ROOT.'lib/template/footer.php');
87 exit;
88 }
89 }
90 }
91 else {
92 jirafeau_fatal_error(t('Access denied'), $cfg);
93 }
94
95 ?>
96 <div id="upload_finished">
97 <p><?php echo t('File uploaded !') ?></p>
98
99 <div id="upload_finished_download_page">
100 <p>
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>
103 </p>
104 </div>
105
106 <?php if ($cfg['preview'] == true) {
107 ?>
108 <div id="upload_finished_preview">
109 <p><a id="preview_link" href=""><?php echo t('View link') ?></a></p>
110 </div>
111 <?php
112 } ?>
113
114 <div id="upload_direct_download">
115 <p><a id="direct_link" href=""><?php echo t('Direct download link') ?></a></p>
116 </div>
117
118 <div id="upload_delete">
119 <p><a id="delete_link" href=""><?php echo t('Delete link') ?></a></p>
120 </div>
121
122 <div id="upload_validity">
123 <p><?php echo t('This file is valid until the following date'); ?>:</p>
124 <p id="date"></p>
125 </div>
126 </div>
127
128 <div id="uploading">
129 <p>
130 <?php echo t('Uploading ...'); ?>
131 <div id="uploaded_percentage"></div>
132 <div id="uploaded_speed"></div>
133 <div id="uploaded_time"></div>
134 </p>
135 </div>
136
137 <div id="error_pop" class="error">
138 </div>
139
140 <div id="upload">
141 <fieldset>
142 <legend>
143 <?php echo t('Select a file'); ?>
144 </legend>
145 <p>
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"; ?>')"/>
148 </p>
149
150 <div id="options">
151 <table id="option_table">
152 <tr>
153 <td><?php echo t('One time download'); ?>:</td>
154 <td><input type="checkbox" id="one_time_download" /></td>
155 </tr>
156 <tr>
157 <td><label for="input_key"><?php echo t('Password') . ':'; ?></label></td>
158 <td><input type="text" name="key" id="input_key" /></td>
159 </tr>
160 <tr>
161 <td><label for="select_time"><?php echo t('Time limit') . ':'; ?></label></td>
162 <td><select name="time" id="select_time">
163 <?php
164 $expirationTimeOptions = array(
165 array(
166 'value' => 'minute',
167 'label' => 'One minute'
168 ),
169 array(
170 'value' => 'hour',
171 'label' => 'One hour'
172 ),
173 array(
174 'value' => 'day',
175 'label' => 'One day'
176 ),
177 array(
178 'value' => 'week',
179 'label' => 'One week'
180 ),
181 array(
182 'value' => 'month',
183 'label' => 'One month'
184 ),
185 array(
186 'value' => 'quarter',
187 'label' => 'One quarter'
188 ),
189 array(
190 'value' => 'year',
191 'label' => 'One year'
192 ),
193 array(
194 'value' => 'none',
195 'label' => 'None'
196 )
197 );
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>';
203 }
204 }
205 ?>
206 </select></td>
207 </tr>
208
209 <?php
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>";
213 }
214 ?>
215
216 <p id="max_file_size" class="config"></p>
217 <p>
218 <?php
219 if (jirafeau_has_upload_password($cfg) && $_SESSION['upload_auth']) {
220 ?>
221 <input type="hidden" id="upload_password" name="upload_password" value="<?php echo $_SESSION['user_upload_password'] ?>"/>
222 <?php
223
224 } else {
225 ?>
226 <input type="hidden" id="upload_password" name="upload_password" value=""/>
227 <?php
228
229 }
230 ?>
231 <input type="submit" id="send" value="<?php echo t('Send'); ?>"
232 onclick="
233 document.getElementById('upload').style.display = 'none';
234 document.getElementById('uploading').style.display = '';
235 upload (<?php echo jirafeau_get_max_upload_size_bytes(); ?>);
236 "/>
237 </p>
238 </table>
239 </div> </fieldset>
240
241 <?php
242 if (jirafeau_has_upload_password($cfg)) {
243 ?>
244 <form method="post" class="form logout">
245 <input type = "hidden" name = "action" value = "logout"/>
246 <input type = "submit" value = "<?php echo t('Logout'); ?>" />
247 </form>
248 <?php
249
250 }
251 ?>
252
253 </div>
254
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();
264 ?>';
265 </script>
266 <?php require(JIRAFEAU_ROOT . 'lib/template/footer.php'); ?>

patrick-canterino.de