laracomponents/impersonation

Impersonating user for Laravel application.
1,044 2
Install
composer require laracomponents/impersonation
Latest Version:v1.0.1
PHP:>=5.6.4
License:MIT
Last Updated:Jan 27, 2017
Links: GitHub  ·  Packagist
Maintainer: stenin-nikita

Impersonation for Laravel

Build Status Latest Version Quality Score StyleCI Total Downloads Software License

Introduction

Impersonating user for Laravel application.

Installation

You can install this package via composer using this command:

composer require laracomponents/impersonation

Next, you must add the Impersonable trait to the user model:

use LaraComponents\Impersonation\Traits\Impersonable;

class User
{
    use Impersonable;
    ...

    /**
     * Optional method
     * Default return the "impersonate_id"
    **/
    public function getImpersonatingKey()
    {
        return 'your session key here';
    }
}

Open App/Http/Kernal.php and add middleware to web middleware group:

    protected $middlewareGroups = [
        'web' => [
            ...
            \LaraComponents\Impersonation\Middleware\CheckForImpersonating::class,
        ],
        ...
    ];

And finally you should add a routes to routes/web.php. Example:

Route::get('users/{id}/impersonate', function ($id) {
    $user = \App\User::findOrFail($id);

    if(! $user->isImpersonating()) {
        $user->impersonate();
    }

    return redirect('/');
});

Route::get('users/unimpersonate', function () {
    $user = \Auth::user();

    if($user->isImpersonating()) {
        $user->unimpersonate();
    }

    return redirect('/');
});

Testing

You can run the tests with:

vendor/bin/phpunit

License

The MIT License (MIT). Please see License File for more information.

Related Packages

arcanedev/laravel-impersonator

This package allows you to impersonate as an other user.

1,573 7
christhompsontldr/impersonate

Allows a user to impersonate another user.

471 0
lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users...

19,094,858 2,336
rickycezar/laravel-jwt-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users...

126,818 24
morilog/acl

Access control list management for Laravel Framework

30 3