2023-01-22 04:40:22 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2023-01-22 04:40:22 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2023-01-22 06:34:47 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Validation\Rule;
|
2023-01-22 04:40:22 +01:00
|
|
|
|
|
|
|
class BulkClientRequest extends Request
|
|
|
|
{
|
2023-01-22 06:34:47 +01:00
|
|
|
use MakesHash;
|
|
|
|
|
2023-01-22 04:40:22 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2023-09-04 06:34:55 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2023-01-22 04:40:22 +01:00
|
|
|
return [
|
2023-09-04 06:34:55 +02:00
|
|
|
'ids' => ['required','bail','array',Rule::exists('clients', 'id')->where('company_id', $user->company()->id)],
|
2023-01-22 04:40:22 +01:00
|
|
|
'action' => 'in:archive,restore,delete'
|
|
|
|
];
|
|
|
|
}
|
2023-01-22 06:34:47 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (isset($input['ids'])) {
|
2023-01-22 06:34:47 +01:00
|
|
|
$input['ids'] = $this->transformKeys($input['ids']);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-01-22 06:34:47 +01:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2023-01-22 04:40:22 +01:00
|
|
|
}
|