toArray())->mapWithKeys(function ($value, $key) { // I messed up early in 2016 when I named this column as poorly // as I did. This is the tragic result of my mistakes. $key = ($key === 'daemonSFTP') ? 'daemonSftp' : $key; return [snake_case($key) => $value]; })->toArray(); $response[$model->getUpdatedAtColumn()] = $this->formatTimestamp($model->updated_at); $response[$model->getCreatedAtColumn()] = $this->formatTimestamp($model->created_at); $resources = $model->servers()->select(['memory', 'disk'])->get(); $response['allocated_resources'] = [ 'memory' => $resources->sum('memory'), 'disk' => $resources->sum('disk'), ]; return $response; } /** * Return the nodes associated with this location. * * @param \Pterodactyl\Models\Node $node * * @return \League\Fractal\Resource\Collection|\League\Fractal\Resource\NullResource * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function includeAllocations(Node $node) { if (! $this->authorize(AdminAcl::RESOURCE_ALLOCATIONS)) { return $this->null(); } $node->loadMissing('allocations'); return $this->collection( $node->getRelation('allocations'), $this->makeTransformer(AllocationTransformer::class), 'allocation' ); } /** * Return the nodes associated with this location. * * @param \Pterodactyl\Models\Node $node * * @return \League\Fractal\Resource\Item|\League\Fractal\Resource\NullResource * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function includeLocation(Node $node) { if (! $this->authorize(AdminAcl::RESOURCE_LOCATIONS)) { return $this->null(); } $node->loadMissing('location'); return $this->item( $node->getRelation('location'), $this->makeTransformer(LocationTransformer::class), 'location' ); } /** * Return the nodes associated with this location. * * @param \Pterodactyl\Models\Node $node * * @return \League\Fractal\Resource\Collection|\League\Fractal\Resource\NullResource * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function includeServers(Node $node) { if (! $this->authorize(AdminAcl::RESOURCE_SERVERS)) { return $this->null(); } $node->loadMissing('servers'); return $this->collection( $node->getRelation('servers'), $this->makeTransformer(ServerTransformer::class), 'server' ); } }