2023-01-22 05:19:49 +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 05:19:49 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Credit;
|
|
|
|
|
2023-01-22 06:40:02 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2023-01-22 05:19:49 +01:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2023-01-22 06:40:02 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2023-01-22 05:19:49 +01:00
|
|
|
|
|
|
|
class BulkCreditRequest extends FormRequest
|
|
|
|
{
|
2023-01-22 06:40:02 +01:00
|
|
|
use MakesHash;
|
2023-01-22 05:19:49 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2023-01-22 05:19:49 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2023-11-18 08:45:26 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2023-01-22 05:19:49 +01:00
|
|
|
return [
|
2023-11-18 08:45:26 +01:00
|
|
|
'ids' => ['required','bail','array',Rule::exists('credits', 'id')->where('company_id', $user->company()->id)],
|
|
|
|
'action' => 'required|bail|in:archive,restore,delete,email,bulk_download,bulk_print,mark_paid,clone_to_credit,history,mark_sent,download,send_email,template',
|
|
|
|
'template' => 'sometimes|string',
|
|
|
|
'template_id' => 'sometimes|string',
|
|
|
|
'send_email' => 'sometimes|bool'
|
2023-01-22 06:40:02 +01:00
|
|
|
];
|
2023-01-22 05:19:49 +01:00
|
|
|
}
|
2023-01-22 06:40:02 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (isset($input['ids'])) {
|
2023-01-22 06:40:02 +01:00
|
|
|
$input['ids'] = $this->transformKeys($input['ids']);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-01-22 06:40:02 +01:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2023-01-22 05:19:49 +01:00
|
|
|
}
|