]> git.p6c8.net - jirafeau_mojo42.git/blob - admin.php
No more needed to delete install.php to access admin.php
[jirafeau_mojo42.git] / admin.php
1 <?php
2 /*
3 * Jirafeau, your web file repository
4 * Copyright (C) 2012 Jerome Jutteau <j.jutteau@gmail.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
21
22 require (JIRAFEAU_ROOT . 'lib/config.original.php');
23 require (JIRAFEAU_ROOT . 'lib/settings.php');
24 require (JIRAFEAU_ROOT . 'lib/functions.php');
25 require (JIRAFEAU_ROOT . 'lib/lang.php');
26
27 /* Check if installation is OK. */
28 if (file_exists (JIRAFEAU_ROOT . 'install.php')
29 && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php'))
30 {
31 header('Location: install.php');
32 exit;
33 }
34
35 /* Disable admin interface if we have a empty admin password. */
36 if (empty($cfg['admin_password']))
37 {
38 require (JIRAFEAU_ROOT . 'lib/template/header.php');
39 echo '<div class="error"><p>'.
40 t('Sorry, the admin interface is not enabled.') .
41 '</p></div>';
42 require (JIRAFEAU_ROOT.'lib/template/footer.php');
43 exit;
44 }
45
46 /* Check session. */
47 session_start();
48
49 /* Unlog if asked. */
50 if (isset ($_POST['action']) && (strcmp ($_POST['action'], 'logout') == 0))
51 $_SESSION['admin_auth'] = false;
52
53 /* Check password. */
54 if (isset ($_POST['admin_password']))
55 {
56 if (strcmp ($cfg['admin_password'], $_POST['admin_password']) == 0)
57 $_SESSION['admin_auth'] = true;
58 else
59 {
60 $_SESSION['admin_auth'] = false;
61 require (JIRAFEAU_ROOT . 'lib/template/header.php');
62 echo '<div class="error"><p>'.
63 t('Wrong password.') . '</p></div>';
64 require (JIRAFEAU_ROOT.'lib/template/footer.php');
65 exit;
66 }
67 }
68 /* Ask for password. */
69 elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
70 {
71 require (JIRAFEAU_ROOT . 'lib/template/header.php'); ?>
72 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
73 <fieldset>
74 <table>
75 <tr>
76 <td class = "label"><label for = "enter_password">
77 <?php echo t('Administration password') . ':';?></label>
78 </td>
79 <td class = "field"><input type = "password"
80 name = "admin_password" id = "admin_password"
81 size = "40" />
82 </td>
83 </tr>
84 <tr class = "nav">
85 <td></td>
86 <td class = "nav next">
87 <input type = "submit" name = "key" value =
88 "<?php echo t('Login'); ?>" />
89 </td>
90 </tr>
91 </table>
92 </fieldset>
93 </form>
94 <?php
95 require (JIRAFEAU_ROOT.'lib/template/footer.php');
96 exit;
97 }
98
99 /* Operations may take a long time.
100 * Be sure PHP's safe mode is off.
101 */
102 @set_time_limit(0);
103 /* Remove errors. */
104 @error_reporting(0);
105
106 /* Admin interface. */
107 require (JIRAFEAU_ROOT . 'lib/template/header.php');
108 ?><h2><?php echo t('Admin interface'); ?></h2><?php
109
110 /* Show admin interface. */
111 {
112 ?><div id = "install">
113 <fieldset><legend><?php echo t('Actions');?></legend>
114 <table>
115 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
116 <tr>
117 <input type = "hidden" name = "action" value = "clean"/>
118 <td class = "info">
119 <?php echo t('Clean expired files'); ?>
120 </td>
121 <td></td>
122 <td>
123 <input type = "submit" value = "<?php echo t('Clean'); ?>" />
124 </td>
125 </tr>
126 </form>
127 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
128 <tr>
129 <input type = "hidden" name = "action" value = "clean_async"/>
130 <td class = "info">
131 <?php echo t('Clean old unfinished transferts'); ?>
132 </td>
133 <td></td>
134 <td>
135 <input type = "submit" value = "<?php echo t('Clean'); ?>" />
136 </td>
137 </tr>
138 </form>
139 <?php
140 if ($cfg['enable_blocks'])
141 {
142 ?>
143 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
144 <tr>
145 <input type = "hidden" name = "action" value = "clean_block"/>
146 <td class = "info">
147 <?php echo t('Clean unused blocks'); ?>
148 </td>
149 <td></td>
150 <td>
151 <input type = "submit" value = "<?php echo t('Clean'); ?>" />
152 </td>
153 </tr>
154 </form>
155 <?php
156 }
157 ?>
158
159 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
160 <tr>
161 <input type = "hidden" name = "action" value = "list"/>
162 <td class = "info">
163 <?php echo t('List all files'); ?>
164 </td>
165 <td></td>
166 <td>
167 <input type = "submit" value = "<?php echo t('List'); ?>" />
168 </td>
169 </tr>
170 </form>
171 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
172 <tr>
173 <input type = "hidden" name = "action" value = "search_by_name"/>
174 <td class = "info">
175 <?php echo t('Search files by name'); ?>
176 </td>
177 <td>
178 <input type = "text" name = "name" id = "name"/>
179 </td>
180 <td>
181 <input type = "submit" value = "<?php echo t('Search'); ?>" />
182 </td>
183 </tr>
184 </form>
185 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
186 <tr>
187 <input type = "hidden" name = "action" value = "search_by_file_hash"/>
188 <td class = "info">
189 <?php echo t('Search files by file hash'); ?>
190 </td>
191 <td>
192 <input type = "text" name = "hash" id = "hash"/>
193 </td>
194 <td>
195 <input type = "submit" value = "<?php echo t('Search'); ?>" />
196 </td>
197 </tr>
198 </form>
199 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
200 <tr>
201 <input type = "hidden" name = "action" value = "search_link"/>
202 <td class = "info">
203 <?php echo t('Search a specific link'); ?>
204 </td>
205 <td>
206 <input type = "text" name = "link" id = "link"/>
207 </td>
208 <td>
209 <input type = "submit" value = "<?php echo t('Search'); ?>" />
210 </td>
211 </tr>
212 </form>
213 </table>
214 <form action = "<?php echo basename(__FILE__); ?>" method = "post">
215 <input type = "hidden" name = "action" value = "logout"/>
216 <input type = "submit" value = "<?php echo t('Logout'); ?>" />
217 </form>
218 </fieldset></div><?php
219 }
220
221 /* Check for actions */
222 if (isset ($_POST['action']))
223 {
224 if (strcmp ($_POST['action'], 'clean') == 0)
225 {
226 $total = jirafeau_admin_clean ();
227 echo '<div class="message">' . NL;
228 echo '<p>';
229 echo t('Number of cleaned files') . ' : ' . $total;
230 echo '</p></div>';
231 }
232 elseif (strcmp ($_POST['action'], 'clean_async') == 0)
233 {
234 $total = jirafeau_admin_clean_async ();
235 echo '<div class="message">' . NL;
236 echo '<p>';
237 echo t('Number of cleaned files') . ' : ' . $total;
238 echo '</p></div>';
239 }
240 elseif (strcmp ($_POST['action'], 'clean_block') == 0)
241 {
242 $total = jirafeau_admin_clean_block ();
243 echo '<div class="message">' . NL;
244 echo '<p>';
245 echo t('Number of cleaned files') . ' : ' . $total;
246 echo '</p></div>';
247 }
248 elseif (strcmp ($_POST['action'], 'list') == 0)
249 {
250 jirafeau_admin_list ("", "", "");
251 }
252 elseif (strcmp ($_POST['action'], 'search_by_name') == 0)
253 {
254 jirafeau_admin_list ($_POST['name'], "", "");
255 }
256 elseif (strcmp ($_POST['action'], 'search_by_file_hash') == 0)
257 {
258 jirafeau_admin_list ("", $_POST['hash'], "");
259 }
260 elseif (strcmp ($_POST['action'], 'search_link') == 0)
261 {
262 jirafeau_admin_list ("", "", $_POST['link']);
263 }
264 elseif (strcmp ($_POST['action'], 'delete_link') == 0)
265 {
266 jirafeau_delete_link ($_POST['link']);
267 echo '<div class="message">' . NL;
268 echo '<p>' . t('Link deleted') . '</p></div>';
269 }
270 elseif (strcmp ($_POST['action'], 'delete_file') == 0)
271 {
272 $count = jirafeau_delete_file ($_POST['md5']);
273 echo '<div class="message">' . NL;
274 echo '<p>' . t('Deleted links') . ' : ' . $count . '</p></div>';
275 }
276 elseif (strcmp ($_POST['action'], 'download') == 0)
277 {
278 $l = jirafeau_get_link ($_POST['link']);
279 if (!count ($l))
280 return;
281 $p = s2p ($l['md5']);
282 header ('Content-Length: ' . $l['file_size']);
283 header ('Content-Type: ' . $l['mime_type']);
284 header ('Content-Disposition: attachment; filename="' .
285 $l['file_name'] . '"');
286 if (file_exists(VAR_FILES . $p . $l['md5']))
287 readfile (VAR_FILES . $p . $l['md5']);
288 }
289 }
290
291 require (JIRAFEAU_ROOT.'lib/template/footer.php');
292
293 ?>

patrick-canterino.de