invoiceninja/app/Http/Requests/Project/UpdateProjectRequest.php

54 lines
1.2 KiB
PHP
Raw Normal View History

2020-10-08 09:25:39 +11:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-08 09:25:39 +11:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Requests\Project;
use App\Http\Requests\Request;
use App\Utils\Traits\ChecksEntityStatus;
2020-12-02 19:59:45 +11:00
use Illuminate\Validation\Rule;
2020-10-08 09:25:39 +11:00
class UpdateProjectRequest extends Request
{
use ChecksEntityStatus;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('edit', $this->project);
}
public function rules()
{
$rules = [];
2020-11-25 15:19:52 +01:00
if (isset($this->number)) {
2020-11-12 07:42:20 +11:00
$rules['number'] = Rule::unique('projects')->where('company_id', auth()->user()->company()->id)->ignore($this->project->id);
2020-11-25 15:19:52 +01:00
}
2020-10-29 22:01:37 +11:00
return $this->globalRules($rules);
2020-10-08 09:25:39 +11:00
}
protected function prepareForValidation()
{
2020-11-25 15:19:52 +01:00
$input = $this->decodePrimaryKeys($this->all());
2020-10-08 09:25:39 +11:00
2020-11-25 15:19:52 +01:00
if (isset($input['client_id'])) {
2020-11-12 07:42:20 +11:00
unset($input['client_id']);
2020-11-25 15:19:52 +01:00
}
2020-11-12 07:42:20 +11:00
2020-10-08 09:25:39 +11:00
$this->replace($input);
}
}