2017 © Pedro Peláez
 

library fauth

Authentication User Framgia

image

trandinhvi39/fauth

Authentication User Framgia

  • Monday, August 7, 2017
  • by TranDinhVi
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

FAuth (Framgia Authentication)

Installation

Add the following to your composer.json, (*1)

"repositories": [
    {
    "url": "https://github.com/trandinhvi39/fauth",
    "type": "git"
    }
],

"require": {
    "trandinhvi39/fauth" : "dev-master"
}

Run the following command: composer update, (*2)

Configuration

After installing the Fauth library, register the Trandinhvi39\Fauth\FAuthServiceProvider in your config/app.php configuration file: Trandinhvi39\Fauth\FAuthServiceProvider::class,, (*3)

Also, add the Fauth facade to the aliases array in your app configuration file: 'Fauth' => Trandinhvi39\Fauth\Facades\Fauth::class,, (*4)

You will also need to add credentials for the OAuth services your application utilizes. These credentials should be placed in your config/services.php configuration file, and should use the key framgia for the framgia provider. For example:, (*5)

'framgia' => [
    'client_id' => 'your-auth-framgia-app-id',
    'client_secret' => 'your-auth-framgia-app-secret',
    'base_url' => 'http://domain-auth-server',
    'redirect' => 'http://your-callback-url',
],

Add the following to your composer.json (autoload-dev -> psr-4) "Trandinhvi39\\Fauth\\": "vendor/trandinhvi39/fauth/", (*6)

Run below command: composer dump-autoload, (*7)

Basic Usage

Next, you are ready to authenticate users! You will need two routes: one for redirecting the user to the OAuth provider, and another for receiving the callback from the provider after authentication. We will access Fauth using the Fauth facade:, (*8)

<?php

namespace App\Http\Controllers\Auth;

use Fauth;

class LoginController extends Controller
{
    /**
     * Redirect the user to the Auth-Framgia authentication page.
     *
     * @return Response
     */
    public function redirectToProvider()
    {
        return Fauth::driver('framgia')->redirect();
    }

    /**
     * Obtain the user information from Auth-Framgia.
     *
     * @return Response
     */
    public function handleProviderCallback()
    {
        $user = Fauth::driver('framgia')->user();
    }
}

Of course, you will need to define routes to your controller methods:, (*9)

Route::get('login/framgia', 'Auth\LoginController@redirectToProvider');
Route::get('login/framgia/callback', 'Auth\LoginController@handleProviderCallback');

Once you have a user instance, you can grab a few more details about the user:, (*10)

$user = Fauth::driver('framgia')->user();
$token = $user->token;
$refreshToken = $user->refreshToken; // not always provided
$expiresIn = $user->expiresIn;

If you already have a valid access token for a user, you can retrieve their details using the userFromToken method:, (*11)

$user = Fauth::driver('framgia')->userFromToken($token);, (*12)

Pull requests are welcome.

The Versions

07/08 2017

dev-develop

dev-develop

Authentication User Framgia

  Sources   Download

Framgia

The Development Requires

by trandinhvi39

laravel authentication oauth

07/08 2017

dev-master

9999999-dev

Authentication User Framgia

  Sources   Download

Framgia

The Development Requires

by trandinhvi39

laravel authentication oauth