1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 14:12:44 +01:00
invoiceninja/app/Ninja/Transformers/TaskTransformer.php

70 lines
2.2 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Transformers;
2015-11-27 13:55:28 +01:00
use App\Models\Account;
use App\Models\Client;
2017-01-30 20:40:43 +01:00
use App\Models\Task;
2015-11-27 13:55:28 +01:00
/**
* @SWG\Definition(definition="Task", @SWG\Xml(name="Task"))
*/
class TaskTransformer extends EntityTransformer
{
/**
2017-01-30 20:40:43 +01:00
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="amount", type="number", format="float", example=10, readOnly=true)
2017-01-30 20:40:43 +01:00
* @SWG\Property(property="invoice_id", type="integer", example=1)
*/
2015-11-27 13:55:28 +01:00
protected $availableIncludes = [
'client',
'project',
2015-11-27 13:55:28 +01:00
];
public function __construct(Account $account)
{
parent::__construct($account);
}
public function includeClient(Task $task)
{
if ($task->client) {
$transformer = new ClientTransformer($this->account, $this->serializer);
2017-01-30 20:40:43 +01:00
2015-11-27 13:55:28 +01:00
return $this->includeItem($task->client, $transformer, 'client');
} else {
return null;
}
}
public function includeProject(Task $task)
{
if ($task->project) {
$transformer = new ProjectTransformer($this->account, $this->serializer);
return $this->includeItem($task->project, $transformer, 'project');
} else {
return null;
}
}
2015-11-27 13:55:28 +01:00
public function transform(Task $task)
{
2016-05-03 22:02:29 +02:00
return array_merge($this->getDefaults($task), [
2015-11-27 13:55:28 +01:00
'id' => (int) $task->public_id,
2018-06-26 13:48:32 +02:00
'description' => $task->description ?: '',
'duration' => $task->getDuration() ?: 0,
'updated_at' => (int) $this->getTimestamp($task->updated_at),
'archived_at' => (int) $this->getTimestamp($task->deleted_at),
2017-04-11 23:17:01 +02:00
'invoice_id' => $task->invoice ? (int) $task->invoice->public_id : 0,
'client_id' => $task->client ? (int) $task->client->public_id : 0,
'project_id' => $task->project ? (int) $task->project->public_id : 0,
'is_deleted' => (bool) $task->is_deleted,
2018-06-26 13:48:32 +02:00
'time_log' => $task->time_log ?: '',
'is_running' => (bool) $task->is_running,
2018-06-26 13:48:32 +02:00
'custom_value1' => $task->custom_value1 ?: '',
'custom_value2' => $task->custom_value2 ?: '',
2016-05-03 22:02:29 +02:00
]);
2015-11-27 13:55:28 +01:00
}
2016-11-16 12:12:10 +01:00
}