</form>
</table>
<form action = "<?php echo basename(__FILE__); ?>" method = "post">
- <input type = "hidden" name = "action" value = "logout"/>
- <input type = "submit" value = "<?php echo t('Logout'); ?>" />
+ <input type = "hidden" name = "action" value = "logout" />
+ <input type = "submit" value = "<?php echo t('Logout'); ?>" />
</form>
</fieldset></div><?php
}
* 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 <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
</div>
-<script lang="Javascript">
+<script type="text/javascript" lang="Javascript">
document.getElementById('error_pop').style.display = 'none';
document.getElementById('uploading').style.display = 'none';
document.getElementById('upload_finished').style.display = 'none';
/*
* Jirafeau, your web file repository
* 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
* it under the terms of the GNU Affero General Public License as
* 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 <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
define ('NL', "\n");
function
jirafeau_mkdir ($path)
{
- if (!file_exists ($path) && !@mkdir ($path, 0755))
- return false;
- return true;
+ return !(!file_exists ($path) && !@mkdir ($path, 0755));
}
/**
$cfg['var_root'] = jirafeau_add_ending_slash ($_POST['var_root']);
jirafeau_export_cfg ($cfg);
break;
-
- default: break;
}
}
* 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 <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*
check_errors ($cfg);
if (has_error ())
{
- echo "Error";
+ echo 'Error';
exit;
}
{
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
{
- echo "Error";
+ echo 'Error';
exit;
}
(!isset ($_POST['upload_password']) ||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
{
- echo "Error";
+ echo 'Error';
exit;
}
$time = time ();
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
{
- echo "Error";
+ echo 'Error';
exit;
}
else
if ($cfg['maximal_upload_size'] > 0 &&
$_FILES['file']['size'] > $cfg['maximal_upload_size'] * 1024 * 1024)
{
- echo "Error";
+ echo 'Error';
exit;
}
if (empty($res) || $res['error']['has_error'])
{
- echo "Error";
+ echo 'Error';
exit;
}
/* Print direct link. */
if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
{
- echo "Error";
+ echo 'Error';
exit;
}
$link = jirafeau_get_link ($link_name);
if (count ($link) == 0)
{
- echo "Error";
+ echo 'Error';
exit;
}
if (strlen ($d) > 0 && $d == $link['link_code'])
if ($link['time'] != JIRAFEAU_INFINITY && time () > $link['time'])
{
jirafeau_delete_link ($link_name);
- echo "Error";
+ echo 'Error';
exit;
}
if (strlen ($link['key']) > 0 && md5 ($key) != $link['key'])
{
- echo "Error";
+ echo 'Error';
exit;
}
$p = s2p ($link['md5']);
if (!file_exists (VAR_FILES . $p . $link['md5']))
{
- echo "Error";
+ echo 'Error';
exit;
}
}
else
{
- echo "Error";
+ echo 'Error';
exit;
}
}
$ip = get_ip_address($cfg);
if (!jirafeau_challenge_upload_ip ($cfg, $ip))
{
- echo "Error";
+ echo 'Error';
exit;
}
(!isset ($_POST['upload_password']) ||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
{
- echo "Error";
+ echo 'Error';
exit;
}
!isset ($_POST['destination']) ||
!isset ($_POST['password']))
{
- echo "Error";
+ echo 'Error';
exit;
}
{
if (!isset ($_POST['alias']))
{
- echo "Error";
+ echo 'Error';
exit;
}
!isset ($_POST['destination']) ||
!isset ($_POST['password']))
{
- echo "Error";
+ echo 'Error';
exit;
}
if (!isset ($_POST['alias']) ||
!isset ($_POST['password']))
{
- echo "Error";
+ echo 'Error';
exit;
}
{
if (!jirafeau_challenge_upload_ip ($cfg, get_ip_address($cfg)))
{
- echo "Error";
+ echo 'Error';
exit;
}
(!isset ($_POST['upload_password']) ||
!jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])))
{
- echo "Error";
+ echo 'Error';
exit;
}
if (!isset ($_POST['filename']))
{
- echo "Error";
+ echo 'Error';
exit;
}
$time = time ();
if (!isset ($_POST['time']) || !$cfg['availabilities'][$_POST['time']])
{
- echo "Error";
+ echo 'Error';
exit;
}
else
if ((!isset ($_POST['ref']))
|| (!isset ($_FILES['data']))
|| (!isset ($_POST['code'])))
- echo "Error";
+ echo 'Error';
else
{
echo jirafeau_async_push ($_POST['ref'],
{
if (!isset ($_POST['ref'])
|| !isset ($_POST['code']))
- echo "Error";
+ echo 'Error';
else
echo jirafeau_async_end ($_POST['ref'], $_POST['code'], $cfg['enable_crypt'], $cfg['link_name_length']);
}
else
- echo "Error";
+ echo 'Error';
exit;
?>
-
<?php\r
+/*\r
+ * Jirafeau, your web file repository\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU Affero General Public License as\r
+ * published by the Free Software Foundation, either version 3 of the\r
+ * License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU Affero General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU Affero General Public License\r
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.\r
+ */\r
+\r
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');\r
require (JIRAFEAU_ROOT . 'lib/config.original.php');\r
require (JIRAFEAU_ROOT . 'lib/settings.php');\r
<?php\r
/* This license text is under Creative Commons - Attribution 3.0 Unported.\r
- * It has been based on this work: <a href="http://opensource.org/ToS">http://opensource.org/ToS\r
+ * It has been based on this work: <a href="http://opensource.org/ToS">http://opensource.org/ToS</a>\r
*/\r
$tos="\r
TERMS OF SERVICE\r