34 lines
626 B
PHP
34 lines
626 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class EntryRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function rules()
|
|
{
|
|
return config('server')
|
|
->schema('attributetypes')
|
|
->intersectByKeys($this->request)
|
|
->map(fn($item)=>$item->validation(request()->get('objectclass')))
|
|
->filter()
|
|
->flatMap(fn($item)=>$item)
|
|
->toArray();
|
|
}
|
|
} |