mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
47 lines
936 B
PHP
47 lines
936 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\Token;
|
||
|
|
||
|
use App\Utils\Traits\BulkOptions;
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class BulkTokenRequest extends FormRequest
|
||
|
{
|
||
|
use BulkOptions;
|
||
|
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
if (!$this->has('action')) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (!in_array($this->action, $this->getBulkOptions(), true)) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return auth()->user()->isAdmin();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
$rules = $this->getGlobalRules();
|
||
|
|
||
|
/** We don't require IDs on bulk storing. */
|
||
|
if ($this->action !== self::$STORE_METHOD) {
|
||
|
$rules['ids'] = ['required'];
|
||
|
}
|
||
|
|
||
|
return $rules;
|
||
|
}
|
||
|
}
|