mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-17 21:08:20 +01:00
Merge branch 'php-minor' into 'master'
Minor changes to some PHP files See merge request !7
This commit is contained in:
commit
261af8ac3b
@ -212,8 +212,8 @@ if (!(isset ($_POST['action']) && strcmp ($_POST['action'], 'download') == 0))
|
|||||||
</form>
|
</form>
|
||||||
</table>
|
</table>
|
||||||
<form action = "<?php echo basename(__FILE__); ?>" method = "post">
|
<form action = "<?php echo basename(__FILE__); ?>" method = "post">
|
||||||
<input type = "hidden" name = "action" value = "logout"/>
|
<input type = "hidden" name = "action" value = "logout" />
|
||||||
<input type = "submit" value = "<?php echo t('Logout'); ?>" />
|
<input type = "submit" value = "<?php echo t('Logout'); ?>" />
|
||||||
</form>
|
</form>
|
||||||
</fieldset></div><?php
|
</fieldset></div><?php
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* GNU Affero General Public License for more details.
|
* GNU Affero General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
||||||
|
|
||||||
@ -243,7 +243,7 @@ if (jirafeau_has_upload_password ($cfg))
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script lang="Javascript">
|
<script type="text/javascript" lang="Javascript">
|
||||||
document.getElementById('error_pop').style.display = 'none';
|
document.getElementById('error_pop').style.display = 'none';
|
||||||
document.getElementById('uploading').style.display = 'none';
|
document.getElementById('uploading').style.display = 'none';
|
||||||
document.getElementById('upload_finished').style.display = 'none';
|
document.getElementById('upload_finished').style.display = 'none';
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
/*
|
/*
|
||||||
* Jirafeau, your web file repository
|
* Jirafeau, your web file repository
|
||||||
* Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
|
* Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
|
||||||
|
* Copyright (C) 2015 Nicola Spanti (RyDroid) <dev@nicola-spanti.info>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Affero General Public License as
|
* it under the terms of the GNU Affero General Public License as
|
||||||
@ -14,7 +15,7 @@
|
|||||||
* GNU Affero General Public License for more details.
|
* GNU Affero General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
||||||
define ('NL', "\n");
|
define ('NL', "\n");
|
||||||
@ -67,9 +68,7 @@ jirafeau_export_cfg ($cfg)
|
|||||||
function
|
function
|
||||||
jirafeau_mkdir ($path)
|
jirafeau_mkdir ($path)
|
||||||
{
|
{
|
||||||
if (!file_exists ($path) && !@mkdir ($path, 0755))
|
return !(!file_exists ($path) && !@mkdir ($path, 0755));
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -182,8 +181,6 @@ if (isset ($_POST['step']) && isset ($_POST['next']))
|
|||||||
$cfg['var_root'] = jirafeau_add_ending_slash ($_POST['var_root']);
|
$cfg['var_root'] = jirafeau_add_ending_slash ($_POST['var_root']);
|
||||||
jirafeau_export_cfg ($cfg);
|
jirafeau_export_cfg ($cfg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default: break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
53
script.php
53
script.php
@ -14,7 +14,7 @@
|
|||||||
* GNU Affero General Public License for more details.
|
* GNU Affero General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -68,7 +68,7 @@ header('Content-Type: text; charset=utf-8');
|
|||||||
check_errors ($cfg);
|
check_errors ($cfg);
|
||||||
if (has_error ())
|
if (has_error ())
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES)
|
|||||||
{
|
{
|
||||||
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
|
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES)
|
|||||||
(!isset ($_POST['upload_password']) ||
|
(!isset ($_POST['upload_password']) ||
|
||||||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES)
|
|||||||
$time = time ();
|
$time = time ();
|
||||||
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
|
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -130,7 +130,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES)
|
|||||||
if ($cfg['maximal_upload_size'] > 0 &&
|
if ($cfg['maximal_upload_size'] > 0 &&
|
||||||
$_FILES['file']['size'] > $cfg['maximal_upload_size'] * 1024 * 1024)
|
$_FILES['file']['size'] > $cfg['maximal_upload_size'] * 1024 * 1024)
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,7 +141,7 @@ if (isset ($_FILES['file']) && is_writable (VAR_FILES)
|
|||||||
|
|
||||||
if (empty($res) || $res['error']['has_error'])
|
if (empty($res) || $res['error']['has_error'])
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
/* Print direct link. */
|
/* Print direct link. */
|
||||||
@ -165,14 +165,14 @@ elseif (isset ($_GET['h']))
|
|||||||
|
|
||||||
if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
|
if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$link = jirafeau_get_link ($link_name);
|
$link = jirafeau_get_link ($link_name);
|
||||||
if (count ($link) == 0)
|
if (count ($link) == 0)
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if (strlen ($d) > 0 && $d == $link['link_code'])
|
if (strlen ($d) > 0 && $d == $link['link_code'])
|
||||||
@ -184,18 +184,18 @@ elseif (isset ($_GET['h']))
|
|||||||
if ($link['time'] != JIRAFEAU_INFINITY && time () > $link['time'])
|
if ($link['time'] != JIRAFEAU_INFINITY && time () > $link['time'])
|
||||||
{
|
{
|
||||||
jirafeau_delete_link ($link_name);
|
jirafeau_delete_link ($link_name);
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if (strlen ($link['key']) > 0 && md5 ($key) != $link['key'])
|
if (strlen ($link['key']) > 0 && md5 ($key) != $link['key'])
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
$p = s2p ($link['md5']);
|
$p = s2p ($link['md5']);
|
||||||
if (!file_exists (VAR_FILES . $p . $link['md5']))
|
if (!file_exists (VAR_FILES . $p . $link['md5']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -362,7 +362,7 @@ fi
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -372,7 +372,7 @@ elseif (isset ($_GET['alias_create']))
|
|||||||
$ip = get_ip_address($cfg);
|
$ip = get_ip_address($cfg);
|
||||||
if (!jirafeau_challenge_upload_ip ($cfg, $ip))
|
if (!jirafeau_challenge_upload_ip ($cfg, $ip))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -380,7 +380,7 @@ elseif (isset ($_GET['alias_create']))
|
|||||||
(!isset ($_POST['upload_password']) ||
|
(!isset ($_POST['upload_password']) ||
|
||||||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -388,7 +388,7 @@ elseif (isset ($_GET['alias_create']))
|
|||||||
!isset ($_POST['destination']) ||
|
!isset ($_POST['destination']) ||
|
||||||
!isset ($_POST['password']))
|
!isset ($_POST['password']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -402,7 +402,7 @@ elseif (isset ($_GET['alias_get']))
|
|||||||
{
|
{
|
||||||
if (!isset ($_POST['alias']))
|
if (!isset ($_POST['alias']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -415,7 +415,7 @@ elseif (isset ($_GET['alias_update']))
|
|||||||
!isset ($_POST['destination']) ||
|
!isset ($_POST['destination']) ||
|
||||||
!isset ($_POST['password']))
|
!isset ($_POST['password']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -435,7 +435,7 @@ elseif (isset ($_GET['alias_delete']))
|
|||||||
if (!isset ($_POST['alias']) ||
|
if (!isset ($_POST['alias']) ||
|
||||||
!isset ($_POST['password']))
|
!isset ($_POST['password']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -447,7 +447,7 @@ elseif (isset ($_GET['init_async']))
|
|||||||
{
|
{
|
||||||
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
|
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -455,13 +455,13 @@ elseif (isset ($_GET['init_async']))
|
|||||||
(!isset ($_POST['upload_password']) ||
|
(!isset ($_POST['upload_password']) ||
|
||||||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset ($_POST['filename']))
|
if (!isset ($_POST['filename']))
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -476,7 +476,7 @@ elseif (isset ($_GET['init_async']))
|
|||||||
$time = time ();
|
$time = time ();
|
||||||
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
|
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
|
||||||
{
|
{
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -517,7 +517,7 @@ elseif (isset ($_GET['push_async']))
|
|||||||
if ((!isset ($_POST['ref']))
|
if ((!isset ($_POST['ref']))
|
||||||
|| (!isset ($_FILES['data']))
|
|| (!isset ($_FILES['data']))
|
||||||
|| (!isset ($_POST['code'])))
|
|| (!isset ($_POST['code'])))
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo jirafeau_async_push ($_POST['ref'],
|
echo jirafeau_async_push ($_POST['ref'],
|
||||||
@ -531,12 +531,11 @@ elseif (isset ($_GET['end_async']))
|
|||||||
{
|
{
|
||||||
if (!isset ($_POST['ref'])
|
if (!isset ($_POST['ref'])
|
||||||
|| !isset ($_POST['code']))
|
|| !isset ($_POST['code']))
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
else
|
else
|
||||||
echo jirafeau_async_end ($_POST['ref'], $_POST['code'], $cfg['enable_crypt'], $cfg['link_name_length']);
|
echo jirafeau_async_end ($_POST['ref'], $_POST['code'], $cfg['enable_crypt'], $cfg['link_name_length']);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
echo "Error";
|
echo 'Error';
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
17
tos.php
17
tos.php
@ -1,4 +1,21 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/*
|
||||||
|
* Jirafeau, your web file repository
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
|
||||||
require (JIRAFEAU_ROOT . 'lib/config.original.php');
|
require (JIRAFEAU_ROOT . 'lib/config.original.php');
|
||||||
require (JIRAFEAU_ROOT . 'lib/settings.php');
|
require (JIRAFEAU_ROOT . 'lib/settings.php');
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* This license text is under Creative Commons - Attribution 3.0 Unported.
|
/* This license text is under Creative Commons - Attribution 3.0 Unported.
|
||||||
* It has been based on this work: <a href="http://opensource.org/ToS">http://opensource.org/ToS
|
* It has been based on this work: <a href="http://opensource.org/ToS">http://opensource.org/ToS</a>
|
||||||
*/
|
*/
|
||||||
$tos="
|
$tos="
|
||||||
TERMS OF SERVICE
|
TERMS OF SERVICE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user