mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-14 01:24:05 +00:00
45 lines
1.3 KiB
PHP
45 lines
1.3 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\Database\Contracts\TenantWithDatabase;
|
|
use Stancl\Tenancy\Database\DatabaseManager;
|
|
use Stancl\Tenancy\Events\CreatingDatabase;
|
|
use Stancl\Tenancy\Events\DatabaseCreated;
|
|
|
|
class CreateDatabase implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/** @param TenantWithDatabase&Model $tenant */
|
|
public function __construct(
|
|
protected TenantWithDatabase $tenant,
|
|
) {
|
|
}
|
|
|
|
public function handle(DatabaseManager $databaseManager): bool
|
|
{
|
|
event(new CreatingDatabase($this->tenant));
|
|
|
|
// Terminate execution of this job & other jobs in the pipeline
|
|
if ($this->tenant->getInternal('create_database') === false) {
|
|
return false;
|
|
}
|
|
|
|
$this->tenant->database()->makeCredentials();
|
|
$databaseManager->ensureTenantCanBeCreated($this->tenant);
|
|
$this->tenant->database()->manager()->createDatabase($this->tenant);
|
|
|
|
event(new DatabaseCreated($this->tenant));
|
|
|
|
return true;
|
|
}
|
|
}
|