1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Transformers/TaskTransformer.php
2016-11-29 19:47:26 +02:00

56 lines
1.7 KiB
PHP

<?php namespace App\Ninja\Transformers;
use App\Models\Account;
use App\Models\Task;
use App\Models\Client;
/**
* @SWG\Definition(definition="Task", @SWG\Xml(name="Task"))
*/
class TaskTransformer extends EntityTransformer
{
/**
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="amount", type="float", example=10, readOnly=true)
* @SWG\Property(property="invoice_id", type="integer", example=1)
*/
protected $availableIncludes = [
'client',
];
public function __construct(Account $account)
{
parent::__construct($account);
}
public function includeClient(Task $task)
{
if ($task->client) {
$transformer = new ClientTransformer($this->account, $this->serializer);
return $this->includeItem($task->client, $transformer, 'client');
} else {
return null;
}
}
public function transform(Task $task)
{
return array_merge($this->getDefaults($task), [
'id' => (int) $task->public_id,
'description' => $task->description,
'duration' => $task->getDuration(),
'updated_at' => (int) $this->getTimestamp($task->updated_at),
'archived_at' => (int) $this->getTimestamp($task->deleted_at),
'invoice_id' => $task->invoice ? (int) $task->invoice->public_id : false,
'client_id' => $task->client ? (int) $task->client->public_id : false,
'project_id' => $task->project ? (int) $task->project->public_id : false,
'is_deleted' => (bool) $task->is_deleted,
'time_log' => $task->time_log,
'is_running' => (bool) $task->is_running,
]);
}
}