• This repository has been archived on 27/Feb/2024
  • Stars
    star
    105
  • Rank 328,196 (Top 7 %)
  • Language
    PHP
  • License
    MIT License
  • Created over 6 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Set up a JSON API in Laravel in just a few minutes.

Latest Version on Packagist Build Status License: MIT Made by SWIS

🚨 THIS PACKAGE HAS BEEN ABANDONED 🚨

We don't use this package anymore in our own projects and there are many, better alternatives, so that's why we have chosen to abandon it. We suggest using laravel-json-api/laravel or one of the other alternatives instead. Feel free to fork our code and maintain your own copy.

Laravel JSON API server

Set up a laravel API in just a few minutes with this package. All the standard API functionality is already there for you.

This package strives to save you some time while building your API. It already has the basic features an API should have, like:

  • Generators to generate your needed files for each model
  • An abstract layer to handle your basic CRUD actions
  • Creates routes for all your endpoints
  • Support for a few useful URL parameters
  • Permission and route permission handling
  • Responses in json api format (http://jsonapi.org/)
  • Automatically translates your models based on your database

Install

Via Composer

$ composer require swisnl/json-api-server

Sample

Please see the folder sample for a sample of an application using this package.

Usage

Base Api Classes

There are a few base classes your classes should/could inherit:

BaseApiController

This controller handles your basic CRUD actions as well as permissions if you choose to use permissions.

BaseApiRepository

This repository is a standard base repository with a small addition that it figures out your models relationships.

If you want to use your own BaseRepository, you have to implement the RepositoryInterface. This ensures that you have full compatibility with the BaseApiController.

The BaseApiRepository uses a trait to retrieve a models relationships. You can use this trait if you want to use the existing implementation.

Generating the required files

After installing the package you can instantly generate all the required files by executing this command:

$ php artisan json-api-server:generate-all {Model}

To override the default path without overriding the laravel_generator config file, you can use the --path={path} option. For example:

$ php artisan json-api-server:generate-all Test --path=app/temp/

This generates the following files:

  • An eloquent model
  • A translation model
  • An API controller
    • Should extend the BaseApiController
  • A routes file where the all the CRUD endpoints are defined
  • A repository for your model
    • Could extend the BaseApiRepository
  • A policy for checking permissions
  • 1 test for checking if a user has permissions for the endpoint

You'll be able to do the basic CRUD actions without writing anything.

You also have the ability to generate the files separately:

$ php artisan json-api-server:generate-controller {name}
$ php artisan json-api-server:generate-model {name}
$ php artisan json-api-server:generate-model-permissions {name}
$ php artisan json-api-server:generate-policy {name}
$ php artisan json-api-server:generate-repository {name}
$ php artisan json-api-server:generate-routes {name}
$ php artisan json-api-server:generate-test {name}
$ php artisan json-api-server:generate-translation {name}

Configuration

If you would like to override the configuration files.

$ php artisan vendor:publish --tag=laravel-api
$ php artisan vendor:publish --tag=laravel-api-templates

If you decide to override the templates, make sure you override the laravel api config too. You have to define where your own templates are in the config.

This is the default configuration:

   return [
     // Generator configuration
     'path' => [
         'model' => app_path('/'),
 
         'model_permissions' => app_path('Permissions/'),
 
         'translation' => app_path('Translations/'),
 
         'controller' => app_path('Http/Controllers/Api/'),
 
         'repository' => app_path('Repositories/'),
 
         'policy' => app_path('Policies/'),
 
         'auth_test' => base_path('tests/Authentication/'),
 
         'templates' => 'vendor/swisnl/laravel-api/resources/templates/',
 
         'routes' => app_path('Http/Routes/')
     ],
 
     'namespace' => [
         'model' => 'App',
 
         'model_permissions' => 'App\Permissions',
 
         'controller' => 'App\Http\Controllers\Api',
 
         'repository' => 'App\Repositories',
 
         'translation' => 'App\Translations',
 
         'policy' => 'App\Policies',
 
         'auth_test' => 'App\Tests\Authentication'
     ],
 
     // Permissions configuration
     'permissions' => [
         'checkDefaultIndexPermission' => false,
 
         'checkDefaultShowPermission' => false,
 
         'checkDefaultCreatePermission' => false,
 
         'checkDefaultUpdatePermission' => false,
 
         'checkDefaultDeletePermission' => false,
     ],
 
     // Load all relationships to have response exactly like json api. This slows down the API immensely.
     'loadAllJsonApiRelationships' => true,
]; 

Requests and responses

All requests and responses are formatted according to the format specified by http://jsonapi.org/.

There are several respond methods at your disposal in your controller. The following respond methods are implemented at this moment:

return $this->respondWithOk($object);
return $this->respondWithPartialContent($object);
return $this->respondWithCreated($object);
return $this->respondWithNoContent($object);
return $this->respondWithCollection($object);

These methods automatically converts your objects to json api format and creates a response with the correct status code and body.

Using policies

If you decide to use policies to check for the user's pemissions you have to add the policies to your Providers\AuthServiceProvider.

 protected $policies = [
     Sample::class => SamplePolicy::class,
 ];
 
 public function boot()
 {
     $this->registerPolicies();
 }    

The policies are preconfigured to work with Laravel passport, if you want to use another form of authorizing actions you can change the methods.

If you want to redirect the validation to a specific function in your policy.

$this->authorizeAction('show');

If you want to check if they can request a specific object you can add that object as the second parameter:

$this->authorizeAction('show', $requestedObject);

URL parameters out of the box

The following URL parameters are supported after installing this package:

  • ?include={relationship}: To add all relationship data to the response.
  • ?page={pageNumber}: To decide which page the pagination should show.
  • ?per_page={amountToShowPerPage}:To decide how many items you get per page.
  • ?ids={commaSeperatedIds}: To retrieve a collection of objects belonging to the ids.
  • ?exclude_ids={commaSeperatedIds}: To retrieve a collection of objects not belonging to the ids.
  • ?lang={language}: (Requires the configure-locale middleware) to change the php locale to the desired language and automatically translates all translatable models.
  • ?fields={columns}: To retrieve certain columns.
  • ?order_by_desc={column}: To order descending based on a column.
  • ?order_by_asc={column}: To order ascending based on a column.

Mandatory middleware

  • inspect_content_type: Required. It ensures that the requests should be in json format. If it's in another format it throws a ContentTypeNotSupportedException.

Optional middleware

There is optional middleware:

  • configure-locale: used to configure the language for translating your responses. Also configurable by using the URL paramater ?lang={language}

Passport installation

Note: if you want to know more about laravel passport and why these commands should be run go to https://laravel.com/docs/passport

$ composer require laravel/passport
$ php artisan migrate
$ php artisan passport:install

After running this command, add the Laravel\Passport\HasApiTokens trait to your App\User model

Next, you should call the Passport::routes method within the boot method of your AuthServiceProvider.

Finally, in your config/auth.php configuration file, you should set the driver option of the api authentication guard to passport. This will instruct your application to use Passport's TokenGuard when authenticating incoming API requests.

If you created your own routes make sure you have the auth:api middlware on all the routes you want to use passport with.

Packages Laravel-Api uses

Laravel framework
Astrotomic / laravel-translatable

Change log

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

SWIS

SWIS is a web agency from Leiden, the Netherlands. We love working with open source software.

More Repositories

1

jQuery-contextMenu

jQuery contextMenu plugin & polyfill
HTML
2,244
star
2

json-api-client

A PHP package for mapping remote {json:api} resources to Eloquent like models and collections.
PHP
204
star
3

laravel-fulltext

Fulltext indexing and searching for Laravel
PHP
180
star
4

laravel-nova-mirror

Automatically update a git repository with Laravel Nova releases
PHP
75
star
5

vagrant-remove-old-box-versions

Vagrant plugin to check your downloaded boxes and remove every box that is not the lastest downloaded version
Ruby
75
star
6

vue-cli-plugin-svg-sprite

vue-cli 3 plugin to build an SVG sprite
JavaScript
70
star
7

filament-backgrounds

Beautiful backgrounds for Filament auth pages
PHP
30
star
8

php7-upgrade-tools

A set of tools for upgrading applications to PHP 7
24
star
9

geocoder-php-nationaal-georegister-provider

Nationaal Georegister provider for Geocoder PHP
PHP
21
star
10

nuxt-lucide-icons

This Nuxt module makes working with Lucide icons a breeze!
TypeScript
21
star
11

laravel-graylog2

Log your Laravel application errors to Graylog2
PHP
20
star
12

laravel-mix-svg-sprite

SVG sprite component for Laravel Mix
JavaScript
17
star
13

textsnippet

Create a snippet of text highlighting a given string
PHP
14
star
14

gists

Gists from @swisnl
PHP
12
star
15

php-http-fixture-client

Fixture client for PHP-HTTP
PHP
8
star
16

game-of-tests-laravel

Laravel package for a Game of Tests
PHP
8
star
17

json-api-client-laravel

A PHP package for mapping remote {json:api} resources to Eloquent like models and collections.
PHP
8
star
18

game-of-tests

Some classes to parse git repositories in search for tests, gives a list of tests with their owner to create a ranking of tests written.
PHP
7
star
19

sass-rhythm

Helper function for maintaining rhythm in your css
SCSS
6
star
20

laravel-mautic

Laravel wrapper for Mautic API
PHP
6
star
21

build-size

Parse and compare build size
JavaScript
4
star
22

laravel-javascript-data-response

JavaScript data response macro for Laravel
PHP
4
star
23

pdfcrowd-client

A client for the pdfcrowd.com API. Includes a Laravel service provider.
PHP
3
star
24

game-of-tests-laravel-demo

Game of Tests demo site
PHP
3
star
25

laravel-static-request-cache

Cache static responses based on content-type to static files.
PHP
3
star
26

omnipay-redsys

RedSys driver for the Omnipay PHP payment processing library
PHP
2
star
27

laravel-lti-provider

Laravel LTI provider
PHP
2
star
28

phpstan-faker

PHP
2
star
29

laravel-psr-http-client-bridge

Laravel PSR-18 HTTP Client Bridge
PHP
2
star
30

sass-custom-box

BEM-compatible SASS mixins for styling radioboxes and checkboxes
SCSS
1
star
31

php-cs-fixer-bitbucket

PHP CS Fixer Bitbucket reporter
PHP
1
star
32

flysystem-encrypted

Flysystem Adapter Encryption Decorator
PHP
1
star
33

leiduhfy

Jouw website op z'n leids op 3 oktober
JavaScript
1
star
34

pdok-geodatastore-api

A client for the PDOK Geodatastore API.
PHP
1
star
35

phpcs-bitbucket

PHP_CodeSniffer Bitbucket reporter
PHP
1
star
36

guzzle-fixture-handler

Fixture handler for Guzzle 6+
PHP
1
star
37

phpmd-bitbucket

PHPMD Bitbucket renderer
PHP
1
star