我为许多租户构建了一个应用程序,每个租户都有自己的数据库。数据库名称与租户 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 登录时应该看不到任何数据。提前感谢您的帮助。