]> git.p6c8.net - jirafeau_mojo42.git/blob - index.php
fb5f1e5384a879a4e1ee6aa4cb9f041d96cf9199
[jirafeau_mojo42.git] / index.php
1 <?php
2 /*
3 * Jirafeau, your web file repository
4 * Copyright (C) 2013
5 * Jerome Jutteau <jerome@jutteau.fr>
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 session_start();
22 define('JIRAFEAU_ROOT', dirname(__FILE__) . '/');
23
24 require(JIRAFEAU_ROOT . 'lib/settings.php');
25 require(JIRAFEAU_ROOT . 'lib/functions.php');
26 require(JIRAFEAU_ROOT . 'lib/lang.php');
27
28 check_errors($cfg);
29 if (has_error()) {
30 show_errors();
31 require(JIRAFEAU_ROOT . 'lib/template/footer.php');
32 exit;
33 }
34
35 require(JIRAFEAU_ROOT . 'lib/template/header.php');
36
37 /* Check if user is allowed to upload. */
38 // First check: Challenge by IP NO PASSWORD
39 if (true === jirafeau_challenge_upload_ip_without_password($cfg, get_ip_address($cfg))) {
40 $_SESSION['upload_auth'] = true;
41 $_POST['upload_password'] = '';
42 $_SESSION['user_upload_password'] = $_POST['upload_password'];
43 }
44 // Second check: Challenge by IP
45 elseif (true === jirafeau_challenge_upload_ip($cfg, get_ip_address($cfg))) {
46 // Is an upload password required?
47 if (jirafeau_has_upload_password($cfg)) {
48 // Logout action
49 if (isset($_POST['action']) && (strcmp($_POST['action'], 'logout') == 0)) {
50 session_unset();
51 }
52
53 // Challenge by password
54 // …save successful logins in session
55 if (isset($_POST['upload_password'])) {
56 if (jirafeau_challenge_upload_password($cfg, $_POST['upload_password'])) {
57 $_SESSION['upload_auth'] = true;
58 $_SESSION['user_upload_password'] = $_POST['upload_password'];
59 } else {
60 $_SESSION['admin_auth'] = false;
61 jirafeau_fatal_error(t('BAD_PSW'), $cfg);
62 }
63 }
64
65 // Show login form if user session is not authorized yet
66 if (true === empty($_SESSION['upload_auth'])) {
67 ?>
68 <form method="post" class="form login">
69 <fieldset>
70 <table>
71 <tr>
72 <td class = "label"><label for = "enter_password">
73 <?php echo t('UP_PSW') . ':'; ?></label>
74 </td>
75 </tr><tr>
76 <td class = "field"><input type = "password"
77 name = "upload_password" id = "upload_password"
78 size = "40" autocomplete = "current-password" />
79 </td>
80 </tr>
81 <tr class = "nav">
82 <td class = "nav next">
83 <input type = "submit" name = "key" value =
84 "<?php echo t('LOGIN'); ?>" />
85 </td>
86 </tr>
87 </table>
88 </fieldset>
89 </form>
90 <?php
91 require(JIRAFEAU_ROOT.'lib/template/footer.php');
92 exit;
93 }
94 }
95 } else {
96 jirafeau_fatal_error(t('ACCESS_KO'), $cfg);
97 }
98
99 ?>
100 <div id="upload_finished">
101 <p><?php echo t('FILE_UP') ?></p>
102
103 <div id="upload_finished_download_page">
104 <p>
105 <a id="upload_link" href=""><?php echo t('DL_PAGE') ?></a>
106 <a id="upload_link_email" href=""><img id="upload_image_email"/></a>
107 </p><p>
108 <code id=upload_link_text></code>
109 <button id="upload_link_button">&#128203;</button>
110 </p>
111 </div>
112
113 <?php if ($cfg['preview'] == true) {
114 ?>
115 <div id="upload_finished_preview">
116 <p>
117 <a id="preview_link" href=""><?php echo t('VIEW_LINK') ?></a>
118 </p><p>
119 <code id=preview_link_text></code>
120 <button id="preview_link_button">&#128203;</button>
121 </p>
122 </div>
123 <?php
124 } ?>
125
126 <div id="upload_direct_download">
127 <p>
128 <a id="direct_link" href=""><?php echo t('DIRECT_DL') ?></a>
129 </p><p>
130 <code id=direct_link_text></code>
131 <button id="direct_link_button">&#128203;</button>
132 </p>
133 </div>
134
135 <div id="upload_delete">
136 <p>
137 <a id="delete_link" href=""><?php echo t('DELETE_LINK') ?></a>
138 </p><p>
139 <code id=delete_link_text></code>
140 <button id="delete_link_button">&#128203;</button>
141 </p>
142 </div>
143
144 <div id="upload_validity">
145 <p><?php echo t('VALID_UNTIL'); ?>:</p>
146 <p id="date"></p>
147 </div>
148 </div>
149
150 <div id="uploading">
151 <p>
152 <?php echo t('UP'); ?>
153 <div id="uploaded_percentage"></div>
154 <div id="uploaded_speed"></div>
155 <div id="uploaded_time"></div>
156 </p>
157 </div>
158
159 <div id="error_pop" class="error">
160 </div>
161
162 <div id="upload">
163 <fieldset>
164 <legend>
165 <?php echo t('SEL_FILE'); ?>
166 </legend>
167 <p>
168 <input type="file" id="file_select" size="30"
169 onchange="control_selected_file_size(<?php echo $cfg['maximal_upload_size'] ?>, '<?php
170 if ($cfg['maximal_upload_size'] >= 1024) {
171 echo t('2_BIG') . ', ' . t('FILE_LIM') . " " . number_format($cfg['maximal_upload_size']/1024, 2) . " GB.";
172 } elseif ($cfg['maximal_upload_size'] > 0) {
173 echo t('2_BIG') . ', ' . t('FILE_LIM') . " " . $cfg['maximal_upload_size'] . " MB.";
174 }
175 ?>')"/>
176 </p>
177
178 <div id="options">
179 <table id="option_table">
180 <?php
181 if ($cfg['one_time_download']) {
182 echo '<tr><td>' . t('ONE_TIME_DL') . ':</td>';
183 echo '<td><input type="checkbox" id="one_time_download" /></td></tr>';
184 }
185 ?>
186 <tr>
187 <td><label for="input_key"><?php echo t('PSW') . ':'; ?></label></td>
188 <td><input type="password" name="key" id="input_key" autocomplete = "new-password"/></td>
189 </tr>
190 <tr>
191 <td><label for="select_time"><?php echo t('TIME_LIM') . ':'; ?></label></td>
192 <td><select name="time" id="select_time">
193 <?php
194 $expirationTimeOptions = array(
195 array(
196 'value' => 'minute',
197 'label' => '1_MIN'
198 ),
199 array(
200 'value' => 'hour',
201 'label' => '1_H'
202 ),
203 array(
204 'value' => 'day',
205 'label' => '1_D'
206 ),
207 array(
208 'value' => 'week',
209 'label' => '1_W'
210 ),
211 array(
212 'value' => 'month',
213 'label' => '1_M'
214 ),
215 array(
216 'value' => 'quarter',
217 'label' => '1_Q'
218 ),
219 array(
220 'value' => 'year',
221 'label' => '1_Y'
222 ),
223 array(
224 'value' => 'none',
225 'label' => 'NONE'
226 )
227 );
228 foreach ($expirationTimeOptions as $expirationTimeOption) {
229 $selected = ($expirationTimeOption['value'] === $cfg['availability_default'])? 'selected="selected"' : '';
230 if (true === $cfg['availabilities'][$expirationTimeOption['value']]) {
231 echo '<option value="' . $expirationTimeOption['value'] . '" ' .
232 $selected . '>' . t($expirationTimeOption['label']) . '</option>';
233 }
234 }
235 ?>
236 </select></td>
237 </tr>
238
239 <?php
240 if ($cfg['maximal_upload_size'] >= 1024) {
241 echo '<p class="config">' . t('FILE_LIM');
242 echo " " . number_format($cfg['maximal_upload_size'] / 1024, 2) . " GB.</p>";
243 } elseif ($cfg['maximal_upload_size'] > 0) {
244 echo '<p class="config">' . t('FILE_LIM');
245 echo " " . $cfg['maximal_upload_size'] . " MB.</p>";
246 } else {
247 echo '<p class="config"></p>';
248 }
249 ?>
250
251 <p id="max_file_size" class="config"></p>
252 <p>
253 <?php
254 if (jirafeau_has_upload_password($cfg) && $_SESSION['upload_auth']) {
255 ?>
256 <input type="hidden" id="upload_password" name="upload_password" value="<?php echo $_SESSION['user_upload_password'] ?>"/>
257 <?php
258 } else {
259 ?>
260 <input type="hidden" id="upload_password" name="upload_password" value=""/>
261 <?php
262 }
263 ?>
264 <input type="submit" id="send" value="<?php echo t('SEND'); ?>"
265 onclick="
266 document.getElementById('upload').style.display = 'none';
267 document.getElementById('uploading').style.display = '';
268 upload (<?php echo jirafeau_get_max_upload_size_bytes(); ?>);
269 "/>
270 </p>
271 </table>
272 </div> </fieldset>
273
274 <?php
275 if (jirafeau_has_upload_password($cfg)
276 && false === jirafeau_challenge_upload_ip_without_password($cfg, get_ip_address($cfg))) {
277 ?>
278 <form method="post" class="form logout">
279 <input type = "hidden" name = "action" value = "logout"/>
280 <input type = "submit" value = "<?php echo t('LOGOUT'); ?>" />
281 </form>
282 <?php
283 }
284 ?>
285
286 </div>
287
288 <script type="text/javascript" lang="Javascript">
289 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later
290 document.getElementById('error_pop').style.display = 'none';
291 document.getElementById('uploading').style.display = 'none';
292 document.getElementById('upload_finished').style.display = 'none';
293 document.getElementById('options').style.display = 'none';
294 document.getElementById('send').style.display = 'none';
295 if (!check_html5_file_api ())
296 document.getElementById('max_file_size').innerHTML = '<?php
297 echo t('NO_BROWSER_SUPPORT') . jirafeau_get_max_upload_size();
298 ?>';
299
300 addCopyListener('upload_link_button', 'upload_link');
301 addCopyListener('preview_link_button', 'preview_link');
302 addCopyListener('direct_link_button', 'direct_link');
303 addCopyListener('delete_link_button', 'delete_link');
304 // @license-end
305 </script>
306 <?php require(JIRAFEAU_ROOT . 'lib/template/footer.php'); ?>

patrick-canterino.de