mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 12:06:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 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;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns a transformed schedule model such that a client can view the information.
 | 
						|
     */
 | 
						|
    public function transform(Schedule $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.
 | 
						|
     *
 | 
						|
     * @throws \App\Exceptions\Transformer\InvalidTransformerLevelException
 | 
						|
     */
 | 
						|
    public function includeTasks(Schedule $model): Collection
 | 
						|
    {
 | 
						|
        return $this->collection(
 | 
						|
            $model->tasks,
 | 
						|
            $this->makeTransformer(TaskTransformer::class),
 | 
						|
            Task::RESOURCE_NAME
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |