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
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @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;
|
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;
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:40:15 +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
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['client_id'])) {
|
2019-12-17 23:40:15 +01:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-05-02 13:07:38 +02:00
|
|
|
|
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',
|
|
|
|
'client_id' => 'required',
|
|
|
|
];
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
|
|
|
}
|