Files
2FAuth/app/Helpers/Helpers.php
2025-03-27 17:19:57 +01:00

71 lines
2.1 KiB
PHP

<?php
namespace App\Helpers;
use Illuminate\Support\Str;
class Helpers
{
/**
* Clean a version number string
*/
public static function cleanVersionNumber(?string $release) : string|false
{
// We use the regex for semver detection (see https://semver.org/)
return preg_match('/(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/', $release, $version) ? $version[0] : false;
}
/**
* Format a string to comply with Base32 format
*
* @return string The filename
*/
public static function PadToBase32Format(?string $str) : string
{
return blank($str) ? '' : strtoupper(str_pad($str, (int) ceil(strlen($str) / 8) * 8, '='));
}
/**
* Identify comma separated list of values and explode it to an array of values
*
* @param mixed $ids
*/
public static function commaSeparatedToArray($ids) : mixed
{
if (is_string($ids)) {
$regex = "/^\d+(,{1}\d+)*$/";
if (preg_match($regex, $ids)) {
$ids = explode(',', $ids);
}
}
return $ids;
}
/**
* Generate a unique filename with the given extension
*/
public static function getRandomFilename(string $extension, int $length = 40) : string
{
return Str::random($length) . '.' . $extension;
}
/**
* Defines preferences locked for change.
* This helper is only intended to be called from the 2FAuth config file.
*/
public static function lockedPreferences(array $preferences) : array
{
foreach ($preferences as $key => $value) {
$_key = $key === 'revealDottedOTP' ? 'revealDottedOtp' : $key;
$isLocked = envUnlessEmpty(Str::of($_key)->snake('_')->upper()->prepend('USERPREF_LOCKED__')->toString(), false);
if ($isLocked) {
$lockedPreferences[] = $key;
}
}
return $lockedPreferences ?? [];
}
}