MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/snap.cafsinfotech.in/tests/Factories/IntervalFactory.php
<?php

namespace Tests\Factories;

use App\Models\Task;
use App\Models\TimeInterval;
use App\Models\User;
use Carbon\Carbon;
use Faker\Factory as FakerFactory;
use Tests\Facades\TaskFactory;
use Tests\Facades\UserFactory;

class IntervalFactory extends Factory
{
    private ?User $user = null;
    private ?Task $task = null;
    private TimeInterval $interval;

    public function createRandomModelDataWithRelation(): array
    {
        return array_merge($this->createRandomModelData(), [
            'task_id' => TaskFactory::create()->id,
            'user_id' => UserFactory::create()->id,
        ]);
    }

    public function createRandomModelData(): array
    {
        $randomDateTime = FakerFactory::create()->unique()->dateTimeThisYear();
        $randomDateTime = Carbon::instance($randomDateTime);

        return [
            'end_at' => $randomDateTime->toIso8601String(),
            'start_at' => $randomDateTime->subSeconds(random_int(1, 3600))->toIso8601String(),
            'activity_fill' => random_int(1, 100),
            'mouse_fill' => random_int(1, 100),
            'keyboard_fill' => random_int(1, 100),
        ];
    }

    public function forUser(User $user): self
    {
        $this->user = $user;
        return $this;
    }

    public function forTask(Task $task): self
    {
        $this->task = $task;
        return $this;
    }

    public function withRandomRelations(): self
    {
        $this->randomRelations = true;
        return $this;
    }

    public function create(): TimeInterval
    {
        $modelData = $this->createRandomModelData();
        $this->interval = TimeInterval::make($modelData);

        $this->defineUser();
        $this->defineTask();

        if ($this->timestampsHidden) {
            $this->hideTimestamps();
        }

        $this->interval->save();

        return $this->interval;
    }

    private function defineUser(): void
    {
        if ($this->randomRelations || !$this->user) {
            $this->user = UserFactory::create();
        }

        $this->interval->user_id = $this->user->id;
    }

    private function defineTask(): void
    {
        if ($this->randomRelations || !$this->task) {
            $this->task = TaskFactory::forUser($this->user)->create();
        }

        $this->interval->task_id = $this->task->id;
    }

    protected function getModelInstance(): TimeInterval
    {
        return $this->interval;
    }
}