pbmedia / laravel-single-session
Prevent a User from being logged in more than once
Installs: 1 766
Dependents: 0
Suggesters: 0
Security: 0
Stars: 95
Watchers: 4
Forks: 10
Open Issues: 1
Requires
- php: ^7.1
- illuminate/auth: ~5.6.0
- illuminate/config: ~5.6.0
- illuminate/support: ~5.6.0
Requires (Dev)
- guzzlehttp/guzzle: ^6.3
- laravel/passport: ^5.0|^6.0
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.6
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2020-08-28 16:29:48 UTC
README
This package prevents a User from being logged in more than once. It destroys the previous session when a User logs in and thereby allowing only one session per user. It assumes you use Laravel's Authentication features.
Requirements
- Laravel 5.6 only, 7.1 and 7.2 supported.
- Support for Package Discovery.
- Support for Laravel Passport.
Notes
- Laravel 5.6.14 and later supports invalidating sessions out-of-the-box.
- If you're still using Laravel 5.5, please use version 1.2.0.
Installation
You can install the package via composer:
composer require pbmedia/laravel-single-session
Publish the database migration and config file using the Artisan CLI tool.
php artisan vendor:publish --provider="Pbmedia\SingleSession\SingleSessionServiceProvider"
The database migration adds a session_id
field to the users
table. Run the migration to get started!
php artisan migrate
Now add the \Pbmedia\SingleSession\Middleware\VerifyUserSession
middleware to the routes you want to protect.
Usage
Since Laravel 5.5 has support for Package Discovery, you don't have to add the Service Provider to your app.php
config file.
In the single-session.php
config file you can specify a destroy_event
. This event will get fired once a previous session gets destroyed. You might want to use this to broadcast the event and handle the destroyed session in the user interface. The constructor of the event can take two parameters, The User model and ID of the destroyed session. Here is an example event:
<?php namespace App\Events; class UserSessionWasDestroyed { public $user; public $sessionId; public function __construct($user, $sessionId) { $this->user = $user; $this->sessionId = $sessionId; } public function broadcastOn() { // return new PrivateChannel('channel-name'); } public function broadcastWith() { return ['user_id' => $this->user->id]; } }
When using Laravel Passport it automatically prunes and revokes tokens from the database as well. This can be disabled by setting the prune_and_revoke_tokens
option to false
in the config file.
If you're using Laravel Passport's CreateFreshApiToken
middleware, add the Pbmedia\SingleSession\Middleware\BindSessionToFreshApiToken
middleware before the CreateFreshApiToken
and add the VerifyUserSessionInApiToken
middleware to the auth:api
group:
$router->get('/', 'HomeController@show')->middleware([ 'web', 'auth', BindSessionToFreshApiToken::class, CreateFreshApiToken::class ]); $router->get('/api', 'ApiController@index')->middleware([ 'api', 'auth:api', VerifyUserSessionInApiToken::class ]);
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email pascal@pascalbaljetmedia.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.