Laravel中的多会话表 [英] Multi session tables in Laravel

查看:68
本文介绍了Laravel中的多会话表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经建立了一个Laravel项目,其中有两个带有Hi自己的用户表的后卫.现在我想将会话保存到数据库中而不是文件中.问题是我无法将会话保存在单个表中,因为用户ID不是唯一的.我怎么解决这个问题?谢谢.

i have setup a Laravel project with two guards wach with Hi own users table. Now i want to save the sessions into the database instead in a file. The Problem is that I cant save the session in a single table, because the user ID is not unique. How can I solve this problem? Thanks.

推荐答案

我尝试了这个.可以使用,但是它存在默认的会话驱动程序,因此用户在默认表和admin_sessions表中都有一个会话.

I tried this. This working, but it exists a default session driver, so a user has a session in the default table and in the admin_sessions table.

class AuthServiceProvider extends ServiceProvider
{
    protected $policies = [
        Administrator::class => UserPolicy::class,
    ];

    public function boot()
    {
        $this->registerPolicies();

        Auth::extend('admin_session', function ($app, $name, array $config) {

            $provider = Auth::createUserProvider($config['provider']);
            $guard = new SessionGuard($name, $provider, $app->session->driver('admin_database'));

            if (method_exists($guard, 'setCookieJar')) {
                $guard->setCookieJar($this->app['cookie']);
            }

            if (method_exists($guard, 'setDispatcher')) {
                $guard->setDispatcher($this->app['events']);
            }

            if (method_exists($guard, 'setRequest')) {
                $guard->setRequest($this->app->refresh('request', $guard, 'setRequest'));
            }

            return $guard;
    }
}


class SessionServiceProvider extends ServiceProvider
{

    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
    }


    /**
     * Perform post-registration booting of services.
     *
     * @return void
     */
    public function boot()
    {
        $this->app->session->extend('admin_database', function ($app) {

            $table = 'administrator_sessions';

            // This is not workin, because I don't have the user her.
            /*if (auth()->user() instanceof Customer) {
                $table = 'customer_sessions';
            }
            else if (auth()->user() instanceof Administrator){
                $table = 'administrator_sessions';
            }*/

            $lifetime = $app['config']['session.lifetime'];
            $connection = $app['db']->connection($app['config']['session.connection']);

            return new DatabaseSessionHandler($connection, $table, $lifetime, $app);
        });
    }

}

这篇关于Laravel中的多会话表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆