2017 © Pedro Peláez
 

library http-basic-auth-guard

HTTP Basic Auth Guard for Lumen 5.2

image

php-cpm/http-basic-auth-guard

HTTP Basic Auth Guard for Lumen 5.2

  • Wednesday, January 10, 2018
  • by php-cpm
  • Repository
  • 1 Watchers
  • 0 Stars
  • 262 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 12 % Grown

The README.md

HTTP Basic Auth Guard

[![Latest Version on Packagist][ico-version]][link-packagist] ![Software License][ico-license] [![Total Downloads][ico-downloads]][link-downloads], (*1)

This is a modified version of HTTP Basic Auth Guard, provided for api auth., (*2)

when I readed Pingxx's documents, They tell me the APIs should be authed by basic auth and leave password empty,then I found their php SDK use bearer Token way, (*3)

so I make my own version middleware to sovle this problem., (*4)

As stateless APIs, each time request, we need to verify a token called API Secret., (*5)

so parse the request Header to get a token, verify it through Model and get Info from db., (*6)

Installation

Pull in package

$ composer require php-cpm/http-basic-auth-guard

Read & Follow Documentation

Authentication, (*7)

Important:, (*8)

Before using Lumen's authentication features, you should uncomment the call to register the AuthServiceProvider service provider in your bootstrap/app.php file.
If you would like to use Auth::user() to access the currently authenticated user, you should uncomment the $app->withFacades() method in your bootstrap/app.php file., (*9)

Add the Service Provider

Open bootstrap/app.php and register the service provider:, (*10)

$app->register(Phpcpm\BasicAuth\BasicGuardServiceProvider::class);

Setup Guard Driver

Note: In Lumen you first have to copy the config file from the directory vendor/laravel/lumen-framework/config/auth.php, create a config folder in your root folder and finally paste the copied file there., (*11)

Open your config/auth.php config file.
In guards add a new key of your choice (api in this example).
Add basic as the driver.
Make sure you also set provider for the guard to communicate with your database., (*12)

// config/auth.php
'guards' => [
    'api' => [
        'driver' => 'basic',
        'provider' => 'users'
    ],

    // ...
],

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model'  => App\User::class,
    ],
],

Middleware Usage

Middleware protecting the route:, (*13)

Route::get('api/whatever', ['middleware' => 'auth:api', 'uses' => 'NiceController@awesome']);

Middleware protecting the controller:, (*14)

<?php

namespace App\Http\Controllers;

class NiceController extends Controller
{
    public function __construct()
    {
        $this->middleware('auth:api');
    }
}

Change log

Please see CHANGELOG for more information what has changed recently., (*15)

Contributing

Please see CONTRIBUTING for details., (*16)

Any issues, feedback, suggestions or questions please use issue tracker here., (*17)

Security

If you discover any security related issues, please email zouyi@leying365.com instead of using the issue tracker., (*18)

License

The MIT License (MIT)., (*19)

The Versions

10/01 2018

dev-master

9999999-dev https://github.com/php-cpm/http-basic-auth-guard

HTTP Basic Auth Guard for Lumen 5.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by zouyi

lumen http basic auth lumen 5.2 http basic auth guard http basic authentication http basic auth guard lumen http basic auth guard lumen 5.2 bearer token

10/01 2018

v2.0.0

2.0.0.0 https://github.com/php-cpm/http-basic-auth-guard

HTTP Basic Auth Guard for Lumen 5.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by zouyi

lumen http basic auth lumen 5.2 http basic auth guard http basic authentication http basic auth guard lumen http basic auth guard lumen 5.2 bearer token

25/12 2017

v1.0.0

1.0.0.0 https://github.com/php-cpm/http-basic-auth-guard

HTTP Basic Auth Guard for Lumen 5.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by zouyi

lumen http basic auth lumen 5.2 http basic auth guard http basic authentication http basic auth guard lumen http basic auth guard lumen 5.2 bearer token