mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Transformers\Api\Application;
 | 
						|
 | 
						|
use Pterodactyl\Models\Location;
 | 
						|
use League\Fractal\Resource\Collection;
 | 
						|
use League\Fractal\Resource\NullResource;
 | 
						|
use Pterodactyl\Services\Acl\Api\AdminAcl;
 | 
						|
 | 
						|
class LocationTransformer extends BaseTransformer
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * List of resources that can be included.
 | 
						|
     */
 | 
						|
    protected array $availableIncludes = ['nodes', 'servers'];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the resource name for the JSONAPI output.
 | 
						|
     */
 | 
						|
    public function getResourceName(): string
 | 
						|
    {
 | 
						|
        return Location::RESOURCE_NAME;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return a generic transformed location array.
 | 
						|
     */
 | 
						|
    public function transform(Location $location): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => $location->id,
 | 
						|
            'short' => $location->short,
 | 
						|
            'long' => $location->long,
 | 
						|
            $location->getUpdatedAtColumn() => $this->formatTimestamp($location->updated_at),
 | 
						|
            $location->getCreatedAtColumn() => $this->formatTimestamp($location->created_at),
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the nodes associated with this location.
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException
 | 
						|
     */
 | 
						|
    public function includeServers(Location $location): Collection|NullResource
 | 
						|
    {
 | 
						|
        if (!$this->authorize(AdminAcl::RESOURCE_SERVERS)) {
 | 
						|
            return $this->null();
 | 
						|
        }
 | 
						|
 | 
						|
        $location->loadMissing('servers');
 | 
						|
 | 
						|
        return $this->collection($location->getRelation('servers'), $this->makeTransformer(ServerTransformer::class), 'server');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the nodes associated with this location.
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException
 | 
						|
     */
 | 
						|
    public function includeNodes(Location $location): Collection|NullResource
 | 
						|
    {
 | 
						|
        if (!$this->authorize(AdminAcl::RESOURCE_NODES)) {
 | 
						|
            return $this->null();
 | 
						|
        }
 | 
						|
 | 
						|
        $location->loadMissing('nodes');
 | 
						|
 | 
						|
        return $this->collection($location->getRelation('nodes'), $this->makeTransformer(NodeTransformer::class), 'node');
 | 
						|
    }
 | 
						|
}
 |