1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/Credit/BulkCreditRequest.php

55 lines
1.3 KiB
PHP
Raw Normal View History

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
*/
public function authorize() : bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2023-02-16 02:36:09 +01:00
'ids' => ['required','bail','array',Rule::exists('credits', 'id')->where('company_id', auth()->user()->company()->id)],
2023-01-22 06:40:02 +01:00
'action' => 'required|bail|in:archive,restore,delete,email,bulk_download,bulk_print,mark_paid,clone_to_credit,history,mark_sent,download,send_email'
];
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
}