2019-05-03 00:29:04 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-03 00:29:04 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\RecurringInvoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-10-15 23:17:31 +02:00
|
|
|
use App\Http\ValidationRules\Recurring\UniqueRecurringInvoiceNumberRule;
|
2020-09-27 11:22:34 +02:00
|
|
|
use App\Models\Client;
|
2019-05-03 00:29:04 +02:00
|
|
|
use App\Models\RecurringInvoice;
|
2020-02-15 10:06:30 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-06 22:50:14 +01:00
|
|
|
use Illuminate\Http\UploadedFile;
|
2019-05-03 00:29:04 +02:00
|
|
|
|
|
|
|
class StoreRecurringInvoiceRequest extends Request
|
|
|
|
{
|
2020-02-15 10:06:30 +01:00
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', RecurringInvoice::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-07-01 02:11:47 +02:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
|
|
|
$documents = count($this->input('documents'));
|
|
|
|
|
|
|
|
foreach (range(0, $documents) as $index) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
2020-07-01 02:11:47 +02:00
|
|
|
}
|
2021-03-06 22:50:14 +01:00
|
|
|
|
2020-07-01 02:11:47 +02:00
|
|
|
} elseif ($this->input('documents')) {
|
|
|
|
$rules['documents'] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
|
|
|
|
|
|
|
$rules['client_id'] = 'required|exists:clients,id,company_id,'.auth()->user()->company()->id;
|
|
|
|
|
|
|
|
$rules['invitations.*.client_contact_id'] = 'distinct';
|
|
|
|
|
2021-03-08 02:31:00 +01:00
|
|
|
$rules['frequency_id'] = 'required|integer|digits_between:1,12';
|
2020-07-01 02:11:47 +02:00
|
|
|
|
2020-10-15 23:17:31 +02:00
|
|
|
$rules['number'] = new UniqueRecurringInvoiceNumberRule($this->all());
|
|
|
|
|
2020-07-01 02:11:47 +02:00
|
|
|
return $rules;
|
2019-05-03 00:29:04 +02:00
|
|
|
}
|
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-05-03 00:29:04 +02:00
|
|
|
{
|
2020-02-15 10:06:30 +01:00
|
|
|
$input = $this->all();
|
|
|
|
|
2021-03-06 22:50:14 +01:00
|
|
|
// foreach($this->input('documents') as $document)
|
|
|
|
// {
|
|
|
|
// if($document instanceof UploadedFile){
|
|
|
|
// nlog("i am an uploaded file");
|
|
|
|
// nlog($document);
|
|
|
|
// }
|
|
|
|
// else
|
|
|
|
// nlog($document);
|
|
|
|
// }
|
|
|
|
|
2020-07-01 02:11:47 +02:00
|
|
|
if (array_key_exists('design_id', $input) && is_string($input['design_id'])) {
|
|
|
|
$input['design_id'] = $this->decodePrimaryKey($input['design_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('client_id', $input) && is_string($input['client_id'])) {
|
2020-02-17 10:37:44 +01:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-07-01 02:11:47 +02:00
|
|
|
|
2020-06-26 00:29:24 +02:00
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
|
|
}
|
|
|
|
|
2020-07-01 02:11:47 +02:00
|
|
|
if (isset($input['client_contacts'])) {
|
|
|
|
foreach ($input['client_contacts'] as $key => $contact) {
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! array_key_exists('send_email', $contact) || ! array_key_exists('id', $contact)) {
|
2020-07-01 02:11:47 +02:00
|
|
|
unset($input['client_contacts'][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($input['invitations'])) {
|
|
|
|
foreach ($input['invitations'] as $key => $value) {
|
|
|
|
if (isset($input['invitations'][$key]['id']) && is_numeric($input['invitations'][$key]['id'])) {
|
|
|
|
unset($input['invitations'][$key]['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($input['invitations'][$key]['id']) && is_string($input['invitations'][$key]['id'])) {
|
|
|
|
$input['invitations'][$key]['id'] = $this->decodePrimaryKey($input['invitations'][$key]['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_string($input['invitations'][$key]['client_contact_id'])) {
|
|
|
|
$input['invitations'][$key]['client_contact_id'] = $this->decodePrimaryKey($input['invitations'][$key]['client_contact_id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 10:06:30 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
2020-09-24 05:40:13 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (isset($input['auto_bill'])) {
|
2020-10-06 12:06:14 +02:00
|
|
|
$input['auto_bill_enabled'] = $this->setAutoBillFlag($input['auto_bill']);
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
|
|
|
if ($client = Client::find($input['client_id'])) {
|
2020-10-06 12:06:14 +02:00
|
|
|
$input['auto_bill'] = $client->getSetting('auto_bill');
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-10-06 12:06:14 +02:00
|
|
|
}
|
2020-09-27 11:22:34 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
$this->replace($input);
|
2020-11-11 01:13:39 +01:00
|
|
|
}
|
2019-05-03 00:29:04 +02:00
|
|
|
|
2020-11-11 01:13:39 +01:00
|
|
|
private function setAutoBillFlag($auto_bill)
|
2019-05-03 00:29:04 +02:00
|
|
|
{
|
2020-12-16 12:52:40 +01:00
|
|
|
if ($auto_bill == 'always') {
|
2020-11-11 01:13:39 +01:00
|
|
|
return true;
|
2020-12-16 12:52:40 +01:00
|
|
|
}
|
2020-12-10 09:51:00 +01:00
|
|
|
|
2020-11-11 01:13:39 +01:00
|
|
|
|
2020-12-16 12:52:40 +01:00
|
|
|
//if ($auto_bill == 'off' || $auto_bill == 'optin') {
|
2020-12-10 09:51:00 +01:00
|
|
|
return false;
|
|
|
|
//}
|
2019-05-03 00:29:04 +02:00
|
|
|
}
|
2020-11-11 01:13:39 +01:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
2019-05-03 00:29:04 +02:00
|
|
|
}
|