faker = Factory::create(); parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { $this->buildCache(); $path = $this->option('path') ?? public_path('storage/migrations/import'); nlog(public_path('storage/migrations/import')); $directory = new DirectoryIterator($path); foreach ($directory as $file) { if ($file->getExtension() === 'zip') { $user = $this->getUser(); $company = $this->getUser()->companies()->first(); $this->info('Started processing: '.$file->getBasename().' at '.now()); $zip = new ZipArchive(); $archive = $zip->open($file->getRealPath()); try { if (! $archive) { throw new ProcessingMigrationArchiveFailed('Processing migration archive failed. Migration file is possibly corrupted.'); } $filename = pathinfo($file->getRealPath(), PATHINFO_FILENAME); $zip->extractTo(public_path("storage/migrations/{$filename}")); $zip->close(); $import_file = public_path("storage/migrations/$filename/migration.json"); Import::dispatch($import_file, $this->getUser()->companies()->first(), $this->getUser()); // StartMigration::dispatch($file->getRealPath(), $this->getUser(), $this->getUser()->companies()->first()); } catch (NonExistingMigrationFile | ProcessingMigrationArchiveFailed | ResourceNotAvailableForMigration | MigrationValidatorFailed | ResourceDependencyMissing $e) { \Mail::to($this->user)->send(new MigrationFailed($e, $e->getMessage())); if (app()->environment() !== 'production') { info($e->getMessage()); } } } } } public function getUser(): User { $account = $this->getAccount(); $company = $this->getCompany($account); $user = User::factory()->create([ 'account_id' => $account->id, 'email' => Str::random(10) . "@example.com", 'confirmation_code' => $this->createDbHash(config('database.default')), ]); CompanyToken::unguard(); $company_token = CompanyToken::create([ 'user_id' => $user->id, 'company_id' => $company->id, 'account_id' => $account->id, 'name' => 'First token', 'token' => Str::random(64), ]); $user->companies()->attach($company->id, [ 'account_id' => $account->id, 'is_owner' => 1, 'is_admin' => 1, 'is_locked' => 0, 'notifications' => CompanySettings::notificationDefaults(), 'permissions' => '', 'settings' => null, ]); return $user; } public function getAccount(): Account { return Account::factory()->create(); } public function getCompany(Account $account): Company { $company = Company::factory()->create([ 'account_id' => $account->id, 'is_disabled' => true, ]); if (! $account->default_company_id) { $account->default_company_id = $company->id; $account->save(); } return $company; } }