2021-05-13 08:16:39 +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-13 08:16:39 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-13 08:16:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Http\Requests\Export\StoreExportRequest;
|
2023-07-07 06:56:43 +02:00
|
|
|
use App\Jobs\Company\CompanyExport;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Http\Response;
|
2023-07-07 06:56:43 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2023-10-26 04:57:44 +02:00
|
|
|
use Illuminate\Support\Str;
|
2021-05-13 08:16:39 +02:00
|
|
|
|
|
|
|
class ExportController extends BaseController
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/export",
|
|
|
|
* operationId="getExport",
|
|
|
|
* tags={"export"},
|
|
|
|
* summary="Export data from the system",
|
|
|
|
* description="Export 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"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function index(StoreExportRequest $request)
|
|
|
|
{
|
2023-11-19 23:04:11 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2023-07-07 06:56:43 +02:00
|
|
|
$hash = Str::uuid();
|
|
|
|
$url = \Illuminate\Support\Facades\URL::temporarySignedRoute('protected_download', now()->addHour(), ['hash' => $hash]);
|
|
|
|
Cache::put($hash, $url, now()->addHour());
|
|
|
|
|
2023-11-19 23:04:11 +01:00
|
|
|
CompanyExport::dispatch($user->getCompany(), $user, $hash);
|
2021-05-13 08:16:39 +02:00
|
|
|
|
2023-07-07 06:56:43 +02:00
|
|
|
return response()->json(['message' => 'Processing', 'url' => $url], 200);
|
2021-05-13 08:16:39 +02:00
|
|
|
}
|
|
|
|
}
|