1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Console/Commands/ImportMigrations.php

176 lines
5.0 KiB
PHP
Raw Normal View History

<?php
2020-09-07 12:18:56 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-07 12:18:56 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Console\Commands;
use App\DataMapper\CompanySettings;
2020-11-30 08:43:33 +01:00
use App\Exceptions\MigrationValidatorFailed;
use App\Exceptions\NonExistingMigrationFile;
use App\Exceptions\ProcessingMigrationArchiveFailed;
use App\Exceptions\ResourceDependencyMissing;
use App\Exceptions\ResourceNotAvailableForMigration;
use App\Jobs\Util\Import;
use App\Jobs\Util\StartMigration;
2020-11-30 08:43:33 +01:00
use App\Mail\MigrationFailed;
use App\Models\Account;
use App\Models\Company;
use App\Models\CompanyToken;
use App\Models\User;
2020-11-18 11:46:36 +01:00
use App\Utils\Traits\AppSetup;
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use DirectoryIterator;
use Faker\Factory;
use Faker\Generator;
use Illuminate\Console\Command;
2020-10-28 11:10:49 +01:00
use Illuminate\Support\Str;
2020-11-30 08:43:33 +01:00
use ZipArchive;
class ImportMigrations extends Command
{
use MakesHash;
2020-11-18 11:46:36 +01:00
use AppSetup;
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'migrations:import {--path=}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Massively import the migrations.';
/**
2020-10-28 11:10:49 +01:00
* @var Generator
*/
private $faker;
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
2020-10-28 11:10:49 +01:00
$this->faker = Factory::create();
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2020-11-18 11:46:36 +01:00
$this->buildCache();
2020-11-30 08:43:33 +01:00
$path = $this->option('path') ?? public_path('storage/migrations/import');
2021-02-03 00:59:58 +01:00
nlog(public_path('storage/migrations/import'));
2020-10-28 11:10:49 +01:00
$directory = new DirectoryIterator($path);
foreach ($directory as $file) {
if ($file->getExtension() === 'zip') {
2020-11-30 08:43:33 +01:00
$user = $this->getUser();
$company = $this->getUser()->companies()->first();
$this->info('Started processing: '.$file->getBasename().' at '.now());
2020-11-30 08:43:33 +01:00
$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);
2020-11-30 08:43:33 +01:00
$zip->extractTo(public_path("storage/migrations/{$filename}"));
$zip->close();
2020-11-30 08:43:33 +01:00
$import_file = public_path("storage/migrations/$filename/migration.json");
2020-11-30 08:43:33 +01:00
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()));
2020-11-30 08:43:33 +01:00
if (app()->environment() !== 'production') {
info($e->getMessage());
}
2020-11-30 08:43:33 +01:00
}
}
}
}
public function getUser(): User
{
$account = $this->getAccount();
$company = $this->getCompany($account);
2020-10-01 13:34:05 +02:00
$user = User::factory()->create([
'account_id' => $account->id,
2020-11-18 10:35:09 +01:00
'email' => Str::random(10) . "@example.com",
'confirmation_code' => $this->createDbHash(config('database.default')),
]);
2020-11-16 11:29:17 +01:00
CompanyToken::unguard();
$company_token = CompanyToken::create([
'user_id' => $user->id,
'company_id' => $company->id,
'account_id' => $account->id,
2020-11-16 05:40:52 +01:00
'name' => 'First token',
2020-10-28 11:10:49 +01:00
'token' => Str::random(64),
]);
2020-11-16 05:40:52 +01:00
$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
{
2020-10-01 12:49:47 +02:00
return Account::factory()->create();
}
public function getCompany(Account $account): Company
{
2020-10-02 00:19:42 +02:00
$company = Company::factory()->create([
'account_id' => $account->id,
2020-11-23 13:55:04 +01:00
'is_disabled' => true,
]);
if (! $account->default_company_id) {
$account->default_company_id = $company->id;
$account->save();
}
return $company;
}
}