2019-11-20 06:41:49 +01:00
|
|
|
<?php
|
2020-11-11 18:26:17 +01:00
|
|
|
|
2019-11-20 06:41:49 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-11-20 06:41:49 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-11-20 06:41:49 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Console\Commands\ImportMigrations;
|
2020-03-12 21:38:22 +01:00
|
|
|
use App\DataMapper\CompanySettings;
|
2020-09-14 07:14:37 +02:00
|
|
|
use App\Jobs\Mail\MailRouter;
|
2020-01-23 21:35:00 +01:00
|
|
|
use App\Jobs\Util\StartMigration;
|
2020-04-14 00:20:54 +02:00
|
|
|
use App\Mail\ExistingMigration;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CompanyToken;
|
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
2019-11-20 06:41:49 +01:00
|
|
|
use Illuminate\Http\Request;
|
2020-09-06 11:38:10 +02:00
|
|
|
use Illuminate\Support\Str;
|
2019-11-20 06:41:49 +01:00
|
|
|
|
|
|
|
class MigrationController extends BaseController
|
|
|
|
{
|
|
|
|
use DispatchesJobs;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Purge Company.
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2019-11-20 06:41:49 +01:00
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/migration/purge/{company}",
|
|
|
|
* operationId="postPurgeCompany",
|
|
|
|
* tags={"migration"},
|
|
|
|
* summary="Attempts to purge a company record and all its child records",
|
|
|
|
* description="Attempts to purge a company record and all its child records",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="company",
|
|
|
|
* in="path",
|
|
|
|
* description="The Company Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Success",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2019-11-20 06:41:49 +01:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-30 22:59:12 +01:00
|
|
|
* response="default",
|
2019-11-20 06:41:49 +01:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Company $company
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
* @throws \Exception
|
2019-11-20 06:41:49 +01:00
|
|
|
*/
|
|
|
|
public function purgeCompany(Company $company)
|
|
|
|
{
|
2020-08-13 23:15:15 +02:00
|
|
|
$account = $company->account;
|
|
|
|
$company_id = $company->id;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$company->delete();
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-08-13 23:15:15 +02:00
|
|
|
/*Update the new default company if necessary*/
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($company_id == $account->default_company_id && $account->companies->count() >= 1) {
|
2020-08-13 23:15:15 +02:00
|
|
|
$new_default_company = $account->companies->first();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($new_default_company) {
|
2020-08-13 23:15:15 +02:00
|
|
|
$account->default_company_id = $new_default_company->id;
|
|
|
|
$account->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-03 23:44:42 +01:00
|
|
|
return response()->json(['message' => 'Company purged'], 200);
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|
|
|
|
|
2020-11-22 22:25:29 +01:00
|
|
|
private function purgeCompanyWithForceFlag(Company $company)
|
|
|
|
{
|
|
|
|
$account = $company->account;
|
|
|
|
$company_id = $company->id;
|
|
|
|
|
|
|
|
$company->delete();
|
|
|
|
|
|
|
|
/*Update the new default company if necessary*/
|
|
|
|
if ($company_id == $account->default_company_id && $account->companies->count() >= 1) {
|
|
|
|
$new_default_company = $account->companies->first();
|
|
|
|
|
|
|
|
if ($new_default_company) {
|
|
|
|
$account->default_company_id = $new_default_company->id;
|
|
|
|
$account->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-23 02:46:16 +01:00
|
|
|
|
2019-11-20 06:41:49 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Purge Company but save settings.
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2019-11-20 06:41:49 +01:00
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/migration/purge_save_settings/{company}",
|
|
|
|
* operationId="postPurgeCompanySaveSettings",
|
|
|
|
* tags={"migration"},
|
|
|
|
* summary="Attempts to purge a companies child records but save the company record and its settings",
|
|
|
|
* description="Attempts to purge a companies child records but save the company record and its settings",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(
|
|
|
|
* name="company",
|
|
|
|
* in="path",
|
|
|
|
* description="The Company Hashed ID",
|
|
|
|
* example="D2J234DFA",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="string",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Success",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2019-11-20 06:41:49 +01:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-30 22:59:12 +01:00
|
|
|
* response="default",
|
2019-11-20 06:41:49 +01:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param Company $company
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2019-11-20 06:41:49 +01:00
|
|
|
*/
|
2020-08-14 02:40:59 +02:00
|
|
|
public function purgeCompanySaveSettings(Request $request, Company $company)
|
2019-11-20 06:41:49 +01:00
|
|
|
{
|
2020-08-24 00:20:57 +02:00
|
|
|
$company->clients()->forceDelete();
|
|
|
|
$company->products()->forceDelete();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-11-20 21:55:16 +01:00
|
|
|
$company->save();
|
2019-11-20 06:41:49 +01:00
|
|
|
|
2020-03-03 23:44:42 +01:00
|
|
|
return response()->json(['message' => 'Settings preserved'], 200);
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|
2020-01-23 21:35:00 +01:00
|
|
|
|
2020-01-27 21:56:48 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Start the migration from V1.
|
2020-01-27 21:56:48 +01:00
|
|
|
*
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/migration/start",
|
|
|
|
* operationId="postStartMigration",
|
|
|
|
* tags={"migration"},
|
|
|
|
* summary="Starts the migration from previous version of Invoice Ninja",
|
|
|
|
* description="Starts the migration from previous version of Invoice Ninja",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
2020-03-03 23:44:42 +01:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Password"),
|
2020-01-27 21:56:48 +01:00
|
|
|
* @OA\Parameter(
|
|
|
|
* name="migration",
|
2020-07-30 05:27:00 +02:00
|
|
|
* in="query",
|
2020-01-27 21:56:48 +01:00
|
|
|
* description="The migraton file",
|
|
|
|
* example="migration.zip",
|
|
|
|
* required=true,
|
|
|
|
* @OA\Schema(
|
2020-02-12 10:18:56 +01:00
|
|
|
* type="object",
|
2020-01-27 21:56:48 +01:00
|
|
|
* format="file",
|
|
|
|
* ),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Success",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2020-01-27 21:56:48 +01:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param Company $company
|
|
|
|
* @return \Illuminate\Http\JsonResponse|void
|
2020-01-27 21:56:48 +01:00
|
|
|
*/
|
2020-11-11 18:26:17 +01:00
|
|
|
public function startMigration(Request $request)
|
2020-01-23 21:35:00 +01:00
|
|
|
{
|
2020-11-11 18:26:17 +01:00
|
|
|
$companies = json_decode($request->companies);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-04-29 15:24:52 +02:00
|
|
|
if (app()->environment() === 'local') {
|
2020-11-11 18:26:17 +01:00
|
|
|
info($request->all());
|
2020-04-29 15:24:52 +02:00
|
|
|
}
|
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
foreach ($companies as $company) {
|
2020-11-23 02:46:16 +01:00
|
|
|
$is_valid = $request->file($company->company_index)->isValid();
|
2020-04-14 00:20:54 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
if (!$is_valid) {
|
|
|
|
// We might want to send user something's wrong with migration or nope?
|
|
|
|
continue;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-14 00:20:54 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
$user = auth()->user();
|
2020-04-30 00:01:44 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
// Look for possible existing company (based on company keys).
|
2020-11-23 02:46:16 +01:00
|
|
|
$existing_company = Company::whereRaw('BINARY `company_key` = ?', [$company->company_key])->first();
|
2020-04-30 00:01:44 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
$checks = [
|
2020-11-23 02:46:16 +01:00
|
|
|
'existing_company' => $existing_company ? (bool)1 : false,
|
2020-11-11 18:26:17 +01:00
|
|
|
'force' => property_exists($company, 'force') ? (bool) $company->force : false,
|
|
|
|
];
|
2020-04-30 00:01:44 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
// If there's existing company and ** no ** force is provided - skip migration.
|
|
|
|
if ($checks['existing_company'] == true && $checks['force'] == false) {
|
|
|
|
info('Migrating: Existing company without force. (CASE_01)');
|
2020-04-30 00:01:44 +02:00
|
|
|
|
2020-11-23 04:51:49 +01:00
|
|
|
MailRouter::dispatch(new ExistingMigration(), $existing_company, $user);
|
2020-03-12 21:38:22 +01:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
return response()->json([
|
|
|
|
'_id' => Str::uuid(),
|
|
|
|
'method' => config('queue.default'),
|
|
|
|
'started_at' => now(),
|
|
|
|
], 200);
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-01-27 21:56:48 +01:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
// If there's existing company and force ** is provided ** - purge the company and migrate again.
|
|
|
|
if ($checks['existing_company'] == true && $checks['force'] == true) {
|
2020-11-23 02:46:16 +01:00
|
|
|
info("purging the existing company here");
|
2020-11-22 22:25:29 +01:00
|
|
|
$this->purgeCompanyWithForceFlag($existing_company);
|
2020-03-12 21:38:22 +01:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
$account = auth()->user()->account;
|
|
|
|
$fresh_company = (new ImportMigrations())->getCompany($account);
|
|
|
|
$fresh_company->is_disabled = true;
|
|
|
|
$fresh_company->save();
|
2020-04-14 00:20:54 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
$account->default_company_id = $fresh_company->id;
|
|
|
|
$account->save();
|
|
|
|
|
|
|
|
$fresh_company_token = new CompanyToken();
|
|
|
|
$fresh_company_token->user_id = $user->id;
|
|
|
|
$fresh_company_token->company_id = $fresh_company->id;
|
|
|
|
$fresh_company_token->account_id = $account->id;
|
|
|
|
$fresh_company_token->name = $request->token_name ?? Str::random(12);
|
|
|
|
$fresh_company_token->token = $request->token ?? Str::random(64);
|
|
|
|
$fresh_company_token->is_system = true;
|
|
|
|
$fresh_company_token->save();
|
|
|
|
|
|
|
|
$user->companies()->attach($fresh_company->id, [
|
|
|
|
'account_id' => $account->id,
|
|
|
|
'is_owner' => 1,
|
|
|
|
'is_admin' => 1,
|
|
|
|
'is_locked' => 0,
|
|
|
|
'notifications' => CompanySettings::notificationDefaults(),
|
|
|
|
'permissions' => '',
|
|
|
|
'settings' => null,
|
|
|
|
]);
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-14 00:20:54 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
// If there's no existing company migrate just normally.
|
|
|
|
if ($checks['existing_company'] == false) {
|
|
|
|
$account = auth()->user()->account;
|
|
|
|
$fresh_company = (new ImportMigrations())->getCompany($account);
|
|
|
|
|
|
|
|
$fresh_company->is_disabled = true;
|
|
|
|
$fresh_company->save();
|
|
|
|
|
|
|
|
$fresh_company_token = new CompanyToken();
|
|
|
|
$fresh_company_token->user_id = $user->id;
|
|
|
|
$fresh_company_token->company_id = $fresh_company->id;
|
|
|
|
$fresh_company_token->account_id = $account->id;
|
|
|
|
$fresh_company_token->name = $request->token_name ?? Str::random(12);
|
|
|
|
$fresh_company_token->token = $request->token ?? Str::random(64);
|
|
|
|
$fresh_company_token->is_system = true;
|
|
|
|
|
|
|
|
$fresh_company_token->save();
|
|
|
|
|
|
|
|
$user->companies()->attach($fresh_company->id, [
|
|
|
|
'account_id' => $account->id,
|
|
|
|
'is_owner' => 1,
|
|
|
|
'is_admin' => 1,
|
|
|
|
'is_locked' => 0,
|
|
|
|
'notifications' => CompanySettings::notificationDefaults(),
|
|
|
|
'permissions' => '',
|
|
|
|
'settings' => null,
|
|
|
|
]);
|
|
|
|
}
|
2020-04-30 00:01:44 +02:00
|
|
|
|
2020-11-23 02:46:16 +01:00
|
|
|
$migration_file = $request->file($company->company_index)
|
2020-11-11 18:26:17 +01:00
|
|
|
->storeAs(
|
|
|
|
'migrations',
|
2020-11-29 22:28:12 +01:00
|
|
|
$request->file($company->company_index)->getClientOriginalName(),
|
2020-11-29 23:58:31 +01:00
|
|
|
'public'
|
2020-11-11 18:26:17 +01:00
|
|
|
);
|
2020-04-14 00:20:54 +02:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
if (app()->environment() == 'testing') {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-03 23:44:42 +01:00
|
|
|
|
2020-11-11 18:26:17 +01:00
|
|
|
try {
|
2020-11-29 22:28:12 +01:00
|
|
|
// StartMigration::dispatch(base_path("storage/app/public/$migration_file"), $user, $fresh_company)->delay(now()->addSeconds(5));
|
|
|
|
info($migration_file);
|
|
|
|
StartMigration::dispatch($migration_file, $user, $fresh_company);
|
2020-11-11 18:26:17 +01:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
info($e->getMessage());
|
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-03 23:44:42 +01:00
|
|
|
return response()->json([
|
2020-03-05 21:30:32 +01:00
|
|
|
'_id' => Str::uuid(),
|
2020-03-03 23:44:42 +01:00
|
|
|
'method' => config('queue.default'),
|
|
|
|
'started_at' => now(),
|
|
|
|
], 200);
|
2020-01-23 21:35:00 +01:00
|
|
|
}
|
2019-11-20 06:41:49 +01:00
|
|
|
}
|