2021-05-30 13:26:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-30 13:26:43 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2021-05-31 00:17:42 +02:00
|
|
|
use App\Http\Requests\Import\ImportJsonRequest;
|
2021-05-30 13:26:43 +02:00
|
|
|
use App\Jobs\Company\CompanyExport;
|
2021-05-31 00:55:27 +02:00
|
|
|
use App\Jobs\Company\CompanyImport;
|
2021-05-30 13:26:43 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Http\Response;
|
2021-05-31 00:55:27 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Str;
|
2021-06-04 09:41:12 +02:00
|
|
|
use ZipArchive;
|
2021-05-30 13:26:43 +02:00
|
|
|
|
|
|
|
class ImportJsonController extends BaseController
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/import_json",
|
|
|
|
* operationId="getImportJson",
|
|
|
|
* tags={"import"},
|
|
|
|
* summary="Import data from the system",
|
|
|
|
* description="Import data from the system",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="success",
|
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
|
|
|
* @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"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*/
|
2021-06-03 07:47:09 +02:00
|
|
|
public function import(ImportJsonRequest $request)
|
2021-05-30 13:26:43 +02:00
|
|
|
{
|
|
|
|
|
2021-05-31 00:55:27 +02:00
|
|
|
$import_file = $request->file('files');
|
|
|
|
|
|
|
|
$contents = $this->unzipFile($import_file->getPathname());
|
|
|
|
|
|
|
|
$hash = Str::random(32);
|
2021-06-08 00:33:51 +02:00
|
|
|
|
|
|
|
nlog($hash);
|
2021-05-31 00:55:27 +02:00
|
|
|
|
|
|
|
Cache::put( $hash, base64_encode( $contents ), 3600 );
|
|
|
|
|
2021-06-08 14:29:39 +02:00
|
|
|
CompanyImport::dispatch(auth()->user()->getCompany(), auth()->user(), $hash, $request->except('files'))->delay(now()->addMinutes(1));
|
2021-05-30 13:26:43 +02:00
|
|
|
|
|
|
|
return response()->json(['message' => 'Processing'], 200);
|
|
|
|
|
|
|
|
}
|
2021-05-31 00:55:27 +02:00
|
|
|
|
|
|
|
private function unzipFile($file_contents)
|
|
|
|
{
|
|
|
|
$zip = new ZipArchive();
|
|
|
|
$archive = $zip->open($file_contents);
|
|
|
|
|
|
|
|
$filename = pathinfo($file_contents, PATHINFO_FILENAME);
|
|
|
|
$zip->extractTo(public_path("storage/backups/{$filename}"));
|
|
|
|
$zip->close();
|
|
|
|
$file_location = public_path("storage/backups/$filename/backup.json");
|
|
|
|
|
|
|
|
if (! file_exists($file_location))
|
2021-06-01 00:09:38 +02:00
|
|
|
throw new NonExistingMigrationFile('Backup file does not exist, or is corrupted.');
|
2021-05-31 00:55:27 +02:00
|
|
|
|
2021-06-04 12:07:45 +02:00
|
|
|
$data = file_get_contents($file_location);
|
2021-05-31 00:55:27 +02:00
|
|
|
|
|
|
|
unlink($file_contents);
|
|
|
|
unlink($file_location);
|
|
|
|
|
2021-06-01 15:08:32 +02:00
|
|
|
return $data;
|
2021-05-31 00:55:27 +02:00
|
|
|
}
|
2021-05-30 13:26:43 +02:00
|
|
|
}
|