2020-02-08 23:23:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Transformers\Api\Client;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\Task;
|
|
|
|
|
|
|
|
class TaskTransformer extends BaseClientTransformer
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getResourceName(): string
|
|
|
|
{
|
|
|
|
return Task::RESOURCE_NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transforms a schedule's task into a client viewable format.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Task $model)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'id' => $model->id,
|
|
|
|
'sequence_id' => $model->sequence_id,
|
|
|
|
'action' => $model->action,
|
|
|
|
'payload' => $model->payload,
|
|
|
|
'time_offset' => $model->time_offset,
|
|
|
|
'is_queued' => $model->is_queued,
|
2021-05-01 17:44:40 +00:00
|
|
|
'continue_on_failure' => $model->continue_on_failure,
|
2020-02-08 23:23:08 +00:00
|
|
|
'created_at' => $model->created_at->toIso8601String(),
|
|
|
|
'updated_at' => $model->updated_at->toIso8601String(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|