mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
124 lines
4.9 KiB
PHP
124 lines
4.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\V1\TimeEntry;
|
|
|
|
use App\Enums\TimeEntryType;
|
|
use App\Http\Requests\V1\BaseFormRequest;
|
|
use App\Models\Member;
|
|
use App\Models\Organization;
|
|
use App\Models\Project;
|
|
use App\Models\Tag;
|
|
use App\Models\Task;
|
|
use App\Service\PermissionStore;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Validation\Rule;
|
|
use Korridor\LaravelModelValidationRules\Rules\ExistsEloquent;
|
|
|
|
/**
|
|
* @property Organization $organization Organization from model binding
|
|
*/
|
|
class TimeEntryStoreRequest extends BaseFormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, array<string|\Closure|ValidationRule|\Illuminate\Contracts\Validation\Rule>>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
// ID of the organization member that the time entry should belong to
|
|
'member_id' => [
|
|
'required',
|
|
'string',
|
|
ExistsEloquent::make(Member::class, null, function (Builder $builder): Builder {
|
|
/** @var Builder<Member> $builder */
|
|
return $builder->whereBelongsTo($this->organization, 'organization');
|
|
})->uuid(),
|
|
],
|
|
'project_id' => [
|
|
'nullable',
|
|
'string',
|
|
'required_with:task_id',
|
|
'prohibited_if:type,break',
|
|
ExistsEloquent::make(Project::class, null, function (Builder $builder): Builder {
|
|
/** @var Builder<Project> $builder */
|
|
$builder = $builder->whereBelongsTo($this->organization, 'organization');
|
|
|
|
// If user doesn't have 'all' permission for time entries or projects, only allow access to public projects or projects they're a member of
|
|
$permissionStore = app(PermissionStore::class);
|
|
if (! $permissionStore->has($this->organization, 'time-entries:create:all')
|
|
&& ! $permissionStore->has($this->organization, 'projects:view:all')) {
|
|
$builder = $builder->visibleByEmployee(Auth::user());
|
|
}
|
|
|
|
return $builder;
|
|
})->uuid(),
|
|
],
|
|
// ID of the task that the time entry should belong to
|
|
'task_id' => [
|
|
'nullable',
|
|
'string',
|
|
'prohibited_if:type,break',
|
|
ExistsEloquent::make(Task::class, null, function (Builder $builder): Builder {
|
|
/** @var Builder<Task> $builder */
|
|
return $builder->whereBelongsTo($this->organization, 'organization');
|
|
})->uuid(),
|
|
ExistsEloquent::make(Task::class, null, function (Builder $builder): Builder {
|
|
/** @var Builder<Task> $builder */
|
|
return $builder->whereBelongsTo($this->organization, 'organization')
|
|
->where('project_id', $this->input('project_id'));
|
|
})->uuid()->withMessage(__('validation.task_belongs_to_project')),
|
|
],
|
|
// Start of time entry (Format: "Y-m-d\TH:i:s\Z", UTC timezone, Example: "2000-02-22T14:58:59Z")
|
|
'start' => [
|
|
'required',
|
|
'date_format:Y-m-d\TH:i:s\Z',
|
|
],
|
|
// End of time entry (Format: "Y-m-d\TH:i:s\Z", UTC timezone, Example: "2000-02-22T14:58:59Z")
|
|
'end' => [
|
|
'nullable',
|
|
'date_format:Y-m-d\TH:i:s\Z',
|
|
'after_or_equal:start',
|
|
],
|
|
// Whether time entry is billable
|
|
'billable' => [
|
|
'required',
|
|
'boolean',
|
|
'declined_if:type,break',
|
|
],
|
|
// Type of the time entry (work time or a break)
|
|
'type' => [
|
|
Rule::enum(TimeEntryType::class),
|
|
function (string $attribute, mixed $value, \Closure $fail): void {
|
|
if ($value === TimeEntryType::Break->value && ! $this->organization->breaks_enabled) {
|
|
$fail('Breaks are disabled for this organization.');
|
|
}
|
|
},
|
|
],
|
|
// Description of time entry
|
|
'description' => [
|
|
'nullable',
|
|
'string',
|
|
'max:5000',
|
|
],
|
|
// List of tag IDs
|
|
'tags' => [
|
|
'nullable',
|
|
'array',
|
|
'prohibited_if:type,break',
|
|
],
|
|
'tags.*' => [
|
|
ExistsEloquent::make(Tag::class, null, function (Builder $builder): Builder {
|
|
/** @var Builder<Tag> $builder */
|
|
return $builder->whereBelongsTo($this->organization, 'organization');
|
|
})->uuid(),
|
|
],
|
|
];
|
|
}
|
|
}
|