mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
60 lines
1.6 KiB
PHP
60 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Transformers\Api\Client;
|
|
|
|
use App\Models\Task;
|
|
use App\Models\Schedule;
|
|
use League\Fractal\Resource\Collection;
|
|
|
|
class ScheduleTransformer extends BaseClientTransformer
|
|
{
|
|
protected array $availableIncludes = ['tasks'];
|
|
|
|
protected array $defaultIncludes = ['tasks'];
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return Schedule::RESOURCE_NAME;
|
|
}
|
|
|
|
/**
|
|
* @param Schedule $model
|
|
*/
|
|
public function transform($model): array
|
|
{
|
|
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,
|
|
'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' => $model->last_run_at?->toAtomString(),
|
|
'next_run_at' => $model->next_run_at?->toAtomString(),
|
|
'created_at' => $model->created_at->toAtomString(),
|
|
'updated_at' => $model->updated_at->toAtomString(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Allows attaching the tasks specific to the schedule in the response.
|
|
*/
|
|
public function includeTasks(Schedule $model): Collection
|
|
{
|
|
return $this->collection(
|
|
$model->tasks,
|
|
$this->makeTransformer(TaskTransformer::class),
|
|
Task::RESOURCE_NAME
|
|
);
|
|
}
|
|
}
|