mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 08:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Extensions\League\Fractal\Serializers;
 | 
						|
 | 
						|
use League\Fractal\Serializer\ArraySerializer;
 | 
						|
 | 
						|
class PterodactylSerializer extends ArraySerializer
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Serialize an item.
 | 
						|
     *
 | 
						|
     * @param string $resourceKey
 | 
						|
     * @param array $data
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function item($resourceKey, array $data)
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'object' => $resourceKey,
 | 
						|
            'attributes' => $data,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Serialize a collection.
 | 
						|
     *
 | 
						|
     * @param string $resourceKey
 | 
						|
     * @param array $data
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function collection($resourceKey, array $data)
 | 
						|
    {
 | 
						|
        $response = [];
 | 
						|
        foreach ($data as $datum) {
 | 
						|
            $response[] = $this->item($resourceKey, $datum);
 | 
						|
        }
 | 
						|
 | 
						|
        return [
 | 
						|
            'object' => 'list',
 | 
						|
            'data' => $response,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Serialize a null resource.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function null()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'object' => 'null_resource',
 | 
						|
            'attributes' => null,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Merge the included resources with the parent resource being serialized.
 | 
						|
     *
 | 
						|
     * @param array $transformedData
 | 
						|
     * @param array $includedData
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function mergeIncludes($transformedData, $includedData)
 | 
						|
    {
 | 
						|
        foreach ($includedData as $key => $datum) {
 | 
						|
            $transformedData['relationships'][$key] = $datum;
 | 
						|
        }
 | 
						|
 | 
						|
        return $transformedData;
 | 
						|
    }
 | 
						|
}
 |