Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renoki-co/hej
Hej! is a simple authentication boilerplate for Socialite.
https://github.com/renoki-co/hej
authentication authentication-flow facebook github gitlab google hej laravel package packages passport php register social social-accounts socialite socialite-provider twitter
Last synced: about 13 hours ago
JSON representation
Hej! is a simple authentication boilerplate for Socialite.
- Host: GitHub
- URL: https://github.com/renoki-co/hej
- Owner: renoki-co
- License: apache-2.0
- Created: 2020-07-24T10:57:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-11T05:09:21.000Z (about 1 year ago)
- Last Synced: 2024-08-10T23:18:34.362Z (3 months ago)
- Topics: authentication, authentication-flow, facebook, github, gitlab, google, hej, laravel, package, packages, passport, php, register, social, social-accounts, socialite, socialite-provider, twitter
- Language: PHP
- Homepage:
- Size: 159 KB
- Stars: 134
- Watchers: 7
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Hej! - a Socialite authentication flow implementation
=====================================================![CI](https://github.com/renoki-co/hej/workflows/CI/badge.svg?branch=master)
[![codecov](https://codecov.io/gh/renoki-co/hej/branch/master/graph/badge.svg)](https://codecov.io/gh/renoki-co/hej/branch/master)
[![StyleCI](https://github.styleci.io/repos/282196287/shield?branch=master)](https://github.styleci.io/repos/282196287)
[![Latest Stable Version](https://poser.pugx.org/renoki-co/hej/v/stable)](https://packagist.org/packages/renoki-co/hej)
[![Total Downloads](https://poser.pugx.org/renoki-co/hej/downloads)](https://packagist.org/packages/renoki-co/hej)
[![Monthly Downloads](https://poser.pugx.org/renoki-co/hej/d/monthly)](https://packagist.org/packages/renoki-co/hej)
[![License](https://poser.pugx.org/renoki-co/hej/license)](https://packagist.org/packages/renoki-co/hej)Hej! is a simple authentication flow implementation for Socialite. Out-of-the-box, Hej! can help you login and register users using Socialite providers, or link and unlink social accounts, just by extending a controller.
- [Hej! - a Socialite authentication flow implementation](#hej---a-socialite-authentication-flow-implementation)
- [🤝 Supporting](#-supporting)
- [🚀 Installation](#-installation)
- [🙌 Usage](#-usage)
- [Extending Controllers](#extending-controllers)
- [Provider whitelisting](#provider-whitelisting)
- [Custom Socialite Redirect & Retrieval](#custom-socialite-redirect--retrieval)
- [Registering new users](#registering-new-users)
- [Handling duplicated E-Mail addresses](#handling-duplicated-e-mail-addresses)
- [Filling the Social table](#filling-the-social-table)
- [Callbacks](#callbacks)
- [Redirects](#redirects)
- [Link & Unlink](#link--unlink)
- [Custom Authenticatable](#custom-authenticatable)
- [🐛 Testing](#-testing)
- [🤝 Contributing](#-contributing)
- [🔒 Security](#--security)
- [🎉 Credits](#-credits)## 🤝 Supporting
**If you are using one or more Renoki Co. open-source packages in your production apps, in presentation demos, hobby projects, school projects or so, sponsor our work with [Github Sponsors](https://github.com/sponsors/rennokki). 📦**
[](https://github-content.renoki.org/github-repo/23)
## 🚀 Installation
You can install the package via composer:
```bash
composer require renoki-co/hej
```Publish the config:
```bash
$ php artisan vendor:publish --provider="RenokiCo\Hej\HejServiceProvider" --tag="config"
```Publish the migrations:
```bash
$ php artisan vendor:publish --provider="RenokiCo\Hej\HejServiceProvider" --tag="migrations"
```## 🙌 Usage
For the user (or any Authenticatable instance) you should add the `HasSocialAccounts` trait and the `Sociable` interface:
```php
use RenokiCo\Hej\Concerns\HasSocialAccounts;
use RenokiCo\Hej\Contracts\Sociable;class User extends Authenticatable implements Sociable
{
use HasSocialAccounts;//
}
```Out-of-the-box, it works with any Laravel application.
After you have configured Socialite, the only thing to do is to point your desired redirect and callback paths to the package controller:
```php
Route::get('/social/{provider}/redirect', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'redirect']);
Route::get('/social/{provider}/callback', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'callback']);Route::middleware('auth')->group(function () {
Route::get('/social/{provider}/link', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'link']);
Route::get('/social/{provider}/unlink', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'unlink']);
});
```The paths can be any, as long as they contain a first parameter which is going to be the provider you try to authenticate with. For example, accessing this link will redirect to Github:
```
https://my-link.com/social/github/redirect
```## Extending Controllers
Hej! is really flexible and does a lot of things in the background to register or login using Socialite.
However, you need to extend the controller and you will then be able to replace some methods to customize the flow.
```php
use RenokiCo\Hej\Http\Controllers\SocialController;class MySocialController extends SocialController
{
//
}
```Then you should point the routes to the new controller.
### Provider whitelisting
Due to the fact that the endpoints are opened to get any provider, you can whitelist the Socialite provider names that can be used:
```php
/**
* Whitelist social providers to be used.
*
* @var array
*/
protected static $allowedSocialiteProviders = [
//
];
```For example, allowing only Facebook and Github should look like this:
```php
protected static $allowedSocialiteProviders = [
'facebook',
'github',
];
```If one of the providers accessed via the URL is not whitelisted, a simple redirect is done automatically. However, you can replace it and redirect to your custom [redirect action](#redirects).
### Custom Socialite Redirect & Retrieval
With Socialite, you can use `->redirect()` to redirect the user and `->user()` to retrieve it. You can customize the instances by replacing `getSocialiteRedirect` and `getSocialiteUser`.
Here is the default configuration:
```php
/**
* Get the Socialite direct instance that will redirect
* the user to the right provider OAuth page.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @return mixed
*/
protected function getSocialiteRedirect(Request $request, string $provider)
{
return $this->socialite
->driver($provider)
->redirect();
}/**
* Get the Socialite User instance that will be
* given after the OAuth authorization passes.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @return \Laravel\Socialite\AbstractUser
*/
protected function getSocialiteUser(Request $request, string $provider)
{
return $this->socialite
->driver($provider)
->user();
}
```### Registering new users
When the Social account that the user logged in is not registered within the database, it creates a new authenticatable model, but in order to do this, it should fill it with data.
By default, it fills in using Socialite Provider's given data and sets a random 64-letter word password:
```php
/**
* Get the Authenticatable model data to fill on register.
* When the user gets created, it will receive these parameters
* in the `::create()` method.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return array
*/
protected function getRegisterData(Request $request, string $provider, $providerUser): array
{
return [
'name' => $providerUser->getName(),
'email' => $providerUser->getEmail(),
'email_verified_at' => now(),
'password' => Hash::make(Str::random(64)),
];
}
```#### Handling duplicated E-Mail addresses
Sometimes, it can happen for the users to have an account created with E-Mail address only, having no social accounts. A new social account with the same E-Mail address will trigger a new authenticatable record in the database on callback.
For this, a [Redirect](#redirects) is made to handle this specific scenario.
#### Filling the Social table
After registration or login, the Socialite data gets created or updated, either the user existed or not.
By default, it's recommended to not get overwritten, excepting for the fact you want to change the table structure and extend the `Social` model that is also set in `config/hej.php`.
```php
/**
* Get the Social model data to fill on register or login.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return array
*/
protected function getSocialData(Request $request, string $provider, $model, $providerUser): array
{
return [
'provider_nickname' => $providerUser->getNickname(),
'provider_name' => $providerUser->getName(),
'provider_email' => $providerUser->getEmail(),
'provider_avatar' => $providerUser->getAvatar(),
];
}
```### Callbacks
Right before the user is authenticated or registered successfully, there exist callback that trigger and you can replace them for some custom logic.
```php
/**
* Handle the callback after the registration process.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Illuminate\Database\Eloquent\Model $social
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return void
*/
protected function registered(Request $request, $model, $social, $providerUser)
{
//
}/**
* Handle the callback after the login process.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Illuminate\Database\Eloquent\Model $social
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return void
*/
protected function authenticated(Request $request, $model, $social, $providerUser)
{
//
}/**
* Handle the callback after the linking process.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Illuminate\Database\Eloquent\Model $social
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return void
*/
protected function linked(Request $request, $model, $social, $providerUser)
{
//
}/**
* Handle the callback after the unlink process.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param string $provider
* @return void
*/
protected function unlinked(Request $request, $model, string $provider)
{
//
}
```### Redirects
You are free to overwrite the actions' redirects within the controller:
```php
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Session;/**
* Specify the redirection route after successful authentication.
*
* @param \Illuminate\Database\Eloquent\Model $model
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterAuthentication($model)
{
return Redirect::route('home');
}/**
* Specify the redirection route to let the users know
* the authentication using the selected provider was rejected.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterProviderIsRejected(Request $request, $provider)
{
return Redirect::route('home');
}/**
* Specify the redirection route to let the users know
* the E-Mail address used with this social account is
* already existent as another account. This is most often
* occuring during registrations with Social accounts.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterDuplicateEmail(Request $request, $provider, $providerUser)
{
return Redirect::route('home');
}
```### Link & Unlink
Prior to creating new accounts or logging in with Socialite providers, Hej! comes with support to link and unlink Social accounts to and from your users.
You will need to have the routes accessible only for your authenticated users:
```php
Route::middleware('auth')->group(function () {
Route::get('/social/{provider}/link', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'link']);
Route::get('/social/{provider}/unlink', [\RenokiCo\Hej\Http\Controllers\SocialController::class, 'unlink']);
});
```Further, you may access the URLs to link or unlink providers.
Additionally, you may implement custom redirect for various events happening during link/unlink:
```php
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Session;/**
* Specify the redirection route to let the users know
* the social account is already associated with their account.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @param \Illuminate\Database\Eloquent\Model $model
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterProviderIsAlreadyLinked(Request $request, $provider, $model)
{
return Redirect::route('home');
}/**
* Specify the redirection route to let the users know
* the social account is associated with another account.
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterProviderAlreadyLinkedByAnotherAuthenticatable(
Request $request, $provider, $model, $providerUser
) {
return Redirect::route('home');
}/**
* Specify the redirection route to let the users know
* they linked the social account.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param \Illuminate\Database\Eloquent\Model $social
* @param \Laravel\Socialite\AbstractUser $providerUser
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterLink(Request $request, $model, $social, $providerUser)
{
return Redirect::route('home');
}/**
* Specify the redirection route to let the users
* they have unlinked the social account.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Database\Eloquent\Model $model
* @param string $provider
* @return \Illuminate\Http\RedirectResponse
*/
protected function redirectToAfterUnlink(Request $request, $model, string $provider)
{
return Redirect::route('home');
}
```### Custom Authenticatable
When trying to login or register, the package uses the default `App\User` as defined in `config/hej.php`. However, this can easily be replaced at the request level:
```php
/**
* Get the model to login (or register).
*
* @param \Illuminate\Http\Request $request
* @param string $provider
* @return string
*/
public function getAuthenticatable(Request $request, string $provider)
{
return config('hej.default_authenticatable');
}
```For example, you can change the model to authenticate as for different Socialite providers:
```php
public function getAuthenticatable(Request $request, string $provider)
{
if ($provider === 'medium') {
return \App\AnotherUser::class;
}return config('hej.default_authenticatable');
}
```**Keep in mind that the model should also use the Trait and the Interface and be `Authenticatable`.**
## 🐛 Testing
``` bash
vendor/bin/phpunit
```## 🤝 Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## 🔒 Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## 🎉 Credits
- [Alex Renoki](https://github.com/rennokki)
- [All Contributors](../../contributors)