733 lines
26 KiB
PHP
733 lines
26 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Admin\Pages;
|
|
|
|
use App\Models\ServerImport;
|
|
use App\Models\ServerImportAccount;
|
|
use App\Services\Agent\AgentClient;
|
|
use BackedEnum;
|
|
use Exception;
|
|
use Filament\Actions\Action;
|
|
use Filament\Actions\Concerns\InteractsWithActions;
|
|
use Filament\Actions\Contracts\HasActions;
|
|
use Filament\Forms\Components\Checkbox;
|
|
use Filament\Forms\Components\FileUpload;
|
|
use Filament\Forms\Components\Radio;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Forms\Concerns\InteractsWithForms;
|
|
use Filament\Forms\Contracts\HasForms;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Pages\Page;
|
|
use Filament\Schemas\Components\Actions as FormActions;
|
|
use Filament\Schemas\Components\Grid;
|
|
use Filament\Schemas\Components\Section;
|
|
use Filament\Schemas\Components\Text;
|
|
use Filament\Schemas\Components\Utilities\Get;
|
|
use Filament\Schemas\Components\View;
|
|
use Filament\Schemas\Components\Wizard;
|
|
use Filament\Schemas\Components\Wizard\Step;
|
|
use Filament\Schemas\Schema;
|
|
use Illuminate\Contracts\Support\Htmlable;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Livewire\Attributes\Url;
|
|
|
|
class DirectAdminMigration extends Page implements HasActions, HasForms
|
|
{
|
|
use InteractsWithActions;
|
|
use InteractsWithForms;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-arrow-down-tray';
|
|
|
|
protected static ?string $navigationLabel = null;
|
|
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
protected static ?string $slug = 'directadmin-migration';
|
|
|
|
protected string $view = 'filament.admin.pages.directadmin-migration';
|
|
|
|
#[Url(as: 'directadmin-step')]
|
|
public ?string $wizardStep = null;
|
|
|
|
public bool $step1Complete = false;
|
|
|
|
public ?int $importId = null;
|
|
|
|
public ?string $name = null;
|
|
|
|
public string $importMethod = 'remote_server'; // remote_server|backup_file
|
|
|
|
public ?string $remoteHost = null;
|
|
|
|
public int $remotePort = 2222;
|
|
|
|
public ?string $remoteUser = null;
|
|
|
|
public ?string $remotePassword = null;
|
|
|
|
public ?string $backupPath = null;
|
|
|
|
public bool $importFiles = true;
|
|
|
|
public bool $importDatabases = true;
|
|
|
|
public bool $importEmails = true;
|
|
|
|
public bool $importSsl = true;
|
|
|
|
protected ?AgentClient $agent = null;
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('DirectAdmin Migration');
|
|
}
|
|
|
|
public function getTitle(): string|Htmlable
|
|
{
|
|
return __('DirectAdmin Migration');
|
|
}
|
|
|
|
public function getSubheading(): ?string
|
|
{
|
|
return __('Migrate DirectAdmin accounts into Jabali');
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Action::make('startOver')
|
|
->label(__('Start Over'))
|
|
->icon('heroicon-o-arrow-path')
|
|
->color('gray')
|
|
->requiresConfirmation()
|
|
->modalHeading(__('Start Over'))
|
|
->modalDescription(__('This will reset the DirectAdmin migration wizard. Are you sure?'))
|
|
->action('resetMigration'),
|
|
];
|
|
}
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->restoreFromSession();
|
|
$this->restoreFromImport();
|
|
}
|
|
|
|
protected function getForms(): array
|
|
{
|
|
return ['migrationForm'];
|
|
}
|
|
|
|
public function migrationForm(Schema $schema): Schema
|
|
{
|
|
return $schema->schema([
|
|
Wizard::make([
|
|
$this->getConnectStep(),
|
|
$this->getSelectAccountsStep(),
|
|
$this->getConfigureStep(),
|
|
$this->getMigrateStep(),
|
|
])
|
|
->persistStepInQueryString('directadmin-step'),
|
|
]);
|
|
}
|
|
|
|
protected function getConnectStep(): Step
|
|
{
|
|
return Step::make(__('Connect'))
|
|
->id('connect')
|
|
->icon('heroicon-o-link')
|
|
->description(__('Connect to DirectAdmin or upload a backup'))
|
|
->schema([
|
|
Section::make(__('Source'))
|
|
->description(__('Choose how you want to migrate DirectAdmin accounts.'))
|
|
->icon('heroicon-o-server')
|
|
->schema([
|
|
Grid::make(['default' => 1, 'sm' => 2])->schema([
|
|
TextInput::make('name')
|
|
->label(__('Import Name'))
|
|
->default(fn (): string => $this->name ?: ('DirectAdmin Import ' . now()->format('Y-m-d H:i')))
|
|
->maxLength(255)
|
|
->required(),
|
|
Radio::make('importMethod')
|
|
->label(__('Import Method'))
|
|
->options([
|
|
'remote_server' => __('Remote Server'),
|
|
'backup_file' => __('Backup File'),
|
|
])
|
|
->default('remote_server')
|
|
->live(),
|
|
]),
|
|
|
|
Grid::make(['default' => 1, 'sm' => 2])
|
|
->schema([
|
|
TextInput::make('remoteHost')
|
|
->label(__('Host'))
|
|
->placeholder('directadmin.example.com')
|
|
->required()
|
|
->visible(fn (Get $get): bool => $get('importMethod') === 'remote_server'),
|
|
TextInput::make('remotePort')
|
|
->label(__('Port'))
|
|
->numeric()
|
|
->default(2222)
|
|
->required()
|
|
->visible(fn (Get $get): bool => $get('importMethod') === 'remote_server'),
|
|
TextInput::make('remoteUser')
|
|
->label(__('Username'))
|
|
->required()
|
|
->visible(fn (Get $get): bool => $get('importMethod') === 'remote_server'),
|
|
TextInput::make('remotePassword')
|
|
->label(__('Password'))
|
|
->password()
|
|
->revealable()
|
|
->required()
|
|
->visible(fn (Get $get): bool => $get('importMethod') === 'remote_server'),
|
|
]),
|
|
|
|
FileUpload::make('backupPath')
|
|
->label(__('DirectAdmin Backup Archive'))
|
|
->helperText(__('Upload a .tar.gz DirectAdmin backup file.'))
|
|
->disk('local')
|
|
->directory('imports/directadmin')
|
|
->preserveFilenames()
|
|
->acceptedFileTypes([
|
|
'application/gzip',
|
|
'application/x-gzip',
|
|
'application/x-tar',
|
|
'application/octet-stream',
|
|
])
|
|
->required()
|
|
->visible(fn (Get $get): bool => $get('importMethod') === 'backup_file'),
|
|
|
|
FormActions::make([
|
|
Action::make('discoverAccounts')
|
|
->label(__('Discover Accounts'))
|
|
->icon('heroicon-o-magnifying-glass')
|
|
->color('primary')
|
|
->action('discoverAccounts'),
|
|
])->alignEnd(),
|
|
]),
|
|
|
|
Section::make(__('Discovery'))
|
|
->description(__('Once accounts are discovered, proceed to select which ones to import.'))
|
|
->icon('heroicon-o-user-group')
|
|
->schema([
|
|
Text::make(__('Discovered accounts will appear in the next step.'))->color('gray'),
|
|
]),
|
|
])
|
|
->afterValidation(function () {
|
|
$import = $this->getImport();
|
|
$hasAccounts = $import?->accounts()->exists() ?? false;
|
|
|
|
if (! $hasAccounts) {
|
|
Notification::make()
|
|
->title(__('No accounts discovered'))
|
|
->body(__('Click "Discover Accounts" to continue.'))
|
|
->danger()
|
|
->send();
|
|
|
|
throw new Exception(__('No accounts discovered'));
|
|
}
|
|
|
|
$this->step1Complete = true;
|
|
$this->saveToSession();
|
|
});
|
|
}
|
|
|
|
protected function getSelectAccountsStep(): Step
|
|
{
|
|
return Step::make(__('Select Accounts'))
|
|
->id('accounts')
|
|
->icon('heroicon-o-users')
|
|
->description(__('Choose which DirectAdmin accounts to migrate'))
|
|
->schema([
|
|
Section::make(__('DirectAdmin Accounts'))
|
|
->description(fn (): string => $this->getAccountsStepDescription())
|
|
->icon('heroicon-o-user-group')
|
|
->headerActions([
|
|
Action::make('refreshAccounts')
|
|
->label(__('Refresh'))
|
|
->icon('heroicon-o-arrow-path')
|
|
->color('gray')
|
|
->action('refreshAccountsTable'),
|
|
Action::make('selectAll')
|
|
->label(__('Select All'))
|
|
->icon('heroicon-o-check')
|
|
->color('primary')
|
|
->action('selectAllAccounts')
|
|
->visible(fn (): bool => $this->getSelectedAccountsCount() < $this->getDiscoveredAccountsCount()),
|
|
Action::make('deselectAll')
|
|
->label(__('Deselect All'))
|
|
->icon('heroicon-o-x-mark')
|
|
->color('gray')
|
|
->action('deselectAllAccounts')
|
|
->visible(fn (): bool => $this->getSelectedAccountsCount() > 0),
|
|
])
|
|
->schema([
|
|
View::make('filament.admin.pages.directadmin-accounts-table'),
|
|
]),
|
|
])
|
|
->afterValidation(function () {
|
|
if ($this->getSelectedAccountsCount() === 0) {
|
|
Notification::make()
|
|
->title(__('No accounts selected'))
|
|
->body(__('Please select at least one account to migrate.'))
|
|
->danger()
|
|
->send();
|
|
|
|
throw new Exception(__('No accounts selected'));
|
|
}
|
|
|
|
$this->saveToSession();
|
|
});
|
|
}
|
|
|
|
protected function getConfigureStep(): Step
|
|
{
|
|
return Step::make(__('Configure'))
|
|
->id('configure')
|
|
->icon('heroicon-o-cog')
|
|
->description(__('Choose what to import and map accounts'))
|
|
->schema([
|
|
Section::make(__('What to Import'))
|
|
->description(__('Select which parts of each account to import.'))
|
|
->icon('heroicon-o-check-circle')
|
|
->schema([
|
|
Grid::make(['default' => 1, 'sm' => 2])->schema([
|
|
Checkbox::make('importFiles')
|
|
->label(__('Website Files'))
|
|
->helperText(__('Restore website files from the backup'))
|
|
->default(true),
|
|
Checkbox::make('importDatabases')
|
|
->label(__('Databases'))
|
|
->helperText(__('Restore MySQL databases and import dumps'))
|
|
->default(true),
|
|
Checkbox::make('importEmails')
|
|
->label(__('Email'))
|
|
->helperText(__('Create email domains and mailboxes (limited in Phase 1)'))
|
|
->default(true),
|
|
Checkbox::make('importSsl')
|
|
->label(__('SSL'))
|
|
->helperText(__('Install custom certificates or issue Let\'s Encrypt (Phase 3)'))
|
|
->default(true),
|
|
]),
|
|
]),
|
|
|
|
Section::make(__('Account Mappings'))
|
|
->description(fn (): string => __(':count account(s) selected', ['count' => $this->getSelectedAccountsCount()]))
|
|
->icon('heroicon-o-arrow-right')
|
|
->schema([
|
|
View::make('filament.admin.pages.directadmin-account-config-table'),
|
|
]),
|
|
])
|
|
->afterValidation(function (): void {
|
|
$import = $this->getImport();
|
|
if (! $import) {
|
|
throw new Exception(__('Import job not found'));
|
|
}
|
|
|
|
$import->update([
|
|
'import_options' => [
|
|
'files' => $this->importFiles,
|
|
'databases' => $this->importDatabases,
|
|
'emails' => $this->importEmails,
|
|
'ssl' => $this->importSsl,
|
|
],
|
|
]);
|
|
|
|
$this->saveToSession();
|
|
$this->dispatch('directadmin-config-updated');
|
|
});
|
|
}
|
|
|
|
protected function getMigrateStep(): Step
|
|
{
|
|
return Step::make(__('Migrate'))
|
|
->id('migrate')
|
|
->icon('heroicon-o-play')
|
|
->description(__('Run the migration and watch progress'))
|
|
->schema([
|
|
FormActions::make([
|
|
Action::make('startMigration')
|
|
->label(__('Start Migration'))
|
|
->icon('heroicon-o-play')
|
|
->color('success')
|
|
->requiresConfirmation()
|
|
->modalHeading(__('Start Migration'))
|
|
->modalDescription(__('This will migrate :count account(s). Continue?', ['count' => $this->getSelectedAccountsCount()]))
|
|
->action('startMigration'),
|
|
|
|
Action::make('newMigration')
|
|
->label(__('New Migration'))
|
|
->icon('heroicon-o-plus')
|
|
->color('primary')
|
|
->visible(fn (): bool => ($this->getImport()?->status ?? null) === 'completed')
|
|
->action('resetMigration'),
|
|
])->alignEnd(),
|
|
|
|
Section::make(__('Import Status'))
|
|
->icon('heroicon-o-queue-list')
|
|
->schema([
|
|
View::make('filament.admin.pages.directadmin-migration-status-table'),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public function discoverAccounts(): void
|
|
{
|
|
try {
|
|
$import = $this->upsertImportForDiscovery();
|
|
|
|
$backupFullPath = null;
|
|
$remotePassword = null;
|
|
|
|
if ($this->importMethod === 'backup_file') {
|
|
if (! $import->backup_path) {
|
|
throw new Exception(__('Please upload a DirectAdmin backup archive.'));
|
|
}
|
|
|
|
$backupFullPath = Storage::disk('local')->path($import->backup_path);
|
|
} else {
|
|
$remotePassword = $this->remotePassword;
|
|
|
|
if (($remotePassword === null || $remotePassword === '') && filled($import->remote_password)) {
|
|
$remotePassword = (string) $import->remote_password;
|
|
}
|
|
|
|
if (! $import->remote_host || ! $import->remote_port || ! $import->remote_user || ! $remotePassword) {
|
|
throw new Exception(__('Please enter DirectAdmin host, port, username and password.'));
|
|
}
|
|
}
|
|
|
|
$result = $this->getAgent()->importDiscover(
|
|
$import->id,
|
|
'directadmin',
|
|
$import->import_method,
|
|
$backupFullPath,
|
|
$import->remote_host,
|
|
$import->remote_port ? (int) $import->remote_port : null,
|
|
$import->remote_user,
|
|
$remotePassword,
|
|
);
|
|
|
|
if (! ($result['success'] ?? false)) {
|
|
throw new Exception((string) ($result['error'] ?? __('Discovery failed')));
|
|
}
|
|
|
|
$accounts = $result['accounts'] ?? [];
|
|
if (! is_array($accounts) || $accounts === []) {
|
|
throw new Exception(__('No accounts were discovered.'));
|
|
}
|
|
|
|
$import->accounts()->delete();
|
|
$createdIds = [];
|
|
|
|
foreach ($accounts as $account) {
|
|
if (! is_array($account)) {
|
|
continue;
|
|
}
|
|
|
|
$username = trim((string) ($account['username'] ?? ''));
|
|
if ($username === '') {
|
|
continue;
|
|
}
|
|
|
|
$record = ServerImportAccount::create([
|
|
'server_import_id' => $import->id,
|
|
'source_username' => $username,
|
|
'target_username' => $username,
|
|
'email' => (string) ($account['email'] ?? ''),
|
|
'main_domain' => (string) ($account['main_domain'] ?? ''),
|
|
'addon_domains' => $account['addon_domains'] ?? [],
|
|
'subdomains' => $account['subdomains'] ?? [],
|
|
'databases' => $account['databases'] ?? [],
|
|
'email_accounts' => $account['email_accounts'] ?? [],
|
|
'disk_usage' => (int) ($account['disk_usage'] ?? 0),
|
|
'status' => 'pending',
|
|
'progress' => 0,
|
|
'current_task' => null,
|
|
'import_log' => [],
|
|
'error' => null,
|
|
]);
|
|
|
|
$createdIds[] = $record->id;
|
|
}
|
|
|
|
if ($createdIds === []) {
|
|
throw new Exception(__('No valid accounts were discovered.'));
|
|
}
|
|
|
|
$import->update([
|
|
'discovered_accounts' => $accounts,
|
|
'selected_accounts' => [],
|
|
'status' => 'ready',
|
|
'progress' => 0,
|
|
'current_task' => null,
|
|
'errors' => [],
|
|
]);
|
|
|
|
$this->importId = $import->id;
|
|
$this->step1Complete = true;
|
|
$this->saveToSession();
|
|
|
|
$this->dispatch('directadmin-accounts-updated');
|
|
|
|
Notification::make()
|
|
->title(__('Accounts discovered'))
|
|
->body(__('Found :count account(s).', ['count' => count($createdIds)]))
|
|
->success()
|
|
->send();
|
|
} catch (Exception $e) {
|
|
Notification::make()
|
|
->title(__('Discovery failed'))
|
|
->body($e->getMessage())
|
|
->danger()
|
|
->send();
|
|
}
|
|
}
|
|
|
|
public function selectAllAccounts(): void
|
|
{
|
|
$import = $this->getImport();
|
|
if (! $import) {
|
|
return;
|
|
}
|
|
|
|
$ids = $import->accounts()->pluck('id')->all();
|
|
$import->update(['selected_accounts' => $ids]);
|
|
|
|
$this->dispatch('directadmin-selection-updated');
|
|
}
|
|
|
|
public function deselectAllAccounts(): void
|
|
{
|
|
$import = $this->getImport();
|
|
if (! $import) {
|
|
return;
|
|
}
|
|
|
|
$import->update(['selected_accounts' => []]);
|
|
|
|
$this->dispatch('directadmin-selection-updated');
|
|
}
|
|
|
|
public function refreshAccountsTable(): void
|
|
{
|
|
$this->dispatch('directadmin-accounts-updated');
|
|
$this->dispatch('directadmin-config-updated');
|
|
}
|
|
|
|
public function startMigration(): void
|
|
{
|
|
$import = $this->getImport();
|
|
if (! $import) {
|
|
Notification::make()
|
|
->title(__('Import job not found'))
|
|
->danger()
|
|
->send();
|
|
return;
|
|
}
|
|
|
|
$selected = $import->selected_accounts ?? [];
|
|
if (! is_array($selected) || $selected === []) {
|
|
Notification::make()
|
|
->title(__('No accounts selected'))
|
|
->body(__('Please select at least one account to migrate.'))
|
|
->danger()
|
|
->send();
|
|
return;
|
|
}
|
|
|
|
if ($import->import_method === 'remote_server') {
|
|
Notification::make()
|
|
->title(__('Remote DirectAdmin import is not available yet'))
|
|
->body(__('For now, please download a DirectAdmin backup archive and use the "Backup File" method.'))
|
|
->warning()
|
|
->send();
|
|
return;
|
|
}
|
|
|
|
$import->update([
|
|
'status' => 'importing',
|
|
'started_at' => now(),
|
|
]);
|
|
|
|
$result = $this->getAgent()->importStart($import->id);
|
|
|
|
if (! ($result['success'] ?? false)) {
|
|
Notification::make()
|
|
->title(__('Failed to start migration'))
|
|
->body((string) ($result['error'] ?? __('Unknown error')))
|
|
->danger()
|
|
->send();
|
|
return;
|
|
}
|
|
|
|
Notification::make()
|
|
->title(__('Migration started'))
|
|
->body(__('Import process has started in the background.'))
|
|
->success()
|
|
->send();
|
|
}
|
|
|
|
public function resetMigration(): void
|
|
{
|
|
if ($this->importId) {
|
|
ServerImport::whereKey($this->importId)->delete();
|
|
}
|
|
|
|
session()->forget('directadmin_migration.import_id');
|
|
|
|
$this->wizardStep = null;
|
|
$this->step1Complete = false;
|
|
$this->importId = null;
|
|
$this->name = null;
|
|
$this->importMethod = 'remote_server';
|
|
$this->remoteHost = null;
|
|
$this->remotePort = 2222;
|
|
$this->remoteUser = null;
|
|
$this->remotePassword = null;
|
|
$this->backupPath = null;
|
|
$this->importFiles = true;
|
|
$this->importDatabases = true;
|
|
$this->importEmails = true;
|
|
$this->importSsl = true;
|
|
}
|
|
|
|
protected function getAgent(): AgentClient
|
|
{
|
|
return $this->agent ??= new AgentClient;
|
|
}
|
|
|
|
protected function getImport(): ?ServerImport
|
|
{
|
|
if (! $this->importId) {
|
|
return null;
|
|
}
|
|
|
|
return ServerImport::with('accounts')->find($this->importId);
|
|
}
|
|
|
|
protected function upsertImportForDiscovery(): ServerImport
|
|
{
|
|
$name = trim((string) ($this->name ?: ''));
|
|
if ($name === '') {
|
|
$name = 'DirectAdmin Import ' . now()->format('Y-m-d H:i');
|
|
}
|
|
|
|
$attributes = [
|
|
'name' => $name,
|
|
'source_type' => 'directadmin',
|
|
'import_method' => $this->importMethod,
|
|
'import_options' => [
|
|
'files' => $this->importFiles,
|
|
'databases' => $this->importDatabases,
|
|
'emails' => $this->importEmails,
|
|
'ssl' => $this->importSsl,
|
|
],
|
|
'status' => 'discovering',
|
|
'progress' => 0,
|
|
'current_task' => null,
|
|
];
|
|
|
|
if ($this->importMethod === 'backup_file') {
|
|
$attributes['backup_path'] = $this->backupPath;
|
|
$attributes['remote_host'] = null;
|
|
$attributes['remote_port'] = null;
|
|
$attributes['remote_user'] = null;
|
|
} else {
|
|
$attributes['backup_path'] = null;
|
|
$attributes['remote_host'] = $this->remoteHost ? trim($this->remoteHost) : null;
|
|
$attributes['remote_port'] = $this->remotePort;
|
|
$attributes['remote_user'] = $this->remoteUser ? trim($this->remoteUser) : null;
|
|
|
|
if (filled($this->remotePassword)) {
|
|
$attributes['remote_password'] = $this->remotePassword;
|
|
}
|
|
}
|
|
|
|
$import = $this->importId ? ServerImport::find($this->importId) : null;
|
|
|
|
if ($import) {
|
|
$import->update($attributes);
|
|
} else {
|
|
$import = ServerImport::create($attributes);
|
|
$this->importId = $import->id;
|
|
}
|
|
|
|
$this->saveToSession();
|
|
|
|
return $import->fresh();
|
|
}
|
|
|
|
protected function getDiscoveredAccountsCount(): int
|
|
{
|
|
$import = $this->getImport();
|
|
|
|
return $import ? $import->accounts()->count() : 0;
|
|
}
|
|
|
|
protected function getSelectedAccountsCount(): int
|
|
{
|
|
$import = $this->getImport();
|
|
$selected = $import?->selected_accounts ?? [];
|
|
|
|
return is_array($selected) ? count($selected) : 0;
|
|
}
|
|
|
|
protected function getAccountsStepDescription(): string
|
|
{
|
|
$selected = $this->getSelectedAccountsCount();
|
|
$total = $this->getDiscoveredAccountsCount();
|
|
|
|
if ($total === 0) {
|
|
return __('No accounts discovered yet.');
|
|
}
|
|
|
|
if ($selected === 0) {
|
|
return __(':count accounts discovered', ['count' => $total]);
|
|
}
|
|
|
|
return __(':selected of :count accounts selected', ['selected' => $selected, 'count' => $total]);
|
|
}
|
|
|
|
protected function saveToSession(): void
|
|
{
|
|
if ($this->importId) {
|
|
session()->put('directadmin_migration.import_id', $this->importId);
|
|
}
|
|
|
|
session()->save();
|
|
}
|
|
|
|
protected function restoreFromSession(): void
|
|
{
|
|
$this->importId = session('directadmin_migration.import_id');
|
|
}
|
|
|
|
protected function restoreFromImport(): void
|
|
{
|
|
$import = $this->getImport();
|
|
if (! $import) {
|
|
return;
|
|
}
|
|
|
|
$this->name = $import->name;
|
|
$this->importMethod = (string) ($import->import_method ?? 'remote_server');
|
|
$this->backupPath = $import->backup_path;
|
|
$this->remoteHost = $import->remote_host;
|
|
$this->remotePort = (int) ($import->remote_port ?? 2222);
|
|
$this->remoteUser = $import->remote_user;
|
|
|
|
$options = $import->import_options ?? [];
|
|
if (is_array($options)) {
|
|
$this->importFiles = (bool) ($options['files'] ?? true);
|
|
$this->importDatabases = (bool) ($options['databases'] ?? true);
|
|
$this->importEmails = (bool) ($options['emails'] ?? true);
|
|
$this->importSsl = (bool) ($options['ssl'] ?? true);
|
|
}
|
|
|
|
$this->step1Complete = $import->accounts()->exists();
|
|
}
|
|
}
|