Fix code smells

This commit is contained in:
Joshua Ramon Enslin 2024-06-11 21:57:56 +02:00
parent d4918dd893
commit 94dfa17290
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
8 changed files with 18 additions and 21 deletions

View File

@ -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;

View File

@ -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;
}
}

View File

@ -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
*/

View File

@ -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.

View File

@ -47,6 +47,7 @@ final class MD_STD_IN_Test extends TestCase {
*/
public function test_sanitize_id_works(mixed $to_validate, int $expected):void {
self::assertEquals($expected, MD_STD_IN::sanitize_id($to_validate));
}
/**
@ -79,6 +80,7 @@ final class MD_STD_IN_Test extends TestCase {
MD_STD_IN::sanitize_id($to_validate);
}
/**
* Data provider for valid IDs.
*
@ -316,7 +318,6 @@ final class MD_STD_IN_Test extends TestCase {
self::expectException(MDpageParameterNotFromListException::class);
MD_STD_IN::get_http_input_text("a", "", ['a']);
}
/**
@ -342,7 +343,6 @@ final class MD_STD_IN_Test extends TestCase {
self::expectException(MDpageParameterNotFromListException::class);
MD_STD_IN::get_http_post_text("a", "", ['a']);
}
/**
@ -425,6 +425,7 @@ final class MD_STD_IN_Test extends TestCase {
*/
public function test_sanitize_email_works(string $to_validate, string $expected):void {
self::assertEquals($expected, MD_STD_IN::sanitize_email($to_validate));
}
/**

View File

@ -12,7 +12,6 @@ use PHPUnit\Framework\TestCase;
* Tests for MD_STD.
*/
final class MD_STD_Test extends TestCase {
/**
* Returns sample dates and their equivalent integer values according
* to MD_STD::date_to_int().
@ -58,5 +57,4 @@ final class MD_STD_Test extends TestCase {
self::assertEquals($date, $toStr);
}
}

View File

@ -20,6 +20,5 @@ declare(strict_types = 1);
}
}
});