1

我为许多租户构建了一个应用程序,每个租户都有自己的数据库。数据库名称与租户 id 相同。(id 存在于五个数字中)。身份验证后,用户应该连接到他自己的数据库并重定向到他的仪表板。

我尝试使用以下代码将用户与他的数据库连接起来,该代码放在 Authenticate.php 中

if (!Auth::guest() && Auth::user()->tenant) {
        $user = Auth::id();
        Tenanti::driver('user')->asDefaultDatabase($user, 'users_{id}');
        Config::set('database.connections.mysql.database', 'user_'.$user); 
    }

if 语句检查主数据库中登录的用户是否是租户(布尔值)。

config/database.php 包含以下代码:

 'tenants' => [
        'user_1' => [
            'driver'    => 'mysql',
            'host'      => 'localhost',     // for user with id=1
            'database'  => '86097',     // for user with id=1
            'username'  => 'root', // for user with id=1
            'password'  => 'root', // for user with id=1
            'charset'   => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix'    => '',
            'strict'    => false,
            ],
        ],

应用服务提供者:

<?php namespace App\Providers;

use Orchestra\Support\Facades\Tenanti;

class AppServiceProvider extends ServiceProvider
{
    public function boot()
{
    Tenanti::setupMultiDatabase('tenants', function (User $entity, array $template) {
        $template['database'] = "user_{$entity->getKey()}";

        return $template;
    });
}
}
?>

我没有收到错误,但连接没有改变。用户数据库是空的,因此当我使用 user_id=1 登录时应该看不到任何数据。提前感谢您的帮助。

4

1 回答 1

1

配置应该是:

'tenants' => [
    'driver'    => 'mysql',
    'host'      => 'localhost',     // for user with id=1
    'database'  => '86097',     // for user with id=1
    'username'  => 'root', // for user with id=1
    'password'  => 'root', // for user with id=1
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
    'strict'    => false,
],

除此之外,请替换Tenanti::setupMultiDatabase()Tenanti::connection()(我们已弃用旧方法)。

并更改以下内容:

Tenanti::driver('user')->asDefaultConnection(Auth::user(), 'tenants_{id}');

显然,如果您想使用users_{id},则需要将全部替换tenantsusers.

于 2016-08-04T10:00:37.760 回答