2017 © Pedro Peláez
 

library eveonline-socialite

EveOnline SSO Provider for Laravel Socialite

image

nullx27/eveonline-socialite

EveOnline SSO Provider for Laravel Socialite

  • Wednesday, December 20, 2017
  • by nullx27
  • Repository
  • 3 Watchers
  • 6 Stars
  • 609 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 6 Versions
  • 43 % Grown

The README.md

Eve Online Provider for Laravel Socialite

Installation and config

Install Larvel Socialite (see here: https://github.com/laravel/socialite/blob/2.0/readme.md), (*1)

Install the eveonline socialite provider, (*2)

composer require nullx27/eveonline-socialite

Add the follwing to your .env file:, (*3)

EVEONLINE_CLIENT_ID=
EVEONLINE_CLIENT_SECRET=
EVEONLINE_REDIRECT=

(Get your Eve Online SSO credentials here: https://developers.eveonline.com/applications/), (*4)

Laravel <= 5.4

Add the following to your config/app.php, (*5)

nullx27\Socialite\EveOnline\Providers\EveOnlineServiceProvider::class,

Laravel 5.5

Service Provider is auto discovered., (*6)

Usage

<?php

namespace App\Http\Controllers\Auth;

use Socialite;

class AuthController extends Controller
{
    /**
     * Redirect the user to the Eve Online authentication page.
     *
     * @return Response
     */
    public function redirectToProvider()
    {
        return Socialite::driver('eveonline')->redirect();
    }

    /**
     * Obtain the user information from Eve Online.
     *
     * @return Response
     */
    public function handleProviderCallback()
    {
        $user = Socialite::driver('eveonline')->user();

        //dd($user);
    }
}

Retrieving User Details

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

$user = Socialite::driver('eveonline')->user();

$token = $user->token;
$expiresIn = $user->expiresIn;
$user->getId();
$user->getName();
$user->getAvatar();

The Versions

20/12 2017

dev-master

9999999-dev

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer

20/12 2017

v0.5

0.5.0.0

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer

05/10 2017

v0.4

0.4.0.0

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer

24/07 2017

v0.3

0.3.0.0

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer

18/02 2017

v0.2

0.2.0.0

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer

31/08 2016

0.1

0.1.0.0

EveOnline SSO Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

by Andre Peiffer