invoiceninja/app/Http/Requests/Invoice/UpdateInvoiceRequest.php

59 lines
1.2 KiB
PHP
Raw Normal View History

2019-04-15 10:10:54 +10:00
<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-15 10:10:54 +10:00
namespace App\Http\Requests\Invoice;
use App\Http\Requests\Request;
use App\Utils\Traits\MakesHash;
2019-04-15 10:10:54 +10:00
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\Rule;
class UpdateInvoiceRequest extends Request
{
use MakesHash;
2019-04-15 10:10:54 +10:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2019-04-16 15:28:30 +10:00
public function authorize() : bool
2019-04-15 10:10:54 +10:00
{
return auth()->user()->can('edit', $this->invoice);
2019-04-15 10:10:54 +10:00
}
2019-04-28 22:23:22 +10:00
public function rules()
{
2019-10-11 09:11:36 +11:00
$this->sanitize();
2019-10-11 09:11:36 +11:00
2019-04-28 22:23:22 +10:00
return [
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
//'client_id' => 'required|integer',
2019-07-05 08:36:40 +10:00
//'invoice_type_id' => 'integer',
2019-04-28 22:23:22 +10:00
];
}
2019-10-11 09:11:36 +11:00
public function sanitize()
{
$input = $this->all();
if(isset($input['client_id']))
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
2019-10-11 09:11:36 +11:00
$this->replace($input);
return $this->all();
}
2019-04-15 10:10:54 +10:00
}