1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 23:52:33 +01:00
invoiceninja/app/Services/EDocument/Imports/ParseEDocument.php

79 lines
2.5 KiB
PHP
Raw Normal View History

2024-06-22 15:02:53 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\EDocument\Imports;
use App\Models\Expense;
use App\Services\AbstractService;
use Exception;
2024-06-22 18:52:25 +02:00
use Illuminate\Http\UploadedFile;
2024-06-22 15:02:53 +02:00
class ParseEDocument extends AbstractService
{
/**
* @throws Exception
*/
2024-06-22 18:52:25 +02:00
public function __construct(private UploadedFile $file)
2024-06-22 15:02:53 +02:00
{
}
/**
* Execute the service.
2024-06-22 18:52:25 +02:00
* the service will parse the file with all available libraries of the system and will return an expense, when possible
2024-06-22 15:02:53 +02:00
*
* @return Expense
* @throws \Exception
*/
public function run(): Expense
{
2024-06-22 18:52:25 +02:00
$expense = null;
// try to parse via Zugferd lib
$zugferd_exception = null;
try {
2024-06-23 09:36:54 +02:00
switch (true) {
case $this->file->getExtension() == 'pdf':
case $this->file->getExtension() == 'xml' && stristr($this->file->get(), "urn:cen.eu:en16931:2017"):
case $this->file->getExtension() == 'xml' && stristr($this->file->get(), "urn:cen.eu:en16931:2017#compliant#urn:xeinkauf.de:kosit:xrechnung_3.0"):
case $this->file->getExtension() == 'xml' && stristr($this->file->get(), "urn:cen.eu:en16931:2017#compliant#urn:xeinkauf.de:kosit:xrechnung_2.1"):
case $this->file->getExtension() == 'xml' && stristr($this->file->get(), "urn:cen.eu:en16931:2017#compliant#urn:xeinkauf.de:kosit:xrechnung_2.0"):
$expense = (new ZugferdEDocument($this->file))->run();
}
2024-06-22 18:52:25 +02:00
} catch (Exception $e) {
$zugferd_exception = $e;
}
// try to parse via mindee lib
$mindee_exception = null;
try {
$expense = (new MindeeEDocument($this->file))->run();
} catch (Exception $e) {
// ignore not available exceptions
$mindee_exception = $e;
2024-06-22 15:02:53 +02:00
}
2024-06-22 18:52:25 +02:00
// return expense, when available and supress any errors occured before
if ($expense)
return $expense;
// log exceptions and throw error
if ($zugferd_exception)
nlog("Zugferd Exception: " . $zugferd_exception->getMessage());
if ($mindee_exception)
nlog("Mindee Exception: " . $zugferd_exception->getMessage());
throw new Exception("File type not supported or issue while parsing");
2024-06-22 15:02:53 +02:00
}
}