1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Import/Providers/Csv.php

251 lines
6.9 KiB
PHP
Raw Normal View History

2022-02-01 07:14:27 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2022-02-01 07:14:27 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2022-02-03 08:53:39 +01:00
2022-02-01 07:14:27 +01:00
namespace App\Import\Providers;
use App\Factory\ClientFactory;
2022-02-03 08:53:39 +01:00
use App\Factory\ExpenseFactory;
2022-02-01 10:04:03 +01:00
use App\Factory\InvoiceFactory;
2022-02-03 01:45:03 +01:00
use App\Factory\PaymentFactory;
2022-02-01 10:04:03 +01:00
use App\Factory\ProductFactory;
2022-02-03 07:38:23 +01:00
use App\Factory\VendorFactory;
2022-02-01 07:14:27 +01:00
use App\Http\Requests\Client\StoreClientRequest;
2022-02-03 08:53:39 +01:00
use App\Http\Requests\Expense\StoreExpenseRequest;
2022-02-01 10:04:03 +01:00
use App\Http\Requests\Invoice\StoreInvoiceRequest;
2022-02-03 01:45:03 +01:00
use App\Http\Requests\Payment\StorePaymentRequest;
2022-02-01 10:04:03 +01:00
use App\Http\Requests\Product\StoreProductRequest;
2022-02-03 07:38:23 +01:00
use App\Http\Requests\Vendor\StoreVendorRequest;
2022-02-01 07:14:27 +01:00
use App\Import\ImportException;
use App\Import\Providers\BaseImport;
use App\Import\Providers\ImportInterface;
use App\Import\Transformer\Csv\ClientTransformer;
2022-02-03 08:53:39 +01:00
use App\Import\Transformer\Csv\ExpenseTransformer;
2022-02-02 05:56:37 +01:00
use App\Import\Transformer\Csv\InvoiceTransformer;
2022-02-03 01:45:03 +01:00
use App\Import\Transformer\Csv\PaymentTransformer;
2022-02-01 10:04:03 +01:00
use App\Import\Transformer\Csv\ProductTransformer;
2022-02-03 07:38:23 +01:00
use App\Import\Transformer\Csv\VendorTransformer;
2022-02-01 07:14:27 +01:00
use App\Repositories\ClientRepository;
2022-02-03 08:53:39 +01:00
use App\Repositories\ExpenseRepository;
2022-02-01 10:04:03 +01:00
use App\Repositories\InvoiceRepository;
2022-02-03 01:45:03 +01:00
use App\Repositories\PaymentRepository;
2022-02-01 10:04:03 +01:00
use App\Repositories\ProductRepository;
2022-02-03 07:38:23 +01:00
use App\Repositories\VendorRepository;
2022-02-01 07:14:27 +01:00
use Illuminate\Support\Facades\Validator;
use Symfony\Component\HttpFoundation\ParameterBag;
class Csv extends BaseImport implements ImportInterface
{
2022-05-07 09:10:23 +02:00
2022-02-01 10:04:03 +01:00
public array $entity_count = [];
2022-02-03 00:14:54 +01:00
public function import(string $entity)
{
if (
in_array($entity, [
'client',
'product',
'invoice',
'payment',
'vendor',
'expense',
])
) {
2022-02-01 10:04:03 +01:00
$this->{$entity}();
2022-02-03 00:14:54 +01:00
}
2022-02-01 10:04:03 +01:00
//collate any errors
2022-02-09 22:53:48 +01:00
$this->finalizeImport();
2022-02-01 07:14:27 +01:00
}
2022-02-03 00:14:54 +01:00
2022-02-09 22:53:48 +01:00
public function client()
2022-02-01 07:14:27 +01:00
{
$entity_type = 'client';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-01 10:04:03 +01:00
2022-02-03 00:14:54 +01:00
if (empty($data)) {
2022-02-01 10:04:03 +01:00
$this->entity_count['clients'] = 0;
2022-02-01 07:14:27 +01:00
return;
2022-02-01 10:04:03 +01:00
}
2022-02-01 07:14:27 +01:00
$this->request_name = StoreClientRequest::class;
$this->repository_name = ClientRepository::class;
$this->factory_name = ClientFactory::class;
2022-02-03 00:14:54 +01:00
$this->repository = app()->make($this->repository_name);
2022-02-01 07:14:27 +01:00
$this->repository->import_mode = true;
$this->transformer = new ClientTransformer($this->company);
2022-02-01 10:04:03 +01:00
$client_count = $this->ingest($data, $entity_type);
$this->entity_count['clients'] = $client_count;
2022-02-01 07:14:27 +01:00
}
2022-02-09 22:53:48 +01:00
public function product()
2022-02-01 10:04:03 +01:00
{
$entity_type = 'product';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-01 10:04:03 +01:00
2022-02-03 00:14:54 +01:00
if (empty($data)) {
2022-02-01 10:04:03 +01:00
$this->entity_count['products'] = 0;
return;
}
$this->request_name = StoreProductRequest::class;
$this->repository_name = ProductRepository::class;
$this->factory_name = ProductFactory::class;
2022-02-03 00:14:54 +01:00
$this->repository = app()->make($this->repository_name);
2022-02-01 10:04:03 +01:00
$this->repository->import_mode = true;
$this->transformer = new ProductTransformer($this->company);
2022-04-26 08:53:41 +02:00
$product_count = $this->ingestProducts($data, $entity_type);
2022-02-01 07:14:27 +01:00
2022-02-01 10:04:03 +01:00
$this->entity_count['products'] = $product_count;
}
2022-02-09 22:53:48 +01:00
public function invoice()
2022-02-01 10:04:03 +01:00
{
$entity_type = 'invoice';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-01 10:04:03 +01:00
2022-02-03 00:14:54 +01:00
if (empty($data)) {
2022-02-01 10:04:03 +01:00
$this->entity_count['invoices'] = 0;
return;
}
$this->request_name = StoreInvoiceRequest::class;
$this->repository_name = InvoiceRepository::class;
$this->factory_name = InvoiceFactory::class;
2022-02-03 00:14:54 +01:00
$this->repository = app()->make($this->repository_name);
2022-02-01 10:04:03 +01:00
$this->repository->import_mode = true;
2022-02-02 05:56:37 +01:00
$this->transformer = new InvoiceTransformer($this->company);
2022-02-01 10:04:03 +01:00
2022-02-03 01:18:29 +01:00
$invoice_count = $this->ingestInvoices($data, 'invoice.number');
2022-02-01 10:04:03 +01:00
$this->entity_count['invoices'] = $invoice_count;
}
2022-02-01 07:14:27 +01:00
2022-02-09 22:53:48 +01:00
public function payment()
2022-02-03 01:45:03 +01:00
{
$entity_type = 'payment';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-03 01:45:03 +01:00
if (empty($data)) {
$this->entity_count['payments'] = 0;
return;
}
$this->request_name = StorePaymentRequest::class;
$this->repository_name = PaymentRepository::class;
$this->factory_name = PaymentFactory::class;
$this->repository = app()->make($this->repository_name);
$this->repository->import_mode = true;
$this->transformer = new PaymentTransformer($this->company);
$payment_count = $this->ingest($data, $entity_type);
$this->entity_count['payments'] = $payment_count;
}
2022-02-09 22:53:48 +01:00
public function vendor()
2022-02-03 07:38:23 +01:00
{
$entity_type = 'vendor';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-03 07:38:23 +01:00
if (empty($data)) {
$this->entity_count['vendors'] = 0;
return;
}
$this->request_name = StoreVendorRequest::class;
$this->repository_name = VendorRepository::class;
$this->factory_name = VendorFactory::class;
$this->repository = app()->make($this->repository_name);
$this->repository->import_mode = true;
$this->transformer = new VendorTransformer($this->company);
$vendor_count = $this->ingest($data, $entity_type);
$this->entity_count['vendors'] = $vendor_count;
}
2022-02-09 22:53:48 +01:00
public function expense()
2022-02-03 07:38:23 +01:00
{
2022-02-03 08:53:39 +01:00
$entity_type = 'expense';
$data = $this->getCsvData($entity_type);
2022-02-17 04:40:28 +01:00
if(is_array($data))
$data = $this->preTransformCsv($data, $entity_type);
2022-02-03 08:53:39 +01:00
if (empty($data)) {
$this->entity_count['expenses'] = 0;
return;
}
$this->request_name = StoreExpenseRequest::class;
$this->repository_name = ExpenseRepository::class;
$this->factory_name = ExpenseFactory::class;
$this->repository = app()->make($this->repository_name);
$this->repository->import_mode = true;
$this->transformer = new ExpenseTransformer($this->company);
$expense_count = $this->ingest($data, $entity_type);
$this->entity_count['expenses'] = $expense_count;
2022-02-03 07:38:23 +01:00
}
2022-02-09 22:53:48 +01:00
public function quote()
2022-02-03 07:38:23 +01:00
{
2022-02-08 05:14:26 +01:00
2022-02-03 07:38:23 +01:00
}
2022-02-09 22:53:48 +01:00
public function task()
2022-02-03 07:38:23 +01:00
{
2022-02-08 05:14:26 +01:00
2022-02-03 07:38:23 +01:00
}
2022-02-03 01:45:03 +01:00
2022-02-03 00:14:54 +01:00
public function transform(array $data)
{
2022-02-01 07:14:27 +01:00
}
2022-02-03 00:14:54 +01:00
}