To use first install with composer
"require": {
"gridplay/gpaone": "^1.0",
}
composer update
or do...
composer require gridplay/gpaone
'gpaone' => [
'client_id' => env('GPAONE_CLIENT_ID'),
'client_secret' => env('GPAONE_CLIENT_SECRET'),
'redirect' => env('GPAONE_REDIRECT_URI')
],
Configure the package's listener to listen for SocialiteWasCalled
events.
Add the event to your listen[]
array in app/Providers/EventServiceProvider
. See the Base Installation Guide for detailed instructions.
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// ... other providers
\GPAONE\GPAOneExtendSocialite::class.'@handle',
],
];
In your Providers/AppServiceProvider.php put the following in the boot function
use Illuminate\Support\Facades\Event;
use \GPAONE\Provider as GpaOneProvider;
public function boot(): void
{
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
$event->extendSocialite('gpaone', GpaOneProvider::class);
});
}
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::driver('gpaone')->redirect();
$user = Socialite::driver('gpaone')->user();
$gpid = $user->id;
$grid = $user->grid;
// etc.
id
grid
name
uuid
avatar
avatar field is a full URL to the user's profile picture
$isprem = GPa::isPrem($uuid);
This lets you offer premium only stuff on your site for our GPPremium users
$isbanned = GPa::isBanned($uuid);
This lets you denie access to your site/services if the sl avatar is banned in the GridPlay system
Both functions returns a true/false boolean
Any issues and/or comments please reach out to VenKellie.Resident in SecondLife