1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/Product/StoreProductRequest.php

63 lines
1.7 KiB
PHP
Raw Normal View History

2019-04-03 04:34:28 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @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-04-03 04:34:28 +02:00
namespace App\Http\Requests\Product;
use App\Http\Requests\Request;
use App\Models\Product;
class StoreProductRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('create', Product::class);
}
public function rules()
{
2020-06-22 13:41:04 +02:00
if ($this->input('documents') && is_array($this->input('documents'))) {
$documents = count($this->input('documents'));
foreach (range(0, $documents) as $index) {
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
2020-06-22 13:41:04 +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['cost'] = 'numeric';
$rules['price'] = 'numeric';
$rules['quantity'] = 'numeric';
return $rules;
2019-04-03 04:34:28 +02:00
}
protected function prepareForValidation()
2019-10-04 13:57:33 +02:00
{
$input = $this->all();
if (! isset($input['quantity']) || $input['quantity'] < 1) {
2019-10-04 13:57:33 +02:00
$input['quantity'] = 1;
}
2019-04-03 04:34:28 +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']);
}
2019-10-04 13:57:33 +02:00
$this->replace($input);
}
}