mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Requests\Vendor;
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
class UploadVendorRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return auth()->user()->can('edit', $this->vendor);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
$rules = [];
|
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
|
$rules['documents.*'] = $this->fileValidation();
|
|
} elseif ($this->file('documents')) {
|
|
$rules['documents'] = $this->fileValidation();
|
|
}
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
$rules['file.*'] = $this->fileValidation();
|
|
} elseif ($this->file('file')) {
|
|
$rules['file'] = $this->fileValidation();
|
|
}
|
|
|
|
$rules['is_public'] = 'sometimes|boolean';
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if(isset($input['is_public'])) {
|
|
$input['is_public'] = $this->toBoolean($input['is_public']);
|
|
}
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|