2017 © Pedro Peláez
 

library machina

Machine to machine authentication for Laravel

image

code16/machina

Machine to machine authentication for Laravel

  • Tuesday, May 15, 2018
  • by code16
  • Repository
  • 2 Watchers
  • 0 Stars
  • 38 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 12 % Grown

The README.md

Machina

This package is a wrapper around tymons\jwt-auth, aimed at providing a simple & flexible machine-to-machine authentication for Laravel 5.5+., (*1)

Installation

    composer require code16/machina

Configuration

If you want to customize some default options like the prefix used for /login and /refresh endpoints by the package, you can publish it to your application folder :, (*2)

    php artisan config:publish code16/machina

Then run this command, which will add a JWT_SECRET entry in your .env file:, (*3)

    php artisan jwt:secret

Defining machine guard

In config/auth.php :, (*4)

    'guards' => [
        'web' => [
            'driver' => 'session',
            'provider' => 'users',
        ],

        'machina' => [
            'driver' => 'machina',
            'provider' => Api\ClientRepository::class,
        ],
    ],

Creating a ClientRepository class

This package does not come with an opinionated way of retrieving clients, but instead provides a very simple way to adapt it to your application, by providing a class implementing Code16\Machina\ClientRepositoryInterface., (*5)

Example :, (*6)


namespace App; use Code16\Machina\ClientRepositoryInterface; class ClientRepository implements ClientRepositoryInterface { public function findByKey($key) { return User::find($key); } public function findByCredentials($client, $secret) { return User::where('id', $client)->where('secret', $secret)->first(); } }

Note that here we used the standard App\User model DB to identify our client, but you can use whichever model / fields you like., (*7)

Protecting routes

    Route::get('protected', 'ApiController@index')->middleware('auth:machina');

Authenticating and retrieving token

Send a POST request the /auth/login endpoint with client and secret as parameters :, (*8)

    {
        client : "1",
        secret : "x7jfajleug64hggi"
    }

If the credentials are correct, the API will return a JWT token that can be used to access protected routes., (*9)

Accessing protected routes

There is two ways of passing the token along the request :, (*10)

  • Passing the token in the authorization header with the following string format : Bearer <token>, (*11)

  • Passing the token as a query parameter : https://app.dev/protected?token=<token>, (*12)

Implementing client applications

For your client applications, you can use our companion package, machina client., (*13)

The Versions

15/05 2018

dev-master

9999999-dev https://github.com/code16/machina

Machine to machine authentication for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Rémi Collin

laravel api auth package