]>
git.p6c8.net - jirafeau_project.git/blob - admin.php
3 * Jirafeau, your web file repository
4 * Copyright (C) 2012 Jerome Jutteau <j.jutteau@gmail.com>
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.
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.
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/>.
20 define ('JIRAFEAU_ROOT', dirname (__FILE__
) . '/');
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');
27 /* Check if installation is OK. */
28 if (file_exists (JIRAFEAU_ROOT
. 'install.php')
29 && !file_exists (JIRAFEAU_ROOT
. 'lib/config.local.php'))
31 header('Location: install.php');
35 /* Disable admin interface if we have a empty admin password. */
36 if (empty($cfg['admin_password']))
38 require (JIRAFEAU_ROOT
. 'lib/template/header.php');
39 echo '<div class="error"><p>'.
40 t('Sorry, the admin interface is not enabled.') .
42 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
50 if (isset ($_POST['action']) && (strcmp ($_POST['action'], 'logout') == 0))
51 $_SESSION['admin_auth'] = false;
54 if (isset ($_POST['admin_password']))
56 if (strcmp ($cfg['admin_password'], $_POST['admin_password']) == 0)
57 $_SESSION['admin_auth'] = true;
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');
68 /* Ask for password. */
69 elseif (!isset ($_SESSION['admin_auth']) ||
$_SESSION['admin_auth'] != true)
71 require (JIRAFEAU_ROOT
. 'lib/template/header.php'); ?
>
72 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
76 <td
class = "label"><label
for = "enter_password">
77 <?php
echo t('Administration password') . ':';?
></label
>
79 <td
class = "field"><input type
= "password"
80 name
= "admin_password" id
= "admin_password"
86 <td
class = "nav next">
87 <input type
= "submit" name
= "key" value
=
88 "<?php echo t('Login'); ?>" />
95 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
99 /* Operations may take a long time.
100 * Be sure PHP's safe mode is off.
106 /* Admin interface. */
107 require (JIRAFEAU_ROOT
. 'lib/template/header.php');
108 ?
><h2
><?php
echo t('Admin interface'); ?
></h2
><?php
110 /* Show admin interface. */
112 ?
><div id
= "install">
113 <fieldset
><legend
><?php
echo t('Actions');?
></legend
>
115 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
117 <input type
= "hidden" name
= "action" value
= "clean"/>
119 <?php
echo t('Clean expired files'); ?
>
123 <input type
= "submit" value
= "<?php echo t('Clean'); ?>" />
127 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
129 <input type
= "hidden" name
= "action" value
= "clean_async"/>
131 <?php
echo t('Clean old unfinished transferts'); ?
>
135 <input type
= "submit" value
= "<?php echo t('Clean'); ?>" />
139 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
141 <input type
= "hidden" name
= "action" value
= "list"/>
143 <?php
echo t('List all files'); ?
>
147 <input type
= "submit" value
= "<?php echo t('List'); ?>" />
151 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
153 <input type
= "hidden" name
= "action" value
= "search_by_name"/>
155 <?php
echo t('Search files by name'); ?
>
158 <input type
= "text" name
= "name" id
= "name"/>
161 <input type
= "submit" value
= "<?php echo t('Search'); ?>" />
165 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
167 <input type
= "hidden" name
= "action" value
= "search_by_file_hash"/>
169 <?php
echo t('Search files by file hash'); ?
>
172 <input type
= "text" name
= "hash" id
= "hash"/>
175 <input type
= "submit" value
= "<?php echo t('Search'); ?>" />
179 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
181 <input type
= "hidden" name
= "action" value
= "search_link"/>
183 <?php
echo t('Search a specific link'); ?
>
186 <input type
= "text" name
= "link" id
= "link"/>
189 <input type
= "submit" value
= "<?php echo t('Search'); ?>" />
194 <form action
= "<?php echo basename(__FILE__); ?>" method
= "post">
195 <input type
= "hidden" name
= "action" value
= "logout"/>
196 <input type
= "submit" value
= "<?php echo t('Logout'); ?>" />
198 </fieldset
></div
><?php
201 /* Check for actions */
202 if (isset ($_POST['action']))
204 if (strcmp ($_POST['action'], 'clean') == 0)
206 $total = jirafeau_admin_clean ();
207 echo '<div class="message">' . NL
;
209 echo t('Number of cleaned files') . ' : ' . $total;
212 elseif (strcmp ($_POST['action'], 'clean_async') == 0)
214 $total = jirafeau_admin_clean_async ();
215 echo '<div class="message">' . NL
;
217 echo t('Number of cleaned files') . ' : ' . $total;
220 elseif (strcmp ($_POST['action'], 'list') == 0)
222 jirafeau_admin_list ("", "", "");
224 elseif (strcmp ($_POST['action'], 'search_by_name') == 0)
226 jirafeau_admin_list ($_POST['name'], "", "");
228 elseif (strcmp ($_POST['action'], 'search_by_file_hash') == 0)
230 jirafeau_admin_list ("", $_POST['hash'], "");
232 elseif (strcmp ($_POST['action'], 'search_link') == 0)
234 jirafeau_admin_list ("", "", $_POST['link']);
236 elseif (strcmp ($_POST['action'], 'delete_link') == 0)
238 jirafeau_delete_link ($_POST['link']);
239 echo '<div class="message">' . NL
;
240 echo '<p>' . t('Link deleted') . '</p></div>';
242 elseif (strcmp ($_POST['action'], 'delete_file') == 0)
244 $count = jirafeau_delete_file ($_POST['md5']);
245 echo '<div class="message">' . NL
;
246 echo '<p>' . t('Deleted links') . ' : ' . $count . '</p></div>';
248 elseif (strcmp ($_POST['action'], 'download') == 0)
250 $l = jirafeau_get_link ($_POST['link']);
253 $p = s2p ($l['md5']);
254 header ('Content-Length: ' . $l['file_size']);
255 header ('Content-Type: ' . $l['mime_type']);
256 header ('Content-Disposition: attachment; filename="' .
257 $l['file_name'] . '"');
258 if (file_exists(VAR_FILES
. $p . $l['md5']))
259 readfile (VAR_FILES
. $p . $l['md5']);
263 require (JIRAFEAU_ROOT
.'lib/template/footer.php');
patrick-canterino.de