Files
alrahma_sunday_school_api/app/Support/AccountAvailability.php
T
root f83f21936f
API CI/CD / Validate (composer + pint) (push) Successful in 3m30s
API CI/CD / Test (PHPUnit) (push) Failing after 5m4s
API CI/CD / Build frontend assets (push) Successful in 1m1s
API CI/CD / Security audit (push) Failing after 49s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
fix test issues
2026-07-07 09:06:42 -04:00

37 lines
1.0 KiB
PHP

<?php
namespace App\Support;
class AccountAvailability
{
public static function isUnavailable(object $user): bool
{
$status = strtolower(trim((string) ($user->status ?? '')));
$isVerified = $user->is_verified ?? null;
$isSuspended = $user->is_suspended ?? null;
return ($status !== '' && $status !== 'active')
|| self::isExplicitFalse($isVerified)
|| self::isTruthy($isSuspended);
}
public static function isAuthUnavailable(object $user): bool
{
$status = strtolower(trim((string) ($user->status ?? '')));
$isSuspended = $user->is_suspended ?? null;
return ($status !== '' && $status !== 'active')
|| self::isTruthy($isSuspended);
}
private static function isExplicitFalse(mixed $value): bool
{
return $value === false || $value === 0 || $value === '0';
}
private static function isTruthy(mixed $value): bool
{
return $value === true || $value === 1 || $value === '1';
}
}