X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/9a9c9a8bf83241c193c5bef6361d41893e72dfd3..91800659866146b2d5406bd209022191fa4c8da6:/lib/functions.php?ds=sidebyside
diff --git a/lib/functions.php b/lib/functions.php
index 50ab345..0bb51db 100644
--- a/lib/functions.php
+++ b/lib/functions.php
@@ -128,6 +128,13 @@ function jirafeau_get_datetimefield($timestamp)
return $content;
}
+function jirafeau_fatal_error($errorText, $cfg = array())
+{
+ echo '
';
+ require(JIRAFEAU_ROOT . 'lib/template/footer.php');
+ exit;
+}
+
function jirafeau_clean_rm_link($link)
{
$p = s2p("$link");
@@ -602,7 +609,7 @@ function jirafeau_admin_list($name, $file_hash, $link_hash)
/* Print link informations. */
echo '';
echo '' .
- '' . htmlspecialchars($l['file_name']) . '';
echo ' | ';
echo '' . $l['mime_type'] . ' | ';
@@ -1063,22 +1070,26 @@ function jirafeau_challenge_upload_password($cfg, $password)
/**
* Test if visitor's IP is authorized to upload.
- * @param $ip IP to be challenged
+ *
+ * @param $allowedIpList array of allowed IPs
+ * @param $challengedIp IP to be challenged
* @return true if IP is authorized, false otherwise.
*/
-function jirafeau_challenge_upload_ip($cfg, $ip)
+function jirafeau_challenge_upload_ip($allowedIpList, $challengedIp)
{
- if (count($cfg['upload_ip']) == 0) {
+ // skip if list is empty = all IPs allowed
+ if (count($allowedIpList) == 0) {
return true;
}
- foreach ($cfg['upload_ip'] as $i) {
- if ($i == $ip) {
+ // test given IP against each allowed IP
+ foreach ($allowedIpList as $i) {
+ if ($i == $challengedIp) {
return true;
}
// CIDR test for IPv4 only.
if (strpos($i, '/') !== false) {
list($subnet, $mask) = explode('/', $i);
- if ((ip2long($ip) & ~((1 << (32 - $mask)) - 1)) == ip2long($subnet)) {
+ if ((ip2long($challengedIp) & ~((1 << (32 - $mask)) - 1)) == ip2long($subnet)) {
return true;
}
}