misc_pterodactyl-panel/app/Transformers/Api/Client/ScheduleTransformer.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2020-02-08 23:23:08 +00:00
<?php
namespace Pterodactyl\Transformers\Api\Client;
use Pterodactyl\Models\Schedule;
use Pterodactyl\Transformers\Api\Transformer;
2020-02-08 23:23:08 +00:00
class ScheduleTransformer extends Transformer
2020-02-08 23:23:08 +00:00
{
/**
* @var array
*/
protected $availableIncludes = ['tasks'];
/**
* @var array
*/
protected $defaultIncludes = ['tasks'];
2020-02-08 23:23:08 +00:00
public function getResourceName(): string
{
return Schedule::RESOURCE_NAME;
}
public function transform(Schedule $model): array
2020-02-08 23:23:08 +00:00
{
return [
'id' => $model->id,
'name' => $model->name,
'cron' => [
'day_of_week' => $model->cron_day_of_week,
'day_of_month' => $model->cron_day_of_month,
'month' => $model->cron_month,
2020-02-08 23:23:08 +00:00
'hour' => $model->cron_hour,
'minute' => $model->cron_minute,
],
'is_active' => $model->is_active,
'is_processing' => $model->is_processing,
'only_when_online' => $model->only_when_online,
'last_run_at' => self::formatTimestamp($model->last_run_at),
'next_run_at' => self::formatTimestamp($model->next_run_at),
'created_at' => self::formatTimestamp($model->created_at),
'updated_at' => self::formatTimestamp($model->updated_at),
2020-02-08 23:23:08 +00:00
];
}
/**
* Allows attaching the tasks specific to the schedule in the response.
*
* @return \League\Fractal\Resource\Collection
*/
public function includeTasks(Schedule $model)
{
return $this->collection($model->tasks, new TaskTransformer());
2020-02-08 23:23:08 +00:00
}
}