2021-05-30 13:26:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-05-30 13:26:43 +02:00
|
|
|
*
|
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-31 00:55:27 +02:00
|
|
|
use App\Jobs\Company\CompanyImport;
|
2021-06-28 08:02:49 +02:00
|
|
|
use App\Utils\Ninja;
|
2021-05-30 13:26:43 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
|
|
|
|
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-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
|
|
|
{
|
2023-11-02 23:26:46 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2021-06-29 00:42:59 +02:00
|
|
|
$file_location = $request->file('files')
|
|
|
|
->storeAs(
|
|
|
|
'migrations',
|
2021-08-30 07:35:37 +02:00
|
|
|
$request->file('files')->getClientOriginalName(),
|
|
|
|
config('filesystems.default'),
|
2021-06-29 00:42:59 +02:00
|
|
|
);
|
2021-05-31 00:55:27 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2023-11-02 23:26:46 +01:00
|
|
|
CompanyImport::dispatch($user->company(), $user, $file_location, $request->except('files'))->onQueue('migration');
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2023-11-02 23:26:46 +01:00
|
|
|
CompanyImport::dispatch($user->company(), $user, $file_location, $request->except('files'));
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-05-30 13:26:43 +02:00
|
|
|
|
|
|
|
return response()->json(['message' => 'Processing'], 200);
|
|
|
|
}
|
|
|
|
}
|