Move API to use JSON:API standards and fractal serializer

Makes the data slightly more complex, but forces a standard and can
always be changed down the road simply by changing the default
serializer.
This commit is contained in:
Dane Everitt
2017-04-02 16:51:56 -04:00
parent c071efd008
commit 65630bdcce
15 changed files with 315 additions and 22 deletions

View File

@@ -55,6 +55,7 @@ class AllocationTransformer extends TransformerAbstract
public function transform(Allocation $allocation)
{
return [
'id' => $allocation->id,
'ip' => $allocation->alias,
'port' => $allocation->port,
'default' => ($allocation->id === $this->server->allocation_id),

View File

@@ -37,7 +37,7 @@ class OverviewTransformer extends TransformerAbstract
public function transform(Server $server)
{
return [
'uuidShort' => $server->uuidShort,
'id' => $server->uuidShort,
'uuid' => $server->uuid,
'name' => $server->name,
'node' => $server->node->name,

View File

@@ -48,7 +48,7 @@ class ServerTransformer extends TransformerAbstract
public function transform(Server $server)
{
return [
'uuidShort' => $server->uuidShort,
'id' => $server->uuidShort,
'uuid' => $server->uuid,
'name' => $server->name,
'description' => $server->description,
@@ -73,7 +73,7 @@ class ServerTransformer extends TransformerAbstract
{
$allocations = $server->allocations;
return $this->collection($allocations, new AllocationTransformer($server));
return $this->collection($allocations, new AllocationTransformer($server), 'allocation');
}
/**
@@ -85,7 +85,7 @@ class ServerTransformer extends TransformerAbstract
{
$server->load('subusers.permissions', 'subusers.user');
return $this->collection($server->subusers, new SubuserTransformer);
return $this->collection($server->subusers, new SubuserTransformer, 'subuser');
}
/**
@@ -95,6 +95,6 @@ class ServerTransformer extends TransformerAbstract
*/
public function includeStats(Server $server)
{
return $this->item($server->guzzleClient(), new StatsTransformer);
return $this->item($server->guzzleClient(), new StatsTransformer, 'stat');
}
}

View File

@@ -49,6 +49,7 @@ class StatsTransformer extends TransformerAbstract
$json = json_decode($res->getBody());
return [
'id' => 1,
'status' => $json->status,
'resources' => $json->proc,
];

View File

@@ -38,6 +38,7 @@ class SubuserTransformer extends TransformerAbstract
public function transform(Subuser $subuser)
{
return [
'id' => $subuser->id,
'username' => $subuser->user->username,
'email' => $subuser->user->email,
'2fa' => (bool) $subuser->user->use_totp,