2020-01-21 01:32:34 +01:00
|
|
|
<?php
|
2023-06-15 14:33:48 +02:00
|
|
|
|
2020-01-21 01:32:34 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-21 01:32:34 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-21 01:32:34 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-21 01:32:34 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Transformers;
|
|
|
|
|
2023-06-15 14:33:48 +02:00
|
|
|
use App\Models\Client;
|
2020-10-11 23:34:02 +02:00
|
|
|
use App\Models\Document;
|
2020-01-21 01:32:34 +01:00
|
|
|
use App\Models\Project;
|
2023-06-15 14:43:51 +02:00
|
|
|
use App\Models\Task;
|
2020-01-21 01:32:34 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* class ProjectTransformer.
|
2020-01-21 01:32:34 +01:00
|
|
|
*/
|
|
|
|
class ProjectTransformer extends EntityTransformer
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
2023-08-21 03:29:31 +02:00
|
|
|
protected array $defaultIncludes = [
|
2020-10-11 23:34:02 +02:00
|
|
|
'documents',
|
2020-01-21 01:32:34 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2023-08-21 03:29:31 +02:00
|
|
|
protected array $availableIncludes = [
|
2023-06-15 14:33:48 +02:00
|
|
|
'client',
|
2023-06-15 14:43:51 +02:00
|
|
|
'tasks',
|
2020-01-21 01:32:34 +01:00
|
|
|
];
|
|
|
|
|
2020-10-11 23:34:02 +02:00
|
|
|
public function includeDocuments(Project $project)
|
|
|
|
{
|
|
|
|
$transformer = new DocumentTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($project->documents, $transformer, Document::class);
|
|
|
|
}
|
|
|
|
|
2023-06-15 14:33:48 +02:00
|
|
|
public function includeClient(Project $project): \League\Fractal\Resource\Item
|
|
|
|
{
|
|
|
|
$transformer = new ClientTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeItem($project->client, $transformer, Client::class);
|
|
|
|
}
|
|
|
|
|
2023-06-15 14:43:51 +02:00
|
|
|
public function includeTasks(Project $project): \League\Fractal\Resource\Collection
|
|
|
|
{
|
|
|
|
$transformer = new TaskTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($project->tasks, $transformer, Task::class);
|
|
|
|
}
|
|
|
|
|
2020-01-21 01:32:34 +01:00
|
|
|
public function transform(Project $project)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'id' => (string) $this->encodePrimaryKey($project->id),
|
2020-10-08 00:25:39 +02:00
|
|
|
'user_id' => (string) $this->encodePrimaryKey($project->user_id),
|
|
|
|
'assigned_user_id' => (string) $this->encodePrimaryKey($project->assigned_user_id),
|
2020-01-21 01:32:34 +01:00
|
|
|
'client_id' => (string) $this->encodePrimaryKey($project->client_id),
|
2020-10-08 00:25:39 +02:00
|
|
|
'name' => $project->name ?: '',
|
2020-12-17 21:11:31 +01:00
|
|
|
'number' => $project->number ?: '',
|
2020-09-06 11:38:10 +02:00
|
|
|
'created_at' => (int) $project->created_at,
|
|
|
|
'updated_at' => (int) $project->updated_at,
|
|
|
|
'archived_at' => (int) $project->deleted_at,
|
2020-01-21 01:32:34 +01:00
|
|
|
'is_deleted' => (bool) $project->is_deleted,
|
|
|
|
'task_rate' => (float) $project->task_rate,
|
|
|
|
'due_date' => $project->due_date ?: '',
|
2020-10-08 00:25:39 +02:00
|
|
|
'private_notes' => (string) $project->private_notes ?: '',
|
|
|
|
'public_notes' => (string) $project->public_notes ?: '',
|
2020-01-21 01:32:34 +01:00
|
|
|
'budgeted_hours' => (float) $project->budgeted_hours,
|
2020-10-08 00:25:39 +02:00
|
|
|
'custom_value1' => (string) $project->custom_value1 ?: '',
|
|
|
|
'custom_value2' => (string) $project->custom_value2 ?: '',
|
|
|
|
'custom_value3' => (string) $project->custom_value3 ?: '',
|
|
|
|
'custom_value4' => (string) $project->custom_value4 ?: '',
|
2021-01-05 05:41:43 +01:00
|
|
|
'color' => (string) $project->color ?: '',
|
2023-04-04 13:34:01 +02:00
|
|
|
'current_hours' => (int) $project->current_hours ?: 0,
|
2020-01-21 01:32:34 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|