1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Project/UpdateProjectRequest.php

58 lines
1.3 KiB
PHP
Raw Normal View History

2020-10-08 00:25:39 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-08 00:25:39 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-10-08 00:25:39 +02:00
*/
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()
{
$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
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
if (array_key_exists('color', $input) && is_null($input['color'])) {
$input['color'] = '';
}
2021-01-07 23:25:00 +01:00
2020-10-08 00:25:39 +02:00
$this->replace($input);
}
}