2020-10-08 00:25:39 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Project;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-12-02 09:59:45 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2020-10-08 00:25:39 +02: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()
|
|
|
|
{
|
2020-10-29 01:09:51 +01:00
|
|
|
$rules = [];
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (isset($this->number)) {
|
2020-11-11 21:42:20 +01: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 12:01:37 +01:00
|
|
|
|
2020-10-29 01:09:51 +01:00
|
|
|
return $this->globalRules($rules);
|
2020-10-08 00:25:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
$input = $this->decodePrimaryKeys($this->all());
|
2020-10-08 00:25:39 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (isset($input['client_id'])) {
|
2020-11-11 21:42:20 +01:00
|
|
|
unset($input['client_id']);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-11-11 21:42:20 +01:00
|
|
|
|
2020-10-08 00:25:39 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|