mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
201 lines
5.9 KiB
PHP
201 lines
5.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Member;
|
|
use App\Models\Organization;
|
|
use App\Models\Project;
|
|
use App\Models\Tag;
|
|
use App\Models\Task;
|
|
use App\Models\TimeEntry;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @extends Factory<TimeEntry>
|
|
*/
|
|
class TimeEntryFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
$start = $this->faker->dateTimeBetween('-1 year', '-1 hour');
|
|
|
|
return [
|
|
'description' => $this->faker->sentence(),
|
|
'start' => $start,
|
|
'end' => $this->faker->dateTimeBetween($start, 'now'),
|
|
'billable' => $this->faker->boolean(),
|
|
'is_imported' => false,
|
|
'tags' => [],
|
|
'user_id' => User::factory(),
|
|
'member_id' => Member::factory(),
|
|
'task_id' => null,
|
|
'project_id' => null,
|
|
'organization_id' => Organization::factory(),
|
|
'billable_rate' => null,
|
|
];
|
|
}
|
|
|
|
public function notBillable(): self
|
|
{
|
|
return $this->state(function (array $attributes): array {
|
|
return [
|
|
'billable' => false,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function billableRate(int $billableRate): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($billableRate): array {
|
|
return [
|
|
'billable' => true,
|
|
'billable_rate' => $billableRate,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function withTask(Organization $organization): self
|
|
{
|
|
return $this->state(function (array $attributes) use (&$organization): array {
|
|
$project = Project::factory()->forOrganization($organization)->create();
|
|
$task = Task::factory()->forProject($project)->forOrganization($organization)->create();
|
|
|
|
return [
|
|
'task_id' => $task->getKey(),
|
|
'project_id' => $task->project->getKey(),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function withTags(Organization $organization): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($organization): array {
|
|
return [
|
|
'tags' => [
|
|
Tag::factory()->forOrganization($organization)->create()->getKey(),
|
|
Tag::factory()->forOrganization($organization)->create()->getKey(),
|
|
],
|
|
];
|
|
});
|
|
}
|
|
|
|
public function startBetween(Carbon $rangeStart, Carbon $rangeEnd, bool $fixedValueForMultiple = false): self
|
|
{
|
|
$fixedStart = Carbon::instance($this->faker->dateTimeBetween($rangeStart, $rangeEnd));
|
|
|
|
return $this->state(function (array $attributes) use ($rangeStart, $rangeEnd, $fixedStart, $fixedValueForMultiple): array {
|
|
$start = $fixedValueForMultiple ? $fixedStart : Carbon::instance($this->faker->dateTimeBetween($rangeStart, $rangeEnd));
|
|
|
|
return [
|
|
'start' => $start->utc(),
|
|
'end' => $this->faker->dateTimeBetween($start, 'now'),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function active(): self
|
|
{
|
|
return $this->state(function (array $attributes): array {
|
|
return [
|
|
'end' => null,
|
|
];
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use forMember instead
|
|
*/
|
|
public function forUser(User $user): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($user) {
|
|
return [
|
|
'user_id' => $user->getKey(),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function forMember(Member $member): static
|
|
{
|
|
return $this->state(function (array $attributes) use ($member): array {
|
|
return [
|
|
'member_id' => $member->getKey(),
|
|
'user_id' => $member->user_id,
|
|
'organization_id' => $member->organization_id,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function billable(): self
|
|
{
|
|
return $this->state(function (array $attributes): array {
|
|
return [
|
|
'billable' => true,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function startWithDuration(Carbon $start, int $durationInSeconds): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($start, $durationInSeconds): array {
|
|
return [
|
|
'start' => $start->copy()->utc(),
|
|
'end' => $start->copy()->utc()->addSeconds($durationInSeconds),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function endWithDuration(Carbon $end, int $durationInSeconds): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($end, $durationInSeconds): array {
|
|
return [
|
|
'start' => $end->copy()->utc()->subSeconds($durationInSeconds),
|
|
'end' => $end->copy()->utc(),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function start(Carbon $start): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($start): array {
|
|
return [
|
|
'start' => $start->copy()->utc(),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function forOrganization(Organization $organization): self
|
|
{
|
|
return $this->state(function (array $attributes) use ($organization) {
|
|
return [
|
|
'organization_id' => $organization->getKey(),
|
|
];
|
|
});
|
|
}
|
|
|
|
public function forProject(?Project $project): self
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'project_id' => $project?->getKey(),
|
|
'client_id' => $project?->client_id,
|
|
]);
|
|
}
|
|
|
|
public function forTask(?Task $task): self
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'task_id' => $task?->getKey(),
|
|
'project_id' => $task?->project?->getKey(),
|
|
'client_id' => $task?->project?->client?->getKey(),
|
|
]);
|
|
}
|
|
}
|