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

54 lines
1.2 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)
*
* @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-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()
{
2019-10-04 13:57:33 +02:00
$this->sanitize();
2019-04-03 04:34:28 +02:00
return [
'product_key' => 'required|unique:products,product_key,null,null,company_id,'.auth()->user()->companyId(),
2019-07-04 06:31:01 +02:00
'cost' => 'numeric',
'price' => 'numeric',
2019-09-04 14:01:19 +02:00
'quantity' => 'numeric',
2019-04-03 04:34:28 +02:00
];
}
2019-10-04 13:57:33 +02:00
public function sanitize()
{
$input = $this->all();
2019-10-05 02:11:04 +02:00
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
2019-10-04 13:57:33 +02:00
$this->replace($input);
return $this->all();
}
2019-04-03 04:34:28 +02:00
}