2017 © Pedro Peláez
 

library api-fracture

Fracture is a library to make your Laravel-based API response more consistent

image

flipboxstudio/api-fracture

Fracture is a library to make your Laravel-based API response more consistent

  • Monday, October 3, 2016
  • by krisanalfa
  • Repository
  • 4 Watchers
  • 3 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 12 Versions
  • 0 % Grown

The README.md

Fracture

Fracture is a library to make your Laravel-based API response more consistent., (*1)

Installation

composer require flipboxstudio/api-fracture

Configuration

Add this line to your service provider list:, (*2)

Flipbox\Fracture\FractureServiceProvider::class,

After that, run:, (*3)

php artisan vendor:publish

This command will copy an empty fracture.php configuration into your config directory. You may need to read this file for more custom configuration., (*4)

Optional

Add this line to your facade list:, (*5)

'Fracture' => Flipbox\Fracture\Facades\Fracture::class,

Usage

Fracture will override Laravel Controller invoke style. So, to make this feature works on your project, you need to change your base controller. Locate this file at:, (*6)

app/Http/Controllers/Controller.php

Change this file into:, (*7)

<?php

namespace App\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Flipbox\Fracture\Routing\Controller as FractureController;

class Controller extends FractureController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}

And you ready to rock! Below is example using fracture., (*8)

<?php

namespace App\Http\Controllers\Api;

use App\User;
use App\Http\Requests;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;

class UserController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        Fracture::setMessage('user_list_fetched');

        return User::all(); // identical with Fracture::responseCollection(User::all(), 'user_list_fetched')
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        Fracture::setMessage('user_fetched');

        return User::findOrFail($id); // identical with Fracture::responseItem(User::findOrFail($id), 'user_fetched')
    }

Fracture has it's own default transformer which you can configure it on fracture.php config file. From above controller (with fracture default transformer), here's your response transformed into:, (*9)

{
  "success": true,
  "data": {
    "data": [
      {
        "id": 1,
        "name": "Krisan Alfa Timur",
        "email": "alfa@flipbox.co.id",
        "created_at": "2016-08-29 07:01:08",
        "updated_at": "2016-08-29 11:37:10",
        "type": "user"
      }
    ]
  },
  "message": "user_list_fetched"
}

To configure your transformer, Fracture will determine the object returned from controller. So, to transform your App\User object, you need to configure the transformer in fracture.php, file inside transformers, add app_user information there:, (*10)

<?php

return [

    'transformers' => [

        'app_user' => [
            'class' => App\Transformers\UserTransformer::class,
        ],

    ],


    // [... OMITTED ...]

];

Fracture will automatically camel_case your current transformer to determine which config should it use. So for App\User resource type, it will parsed to app_user. Inside that key, give it an array key-value based with class value as it's transformer. Here's a basic transformer:, (*11)

<?php

namespace App\Transformers;

use URL;
use App\User;
use League\Fractal\TransformerAbstract;

class UserTransformer extends TransformerAbstract
{
    public function transform(User $user)
    {
        return [
            'type' => 'user',
            'id' => (int) $user->id,
            'name' => (string) $user->name,
            'links' => [[
                'rel' => 'self',
                'type' => 'api',
                'uri' => URL::to('/api/resource/user/'.$user->id),
            ]],
        ];
    }
}

From the above transformer, the response will be transformed into:, (*12)

{
  "success": true,
  "data": [
    {
      "type": "user",
      "id": "1",
      "attributes": {
        "name": "Krisan Alfa Timur",
        "links": [
          {
            "rel": "self",
            "type": "api",
            "uri": "http://laravel.ivory.dev/api/resource/user/1"
          }
        ]
      }
    }
  ],
  "message": "user_list_fetched"
}

Set Transformer on The Fly

You can set the transformer just before the response being sent to client. To do so, before return any response in controller method, you may call Fracture::setTransformer method:, (*13)

<?php

use App\Transformers\UserTransformer;

Fracture::setTransformer(UserTransformer::class);
// Or
Fracture::setTransformer(new UserTransformer());

Route Transformer

You also can tell Fracture to use certain transformer via route actions:, (*14)

<?php

Route::get('/user', [
    'uses' => 'UserController@index',
    'transformer' => App\Transformers\UserTransformer::class,
    'middleware' => ['auth:api'],
    'as' => 'user.list'
]);

Custom HTTP Status Code

<?php

return Fracture::responseCollection(
    $collection, // Collection
    'user_list', // API Message
    true, // API success status
    200, // HTTP status code
    ['Custom-Header' => 'Flipbox'] // Your header goes here
);

return Fracture::responseItem(
    $item, // Item
    'user_info', // API Message
    true, // API success status
    200, // HTTP status code
    ['Custom-Header' => 'Flipbox'] // Your header goes here
);

Generating Error Response

Here's a snippet to generate error response:, (*15)

<?php

return Fracture::responseError(
    'awww_snap', // API Message
    new \Exception('something_goes_wrong') // An exception instance
);

From that code, the response is:, (*16)

{
  "success": false,
  "data": {
    "type": "error",
    "code": 0
  },
  "message": "awww_snap"
}

In debug mode:, (*17)

{
  "success": false,
  "data": {
    "type": "error",
    "code": 0,
    "message": "something_goes_wrong",
    "trace": [
      "#0 [internal function]: App\\Http\\Controllers\\Api\\UserController->index()",
      // [... OMITTED ...]
    ]
  },
  "message": "awww_snap"
}

ToDo

  • [ ] Refactor (need voulenteer)
  • [x] Unit testing
  • [x] Global error handling
  • [x] Configurable serializer
  • [x] Configurable error serializer
  • [x] Configurable error transformer
  • [x] Default transformer for all resource
  • [x] Intercept default Laravel response preparation to use Fracture
  • [ ] You name it ;)

The Versions

03/10 2016

dev-develop

dev-develop

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

03/10 2016

dev-master

9999999-dev

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

03/10 2016

0.4.1

0.4.1.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

15/09 2016

0.4.0

0.4.0.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

13/09 2016

0.3.4

0.3.4.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

07/09 2016

0.3.3

0.3.3.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

07/09 2016

0.3.2

0.3.2.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

07/09 2016

0.3.1

0.3.1.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

07/09 2016

0.3.0

0.3.0.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

31/08 2016

0.2.0

0.2.0.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

31/08 2016

0.1.1

0.1.1.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires

 

The Development Requires

30/08 2016

0.1.0

0.1.0.0

Fracture is a library to make your Laravel-based API response more consistent

  Sources   Download

MIT

The Requires