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

64 lines
1.5 KiB
PHP
Raw Normal View History

2022-07-06 07:18:41 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2022-07-06 07:18:41 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
2022-07-06 07:18:41 +02:00
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2022-07-06 07:18:41 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\PurchaseOrder;
use App\Http\Requests\Request;
class UploadPurchaseOrderRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
2023-08-20 06:44:07 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->can('edit', $this->purchase_order);
2022-07-06 07:18:41 +02:00
}
public function rules()
{
2023-02-16 02:36:09 +01:00
$rules = [];
2022-07-06 07:18:41 +02:00
2023-03-18 08:24:56 +01:00
if ($this->file('documents') && is_array($this->file('documents'))) {
2023-02-27 10:12:59 +01:00
$rules['documents.*'] = $this->file_validation;
2023-03-18 08:24:56 +01:00
} elseif ($this->file('documents')) {
2023-02-27 10:12:59 +01:00
$rules['documents'] = $this->file_validation;
2023-03-18 08:24:56 +01:00
}
2022-07-06 07:18:41 +02:00
2023-02-27 10:12:59 +01:00
if ($this->file('file') && is_array($this->file('file'))) {
$rules['file.*'] = $this->file_validation;
} elseif ($this->file('file')) {
$rules['file'] = $this->file_validation;
}
$rules['is_public'] = 'sometimes|boolean';
2023-02-16 02:36:09 +01:00
return $rules;
2022-07-06 07:18:41 +02:00
}
public function prepareForValidation()
{
$input = $this->all();
if(isset($input['is_public'])) {
$input['is_public'] = $this->toBoolean($input['is_public']);
}
$this->replace($input);
}
2022-07-06 07:18:41 +02:00
}