2022-10-10 11:21:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Helpers;
|
|
|
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
class Helpers
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Generate a unique filename
|
2022-11-22 15:15:52 +01:00
|
|
|
*
|
|
|
|
* @param string $extension
|
2022-10-10 11:21:42 +02:00
|
|
|
* @return string The filename
|
|
|
|
*/
|
2022-11-22 15:15:52 +01:00
|
|
|
public static function getUniqueFilename(string $extension) : string
|
2022-10-10 11:21:42 +02:00
|
|
|
{
|
2022-11-22 15:15:52 +01:00
|
|
|
return Str::random(40) . '.' . $extension;
|
2022-10-10 11:21:42 +02:00
|
|
|
}
|
2022-10-12 11:10:51 +02:00
|
|
|
|
2022-11-22 15:15:52 +01:00
|
|
|
/**
|
|
|
|
* Clean a version number string
|
|
|
|
*
|
|
|
|
* @param string|null $release
|
|
|
|
* @return string|false
|
|
|
|
*/
|
|
|
|
public static function cleanVersionNumber(?string $release) : string|false
|
2022-10-12 11:10:51 +02:00
|
|
|
{
|
|
|
|
return preg_match('/([[0-9][0-9\.]*[0-9])/', $release, $version) ? $version[0] : false;
|
|
|
|
}
|
2022-10-10 11:21:42 +02:00
|
|
|
}
|