我正在使用 Laravel-5.2 开发一个多租户应用程序 每个租户都有一个单独的数据库。每个租户都有自己独立的子域。我使用他们的子域检测租户。
我设置了模型Tenant
和DatabaseConnection
Tenant hasOne DatabaseConnection
和DatabaseConnection belongsTo Tenant
。
租户的数据库连接是从BeforeMiddleware
动态设置的。这些工作非常好。
现在我想对租户使用artisan tinker
。但是,如果我运行php artisan tinker
,它会连接到Tenant
文件中存在数据库凭据的.env
。
所以我试图为它做一个控制台命令。这是我迄今取得的成就。
class ClientTinker extends Command {
protected $name = 'cdb:tinker';
public function fire()
{
// get the subdomain
$subdomain = $this->argument('subdomain');
// get the client
$client = Tenant::whereSubdomain($subdomain)->first();
$connection = $client->databaseConnection();
// $connection contains the database server, database name, user name, and password.
// dynamically set connections here. *How?*
...
// *I need to call tinker here. How?*
}
protected function getArguments()
{
return [
['subdomain', InputArgument::REQUIRED, 'Subdomain of the tenant.'],
];
}
那么如何为特定租户设置数据库连接以及如何运行修补程序?
答案 0 :(得分:2)
获得$connection
中的fire()
变量后,请执行此操作
DB::purge('mysql');
Config::set('database.connections.mysql.host', $connection->server);
Config::set('database.connections.mysql.database', $connection->database);
Config::set('database.connections.mysql.username', $connection->username);
Config::set('database.connections.mysql.password', $connection->password);
// I am assuming the variable names in $connection object here, as you have not specified them in your question.
Artisan::call('tinker');
看看这是否适合你。