2019-05-02 13:07:38 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Quote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\Quote;
|
2020-02-15 10:06:30 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
class StoreQuoteRequest extends Request
|
|
|
|
{
|
2019-12-17 23:40:15 +01:00
|
|
|
use MakesHash;
|
2020-02-15 10:06:30 +01:00
|
|
|
use CleanLineItems;
|
2019-12-17 23:40:15 +01:00
|
|
|
|
2019-05-02 13:07:38 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Quote::class);
|
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:17 +01:00
|
|
|
protected function prepareForValidation()
|
2019-05-02 13:07:38 +02:00
|
|
|
{
|
2019-12-17 23:40:15 +01:00
|
|
|
$input = $this->all();
|
2019-07-04 06:31:01 +02:00
|
|
|
|
2020-02-27 22:17:17 +01:00
|
|
|
if($input['client_id'])
|
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2020-02-15 10:06:30 +01:00
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
if(isset($input['client_contacts']))
|
|
|
|
{
|
|
|
|
foreach($input['client_contacts'] as $key => $contact)
|
|
|
|
{
|
|
|
|
if(!array_key_exists('send_email', $contact) || !array_key_exists('id', $contact))
|
|
|
|
{
|
|
|
|
unset($input['client_contacts'][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-02-27 22:17:17 +01:00
|
|
|
|
|
|
|
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']);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
//$input['line_items'] = json_encode($input['line_items']);
|
2019-12-17 23:40:15 +01:00
|
|
|
$this->replace($input);
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
|
|
|
|
2019-12-17 23:40:15 +01:00
|
|
|
public function rules()
|
2019-05-02 13:07:38 +02:00
|
|
|
{
|
2019-12-17 23:40:15 +01:00
|
|
|
return [
|
|
|
|
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
2020-02-15 10:06:30 +01:00
|
|
|
'client_id' => 'required|exists:clients,id',
|
2019-12-17 23:40:15 +01:00
|
|
|
];
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
|
|
|
}
|
2020-02-15 10:06:30 +01:00
|
|
|
|