]> git.p6c8.net - jirafeau_project.git/blob - index.php
media/courgette: cleaner design of links page
[jirafeau_project.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 <http://www.gnu.org/licenses/>.
20 */
21 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
22
23 require (JIRAFEAU_ROOT . 'lib/config.original.php');
24 require (JIRAFEAU_ROOT . 'lib/settings.php');
25 require (JIRAFEAU_ROOT . 'lib/functions.php');
26 require (JIRAFEAU_ROOT . 'lib/lang.php');
27 require (JIRAFEAU_ROOT . 'lib/template/header.php');
28
29 check_errors ($cfg);
30 if (has_error ())
31 {
32 show_errors ();
33 require (JIRAFEAU_ROOT . 'lib/template/footer.php');
34 exit;
35 }
36
37 /* Ask password if upload password is set. */
38 if (jirafeau_has_upload_password ($cfg))
39 {
40 session_start();
41
42 /* Unlog if asked. */
43 if (isset ($_POST['action']) && (strcmp ($_POST['action'], 'logout') == 0))
44 session_unset ();
45
46 /* Auth. */
47 if (isset ($_POST['upload_password']))
48 {
49 if (jirafeau_challenge_upload_password ($cfg, $_POST['upload_password']))
50 {
51 $_SESSION['upload_auth'] = true;
52 $_SESSION['user_upload_password'] = $_POST['upload_password'];
53 }
54 else
55 {
56 $_SESSION['admin_auth'] = false;
57 echo '<div class="error"><p>' . t('Wrong password.') . '</p></div>';
58 require (JIRAFEAU_ROOT.'lib/template/footer.php');
59 exit;
60 }
61 }
62
63 /* Show auth page. */
64 if (!isset ($_SESSION['upload_auth']) || $_SESSION['upload_auth'] != true)
65 {
66 ?>
67 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
68 <fieldset>
69 <table>
70 <tr>
71 <td class = "label"><label for = "enter_password">
72 <?php echo t('Upload password') . ':';?></label>
73 </td>
74 <td class = "field"><input type = "password"
75 name = "upload_password" id = "upload_password"
76 size = "40" />
77 </td>
78 </tr>
79 <tr class = "nav">
80 <td></td>
81 <td class = "nav next">
82 <input type = "submit" name = "key" value =
83 "<?php echo t('Login'); ?>" />
84 </td>
85 </tr>
86 </table>
87 </fieldset>
88 </form>
89 <?php
90 require (JIRAFEAU_ROOT.'lib/template/footer.php');
91 exit;
92 }
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><?php echo t('Download page') ?></p>
101 <p><a id="upload_link" href=""></a></p>
102 </div>
103
104 <?php if ($cfg['preview'] == true) { ?>
105 <div id="upload_finished_preview">
106 <p><?php echo t('View link') ?>:</p>
107 <p><a id="preview_link" href=""></a></p>
108 </div>
109 <?php } ?>
110
111 <div id="upload_direct_download">
112 <p><?php echo t('Direct download link') ?>:</p>
113 <p><a id="direct_link" href=""></a></p>
114 </div>
115
116 <div>
117 <p><?php echo t('Delete link') ?>:</p>
118 <p><a id="delete_link" href=""></a></p>
119 </div>
120
121 <div id="validity">
122 <p><?php echo t('This file is valid until the following date'); ?>:</p>
123 <p id="date"></p>
124 </div>
125 </div>
126
127 <div id="uploading">
128 <p>
129 <?php echo t ('Uploading ...'); ?>
130 <div id="uploaded_percentage"></div>
131 <div id="uploaded_speed"></div>
132 <div id="uploaded_time"></div>
133 </p>
134 </div>
135
136 <div id="error_pop" class="error">
137 </div>
138
139 <div id="upload">
140 <fieldset>
141 <legend>
142 <?php echo t('Select a file'); ?>
143 </legend>
144 <p>
145 <input type="file" id="file_select" size="30"
146 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"; ?>')"/>
147 </p>
148
149 <div id="options">
150 <table id="option_table">
151 <tr>
152 <td><?php echo t('One time download'); ?>:</td>
153 <td><input type="checkbox" id="one_time_download" /></td>
154 </tr>
155 <tr>
156 <td><label for="input_key"><?php echo t('Password') . ':'; ?></label></td>
157 <td><input type="text" name="key" id="input_key" /></td>
158 </tr>
159 <tr>
160 <td><label for="select_time"><?php echo t('Time limit') . ':'; ?></label></td>
161 <td><select name="time" id="select_time">
162 <?php if ($cfg['availabilities']['none']) { ?>
163 <option value="none"><?php echo t('None'); ?></option>
164 <?php } ?>
165 <?php if ($cfg['availabilities']['year']) { ?>
166 <option value = "year"><?php echo t('One year');?></option>
167 <?php } ?>
168 <?php if ($cfg['availabilities']['month']) { ?>
169 <option value = "month"><?php echo t('One month');?></option>
170 <?php } ?>
171 <?php if ($cfg['availabilities']['week']) { ?>
172 <option value = "week"><?php echo t('One week'); ?></option>
173 <?php } ?>
174 <?php if ($cfg['availabilities']['day']) { ?>
175 <option value = "day"><?php echo t('One day'); ?></option>
176 <?php } ?>
177 <?php if ($cfg['availabilities']['hour']) { ?>
178 <option value = "hour"><?php echo t('One hour'); ?></option>
179 <?php } ?>
180 <?php if ($cfg['availabilities']['minute']) { ?>
181 <option value = "minute"><?php echo t('One minute'); ?></option>
182 <?php } ?>
183 </select></td>
184 </tr>
185
186 <?php
187 if ($cfg['maximal_upload_size'] > 0)
188 {
189 echo '<p class="config">' . t ('File size is limited to');
190 echo " " . $cfg['maximal_upload_size'] . " MB</p>";
191 }
192 ?>
193
194 <p id="max_file_size" class="config"></p>
195 <p>
196 <?php
197 if (jirafeau_has_upload_password ($cfg) && $_SESSION['upload_auth'])
198 {
199 ?>
200 <input type="hidden" id="upload_password" name="upload_password" value="<?php echo $_SESSION['user_upload_password'] ?>"/>
201 <?php
202 }
203 else
204 {
205 ?>
206 <input type="hidden" id="upload_password" name="upload_password" value=""/>
207 <?php
208 }
209 ?>
210 <input type="submit" id="send" value="<?php echo t('Send'); ?>"
211 onclick="
212 document.getElementById('upload').style.display = 'none';
213 document.getElementById('uploading').style.display = '';
214 upload ('<?php echo $cfg['web_root']; ?>', <?php echo jirafeau_get_max_upload_size_bytes (); ?>);
215 "/>
216 </p>
217 </table>
218 </div> </fieldset>
219
220 <?php
221 if (jirafeau_has_upload_password ($cfg))
222 {
223 ?>
224 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
225 <input type = "hidden" name = "action" value = "logout"/>
226 <input type = "submit" value = "<?php echo t('Logout'); ?>" />
227 </form>
228 <?php
229 }
230 ?>
231
232 </div>
233
234 <script lang="Javascript">
235 document.getElementById('error_pop').style.display = 'none';
236 document.getElementById('uploading').style.display = 'none';
237 document.getElementById('upload_finished').style.display = 'none';
238 document.getElementById('options').style.display = 'none';
239 document.getElementById('send').style.display = 'none';
240 if (!check_html5_file_api ())
241 document.getElementById('max_file_size').innerHTML = '<?php
242 echo t('You browser may not support HTML5 so the maximum file size is ') . jirafeau_get_max_upload_size ();
243 ?>';
244 </script>
245 <?php require (JIRAFEAU_ROOT . 'lib/template/footer.php'); ?>

patrick-canterino.de