forked from museum-digital/MD_STD
Fix code smells
This commit is contained in:
@@ -13,9 +13,9 @@ declare(strict_types = 1);
|
||||
*/
|
||||
final class MD_JAIL {
|
||||
|
||||
const STATUS_NONE = 0;
|
||||
const STATUS_STARTED = 1;
|
||||
const STATUS_SPECIFIED = 2; // Determines that everything is fine.
|
||||
public const STATUS_NONE = 0;
|
||||
public const STATUS_STARTED = 1;
|
||||
public const STATUS_SPECIFIED = 2; // Determines that everything is fine.
|
||||
|
||||
/** @var integer */
|
||||
private int $_status = self::STATUS_NONE;
|
||||
|
||||
@@ -445,7 +445,7 @@ final class MD_STD {
|
||||
*
|
||||
* @param string $url URL to validate.
|
||||
*
|
||||
* @return bool
|
||||
* @return boolean
|
||||
*/
|
||||
public static function checkUrlIsReachable(string $url):bool {
|
||||
|
||||
@@ -952,7 +952,7 @@ final class MD_STD {
|
||||
* 0000-01-01 > 101; 2001-01-01 > 20010101.
|
||||
* Needed to retrieve negative dates (BC) stored in MySQL.
|
||||
*
|
||||
* @param int $date_int Date represented as an integer.
|
||||
* @param integer $date_int Date represented as an integer.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
@@ -979,6 +979,5 @@ final class MD_STD {
|
||||
false => '',
|
||||
} . $year . '-' . $month . '-' . $day;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,9 +34,9 @@ final class MD_STD_CACHE {
|
||||
* Caches and serves a page through redis. Should be called at the start
|
||||
* of the script generating a page.
|
||||
*
|
||||
* @param Redis $redis Redis connection.
|
||||
* @param string $redisKey Key to cache by in redis.
|
||||
* @param integer $expiry Expiration time in seconds.
|
||||
* @param Redis $redis Redis connection.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
||||
@@ -216,7 +216,7 @@ final class MD_STD_IN {
|
||||
}
|
||||
$rewritten .= $parsed['host'];
|
||||
if (!empty($parsed['port'])) $rewritten .= ':' . $parsed['port'];
|
||||
$rewritten .= str_replace('%2F' , '/', urlencode($parsed['path']));
|
||||
$rewritten .= str_replace('%2F', '/', urlencode($parsed['path']));
|
||||
if (!empty($parsed['query'])) {
|
||||
$rewritten .= '?' . str_replace('%3D', '=', urlencode($parsed['query']));
|
||||
}
|
||||
@@ -267,7 +267,7 @@ final class MD_STD_IN {
|
||||
}
|
||||
|
||||
if (($output = \filter_var($input, FILTER_VALIDATE_EMAIL)) === false) {
|
||||
throw new MDInvalidEmail("Invalid input email address" . ' '. $input);
|
||||
throw new MDInvalidEmail("Invalid input email address" . ' ' . $input);
|
||||
}
|
||||
|
||||
return $output;
|
||||
|
||||
@@ -9,14 +9,14 @@ declare(strict_types = 1);
|
||||
*/
|
||||
final class MD_STD_SEC {
|
||||
|
||||
const REFRESH_TIME_GENERAL = 60; // Time until the comp. with the whole service is cleared.
|
||||
const REFRESH_TIME_USER = 600; // Time until the comp. with the same username service is cleared.
|
||||
const REFRESH_TIME_IP = 180; // Time until the comp. with the same IP is cleared. This should be lower than the user-level one, as people working together may be using a common IP.
|
||||
private const REFRESH_TIME_GENERAL = 60; // Time until the comp. with the whole service is cleared.
|
||||
private const REFRESH_TIME_USER = 600; // Time until the comp. with the same username service is cleared.
|
||||
private const REFRESH_TIME_IP = 180; // Time until the comp. with the same IP is cleared. This should be lower than the user-level one, as people working together may be using a common IP.
|
||||
|
||||
const BRUTE_FORCE_DELAY_DEFAULT = 2000; // 2000 microseconds = 2 milliseconds
|
||||
const BRUTE_FORCE_DELAY_MULTIPLIER_COMMON = 1.04;
|
||||
const BRUTE_FORCE_DELAY_MULTIPLIER_PER_USER = 2.0;
|
||||
const BRUTE_FORCE_DELAY_MULTIPLIER_PER_IP = 1.6;
|
||||
private const BRUTE_FORCE_DELAY_DEFAULT = 2000; // 2000 microseconds = 2 milliseconds
|
||||
private const BRUTE_FORCE_DELAY_MULTIPLIER_COMMON = 1.04;
|
||||
private const BRUTE_FORCE_DELAY_MULTIPLIER_PER_USER = 2.0;
|
||||
private const BRUTE_FORCE_DELAY_MULTIPLIER_PER_IP = 1.6;
|
||||
|
||||
/**
|
||||
* Function for retrieving the anti-csrf token or generating it if need be.
|
||||
|
||||
Reference in New Issue
Block a user