mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 18:44:03 +00:00
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Jobs;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Stancl\Tenancy\Contracts\Tenant;
|
|
use Stancl\Tenancy\Contracts\TenantWithDatabase;
|
|
use Stancl\Tenancy\DatabaseManager;
|
|
use Stancl\Tenancy\Events\CreatingDatabase;
|
|
use Stancl\Tenancy\Events\DatabaseCreated;
|
|
|
|
class CreateDatabase implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/** @var TenantWithDatabase|Model */
|
|
protected $tenant;
|
|
|
|
public function __construct(Tenant $tenant)
|
|
{
|
|
$this->tenant = $tenant;
|
|
}
|
|
|
|
public function handle(DatabaseManager $databaseManager)
|
|
{
|
|
event(new CreatingDatabase($this->tenant));
|
|
|
|
if ($this->tenant->getInternal('create_database') !== false) {
|
|
$databaseManager->ensureTenantCanBeCreated($this->tenant);
|
|
$this->tenant->database()->makeCredentials();
|
|
$this->tenant->database()->manager()->createDatabase($this->tenant);
|
|
|
|
event(new DatabaseCreated($this->tenant));
|
|
}
|
|
}
|
|
}
|