Package Data | |
---|---|
Maintainer Username: | papertank |
Maintainer Contact: | david@papertank.com (Papertank) |
Package Create Date: | 2015-02-19 |
Package Last Update: | 2024-01-03 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:04:08 |
Package Statistics | |
---|---|
Total Downloads: | 5,182 |
Monthly Downloads: | 70 |
Daily Downloads: | 11 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This package simplifies the process of setting up an API using Laravel 5. Many of the practices utilised in this package are courtesy of Build APIs you Won’t Hate by Phil Sturgeon.
Install this package through Composer.
composer require origami/api
This package is designed to work with Laravel >= 5 currently.
As standard, there is a Laravel 5 is a service provider you can make use of to automatically prepare the bindings.
// app/config/app.php
‘providers’ => [
‘…’,
‘Origami\Api\ApiServiceProvider’
];
There are some API configuration options that you’ll want to overwrite. First, publish the default configuration.
php artisan vendor:publish
This will add a new configuration file to: config/api.php
.
<?php
return array(
‘keys’ => [
env(‘API_KEY’, ‘secret’)
],
);
This is the valid list of API keys that authenticate requests. By default we support an environment variable of API_KEY
which you can set in your .env file.
This package includes two Middleware classes for Laravel 5
The AuthenticateApiKey Middleware is designed to guard Api routes against unauthorised access. We recommend you include it on all routes as follows, unless you have a public API.
Route::group([‘prefix’ => ‘api/v1’, ‘namespace’ => ‘Api’, ‘middleware’ => ‘Origami\Api\Middleware\AuthenticateApiKey’], function()
{
Route::get(‘tasks/{id}’, ‘Tasks@show’);
Route::post(‘tasks/{id}’, ‘Tasks@update’);
});
We provide a helpful ApiController base controller class that includes a response
method, allowing you to return json responses or get access to the Origami\Api\Response class which offers a variety of helpers methods.
The Origami/Api/Response class offers a variety of helper methods and ultimately uses the Illuminate\Contracts\Routing\ResponseFactory
Laravel class to return a json response with appropriate headers.
You can use the API Response class in your controller by using the response
helper method:
public function index()
{
$items = new Collection([‘one’,’two’,’three’]);
// Calling with a single argument returns a json response
return $this->response($items);
}
or
public function index()
{
$items = new Collection([‘one’,’two’,’three’]);
// Calling with no argument returns the response object
return $this->response()->data($items);
}
public function find($id)
{
$item = Item::find($id);
if ( ! $item ) {
// Using the response object you can call helper methods.
return $this->response()->errorNotFound();
}
return $this->response()->data($item);
}
We make use of the excellent league/fractal PHP package to parse and transform Eloquent models and collections. For more information visit fractal.thephpleague.com
There are three helper methods on the response object
Routes: app/Http/routes.php
<?php
Route::group([‘prefix’ => ‘api/v1’, ‘namespace’ => ‘Api’, ‘middleware’ => ‘Origami\Api\Middleware\AuthenticateApiKey’], function()
{
Route::get(‘items’, ‘Items@index’);
Route::get(‘tasks/{id}’, ‘Tasks@show’);
});
Controller: app/Http/Controllers/Api/Items.php
<?php namespace App\Http\Controllers\Api;
use Origami\Api\ApiController;
use App\Items\Item; // Assuming an eloquent Model;
use App\Items\ItemTransformer;
class Items extends ApiController {
public function index()
{
$items = Item::paginate(15);
return $this->response()->resourcePaginator($items, new ItemTransformer);
}
public function show($id)
{
$item = Item::find($id);
if ( ! $item ) {
return $this->response()->errorNotFound(‘Item not found’);
}
return $this->response()->resourceItem($item, new ItemTransformer);
}
}
Transformer: app/Items/ItemTransformer.php
<?php namespace App\Items;
use Origami\Api\Transformer;
class ItemTransformer extends Transformer {
public function transform(Item $item)
{
return [
‘id’ => $item->id,
‘title’ => $task->title,
‘created_at’ => $task->created_at->toDateTimeString()
];
}
}