1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-03-22 02:24:04 +00:00
tenancy/src/Commands/TenantDump.php
2026-03-02 13:21:30 +05:30

69 lines
2 KiB
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Commands;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Database\ConnectionResolverInterface;
use Illuminate\Database\Console\DumpCommand;
use Illuminate\Filesystem\Filesystem;
use Stancl\Tenancy\Contracts\Tenant;
use Symfony\Component\Console\Input\InputOption;
class TenantDump extends DumpCommand
{
public function __construct()
{
parent::__construct();
$this->setName('tenants:dump');
$this->specifyParameters();
}
public function handle(ConnectionResolverInterface $connections, Dispatcher $dispatcher): int
{
if (is_null($this->option('path'))) {
$this->input->setOption('path', config('tenancy.migration_parameters.--schema-path') ?? database_path('schema/tenant-schema.dump'));
}
$tenant = $this->option('tenant')
?? tenant()
?? $this->ask('What tenant do you want to dump the schema for?')
?? tenancy()->query()->first();
if (! $tenant instanceof Tenant) {
$tenant = tenancy()->find($tenant);
}
if ($tenant === null) {
$this->components->error('Could not find tenant to use for dumping the schema.');
return 1;
}
// Prevent the parent command from pruning the central migrations folder
$prune = $this->option('prune');
$this->input->setOption('prune', false);
tenancy()->run($tenant, fn () => parent::handle($connections, $dispatcher));
if ($prune) {
(new Filesystem)->deleteDirectory(
database_path('migrations/tenant'),
preserve: true
);
$this->components->info('Tenant migrations pruned.');
}
return 0;
}
protected function getOptions(): array
{
return array_merge([
new InputOption('tenant', null, InputOption::VALUE_OPTIONAL, '', null),
], parent::getOptions());
}
}