filepath = $filepath; $this->user = $user; $this->company = $company; } /** * Execute the job. * * @return bool */ public function handle() { nlog("Inside Migration Job"); set_time_limit(0); MultiDB::setDb($this->company->db); auth()->login($this->user, false); auth()->user()->setCompany($this->company); $this->company->is_disabled = true; $this->company->save(); $zip = new ZipArchive(); $archive = $zip->open(public_path("storage/{$this->filepath}")); $filename = pathinfo($this->filepath, PATHINFO_FILENAME); // if($this->company->id == $this->company->account->default_company_id) // { // $new_default_company = $this->company->account->companies->first(); // if ($new_default_company) { // $this->company->account->default_company_id = $new_default_company->id; // $this->company->account->save(); // } // } $update_product_flag = $this->company->update_products; $this->company->update_products = false; $this->company->save(); try { if (! $archive) { throw new ProcessingMigrationArchiveFailed('Processing migration archive failed. Migration file is possibly corrupted.'); } $zip->extractTo(public_path("storage/migrations/{$filename}")); $zip->close(); if (app()->environment() == 'testing') { return true; } $file = public_path("storage/migrations/$filename/migration.json"); if (! file_exists($file)) { throw new NonExistingMigrationFile('Migration file does not exist, or it is corrupted.'); } Import::dispatchNow($file, $this->company, $this->user); Storage::deleteDirectory(public_path("storage/migrations/{$filename}")); // $this->company->account->default_company_id = $this->company->id; // $this->company->account->save(); $this->company->update_products = $update_product_flag; $this->company->save(); } catch (NonExistingMigrationFile | ProcessingMigrationArchiveFailed | ResourceNotAvailableForMigration | MigrationValidatorFailed | ResourceDependencyMissing | \Exception $e) { $this->company->update_products = $update_product_flag; $this->company->save(); Mail::to($this->user)->send(new MigrationFailed($e, $e->getMessage())); if (app()->environment() !== 'production') { info($e->getMessage()); } } //always make sure we unset the migration as running return true; } public function failed($exception = null) { info(print_r($exception->getMessage(), 1)); } }