2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Rules\StorageFile;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UploadAssetRequest extends FormRequest
|
|
|
|
{
|
2024-02-23 10:54:12 +00:00
|
|
|
public const FORM_ASSET_MAX_SIZE = 5000000;
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2023-10-20 09:00:35 +00:00
|
|
|
$fileTypes = [
|
|
|
|
'png',
|
|
|
|
'jpeg',
|
|
|
|
'jpg',
|
|
|
|
'bmp',
|
|
|
|
'gif',
|
2024-02-23 10:54:12 +00:00
|
|
|
'svg',
|
2023-10-20 09:00:35 +00:00
|
|
|
];
|
|
|
|
if ($this->offsetExists('type') && $this->get('type') === 'files') {
|
|
|
|
$fileTypes = [];
|
|
|
|
}
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
return [
|
2023-10-20 09:00:35 +00:00
|
|
|
'url' => ['required', new StorageFile(self::FORM_ASSET_MAX_SIZE, $fileTypes)],
|
2022-09-20 19:59:52 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|