mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
a8c15ef1c9
* Ensure NINJA_ENVIRONMENT variable is present in .env file * Implement version checking in app * Remove password protection from check version route
83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
use App\Utils\Traits\CleanLineItems;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateInvoiceRequest extends Request
|
|
{
|
|
use MakesHash;
|
|
use CleanLineItems;
|
|
use ChecksEntityStatus;
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('edit', $this->invoice);
|
|
}
|
|
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
|
//'client_id' => 'required|integer',
|
|
//'invoice_type_id' => 'integer',
|
|
];
|
|
}
|
|
|
|
protected function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if(array_key_exists('design_id', $input) && is_string($input['desing_id']))
|
|
$input['design_id'] = $this->decodePrimaryKey($input['design_id']);
|
|
|
|
if (isset($input['client_id'])) {
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
|
}
|
|
|
|
if(isset($input['invitations']))
|
|
{
|
|
|
|
foreach($input['invitations'] as $key => $value)
|
|
{
|
|
|
|
if(is_numeric($input['invitations'][$key]['id']))
|
|
unset($input['invitations'][$key]['id']);
|
|
|
|
if(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']) : [];
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|