2020-01-20 02:31:58 +01:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Vendor;
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Http\Requests\Request;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Models\Vendor;
|
2020-01-20 02:31:58 +01:00
|
|
|
use App\Utils\Traits\BulkOptions;
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class BulkVendorRequest extends Request
|
2020-01-20 02:31:58 +01:00
|
|
|
{
|
|
|
|
use BulkOptions;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $this->has('action')) {
|
2020-01-20 02:31:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! in_array($this->action, $this->getBulkOptions(), true)) {
|
2020-01-20 02:31:58 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return auth()->user()->can(auth()->user()->isAdmin(), Vendor::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = $this->getGlobalRules();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
/* We don't require IDs on bulk storing. */
|
2020-01-20 02:31:58 +01:00
|
|
|
if ($this->action !== self::$STORE_METHOD) {
|
|
|
|
$rules['ids'] = ['required'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
}
|