2020-12-12 11:01:53 +01: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)
|
2020-12-12 11:01:53 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-12-12 11:01:53 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-12-14 23:59:41 +01:00
|
|
|
use App\Http\Requests\Import\ImportRequest;
|
2020-12-12 11:01:53 +01:00
|
|
|
use App\Http\Requests\Import\PreImportRequest;
|
2022-02-17 03:27:21 +01:00
|
|
|
use App\Jobs\Import\CSVIngest;
|
2021-02-13 01:20:15 +01:00
|
|
|
use Illuminate\Http\UploadedFile;
|
2020-12-12 11:01:53 +01:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Str;
|
2020-12-14 05:59:15 +01:00
|
|
|
use League\Csv\Reader;
|
|
|
|
use League\Csv\Statement;
|
2020-12-12 11:01:53 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
class ImportController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
|
|
|
* @param PreImportRequest $request
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/preimport",
|
|
|
|
* operationId="preimport",
|
|
|
|
* tags={"imports"},
|
|
|
|
* summary="Pre Import checks - returns a reference to the job and the headers of the CSV",
|
|
|
|
* description="Pre Import checks - returns a reference to the job and the headers of the CSV",
|
2023-02-10 10:21:10 +01:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-API-TOKEN"),
|
2022-06-21 11:57:17 +02:00
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\RequestBody(
|
|
|
|
* description="The CSV file",
|
|
|
|
* required=true,
|
|
|
|
* @OA\MediaType(
|
|
|
|
* mediaType="multipart/form-data",
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="string",
|
|
|
|
* format="binary"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Returns a reference to the file",
|
|
|
|
* @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 preimport(PreImportRequest $request)
|
|
|
|
{
|
|
|
|
// Create a reference
|
|
|
|
$hash = Str::random(32);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'hash' => $hash,
|
|
|
|
'mappings' => [],
|
|
|
|
];
|
|
|
|
/** @var UploadedFile $file */
|
|
|
|
foreach ($request->files->get('files') as $entityType => $file) {
|
|
|
|
$contents = file_get_contents($file->getPathname());
|
2023-07-22 08:00:57 +02:00
|
|
|
|
|
|
|
$contents = $this->convertEncoding($contents);
|
2022-06-21 11:57:17 +02:00
|
|
|
|
|
|
|
// Store the csv in cache with an expiry of 10 minutes
|
|
|
|
Cache::put($hash.'-'.$entityType, base64_encode($contents), 600);
|
2023-04-19 07:21:50 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
// Parse CSV
|
|
|
|
$csv_array = $this->getCsvData($contents);
|
|
|
|
|
|
|
|
$class_map = $this->getEntityMap($entityType);
|
|
|
|
|
|
|
|
$data['mappings'][$entityType] = [
|
|
|
|
'available' => $class_map::importable(),
|
|
|
|
'headers' => array_slice($csv_array, 0, 2),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json($data);
|
|
|
|
}
|
|
|
|
|
2023-07-22 08:00:57 +02:00
|
|
|
private function convertEncoding($data)
|
|
|
|
{
|
|
|
|
|
|
|
|
$enc = mb_detect_encoding($data, mb_list_encodings(), true);
|
|
|
|
|
|
|
|
if($enc !== false) {
|
|
|
|
$data = mb_convert_encoding($data, "UTF-8", $enc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
public function import(ImportRequest $request)
|
|
|
|
{
|
|
|
|
$data = $request->all();
|
2022-07-31 11:11:32 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (empty($data['hash'])) {
|
|
|
|
// Create a reference
|
|
|
|
$data['hash'] = $hash = Str::random(32);
|
|
|
|
|
|
|
|
/** @var UploadedFile $file */
|
|
|
|
foreach ($request->files->get('files') as $entityType => $file) {
|
|
|
|
$contents = file_get_contents($file->getPathname());
|
|
|
|
// Store the csv in cache with an expiry of 10 minutes
|
|
|
|
Cache::put($hash.'-'.$entityType, base64_encode($contents), 600);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($data['files']);
|
|
|
|
CSVIngest::dispatch($data, auth()->user()->company());
|
|
|
|
|
|
|
|
return response()->json(['message' => ctrans('texts.import_started')], 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getEntityMap($entity_type)
|
|
|
|
{
|
2022-11-02 21:54:34 +01:00
|
|
|
return sprintf('App\\Import\\Definitions\%sMap', ucfirst(Str::camel($entity_type)));
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getCsvData($csvfile)
|
|
|
|
{
|
|
|
|
if (! ini_get('auto_detect_line_endings')) {
|
|
|
|
ini_set('auto_detect_line_endings', '1');
|
2020-12-12 11:01:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$csv = Reader::createFromString($csvfile);
|
2022-11-30 00:52:27 +01:00
|
|
|
$csvdelimiter = self::detectDelimiter($csvfile);
|
|
|
|
$csv->setDelimiter($csvdelimiter);
|
2020-12-12 11:01:53 +01:00
|
|
|
$stmt = new Statement();
|
|
|
|
$data = iterator_to_array($stmt->process($csv));
|
|
|
|
|
|
|
|
if (count($data) > 0) {
|
|
|
|
$headers = $data[0];
|
|
|
|
|
|
|
|
// Remove Invoice Ninja headers
|
|
|
|
if (count($headers) && count($data) > 4) {
|
|
|
|
$firstCell = $headers[0];
|
2020-12-18 01:31:27 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (strstr($firstCell, (string) config('ninja.app_name'))) {
|
|
|
|
array_shift($data); // Invoice Ninja...
|
|
|
|
array_shift($data); // <blank line>
|
|
|
|
array_shift($data); // Entity Type Header
|
|
|
|
}
|
2020-12-12 11:01:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
2022-11-30 00:52:27 +01:00
|
|
|
|
2023-07-26 06:44:39 +02:00
|
|
|
/**
|
|
|
|
* Returns the best delimiter
|
|
|
|
*
|
|
|
|
* @param string $csvfile
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function detectDelimiter($csvfile): string
|
2022-11-30 00:52:27 +01:00
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
$delimiters = [',', '.', ';'];
|
2023-01-11 23:20:24 +01:00
|
|
|
$bestDelimiter = ' ';
|
2022-11-30 00:52:27 +01:00
|
|
|
$count = 0;
|
2023-07-04 01:07:31 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
foreach ($delimiters as $delimiter) {
|
2023-07-26 06:44:39 +02:00
|
|
|
|
2023-07-04 00:37:09 +02:00
|
|
|
if (substr_count(strstr($csvfile, "\n", true), $delimiter) >= $count) {
|
2023-07-26 06:44:39 +02:00
|
|
|
$count = substr_count(strstr($csvfile, "\n", true), $delimiter);
|
|
|
|
$bestDelimiter = $delimiter;
|
2022-11-30 00:52:27 +01:00
|
|
|
}
|
2023-07-04 01:07:31 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-07-26 06:44:39 +02:00
|
|
|
|
2022-11-30 00:52:27 +01:00
|
|
|
return $bestDelimiter;
|
|
|
|
}
|
2020-12-12 11:01:53 +01:00
|
|
|
}
|