1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Export/CSV/ClientExport.php

221 lines
7.0 KiB
PHP
Raw Normal View History

2022-04-07 04:17:02 +02: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-04-07 04:17:02 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Export\CSV;
use App\Libraries\MultiDB;
use App\Models\Client;
use App\Models\Company;
use App\Transformers\ClientContactTransformer;
use App\Transformers\ClientTransformer;
use App\Utils\Ninja;
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
2022-04-27 05:07:29 +02:00
use Illuminate\Support\Carbon;
2022-04-07 04:17:02 +02:00
2022-04-27 07:17:45 +02:00
class ClientExport extends BaseExport
2022-04-07 04:17:02 +02:00
{
private $company;
2022-04-27 07:17:45 +02:00
protected $input;
2022-04-07 04:17:02 +02:00
private $client_transformer;
private $contact_transformer;
2022-04-27 05:07:29 +02:00
private string $start_date;
private string $end_date;
2022-04-27 07:17:45 +02:00
protected string $date_key = 'created_at';
2022-04-27 05:07:29 +02:00
2022-04-27 10:05:54 +02:00
protected array $entity_keys = [
2022-04-07 04:17:02 +02:00
'address1' => 'client.address1',
'address2' => 'client.address2',
'balance' => 'client.balance',
'city' => 'client.city',
'country' => 'client.country_id',
'credit_balance' => 'client.credit_balance',
'custom_value1' => 'client.custom_value1',
'custom_value2' => 'client.custom_value2',
'custom_value3' => 'client.custom_value3',
'custom_value4' => 'client.custom_value4',
'id_number' => 'client.id_number',
'industry' => 'client.industry_id',
'last_login' => 'client.last_login',
'name' => 'client.name',
'number' => 'client.number',
'paid_to_date' => 'client.paid_to_date',
'phone' => 'client.phone',
'postal_code' => 'client.postal_code',
'private_notes' => 'client.private_notes',
'public_notes' => 'client.public_notes',
'shipping_address1' => 'client.shipping_address1',
'shipping_address2' => 'client.shipping_address2',
'shipping_city' => 'client.shipping_city',
'shipping_country' => 'client.shipping_country_id',
'shipping_postal_code' => 'client.shipping_postal_code',
'shipping_state' => 'client.shipping_state',
'state' => 'client.state',
'vat_number' => 'client.vat_number',
'website' => 'client.website',
'currency' => 'client.currency',
'first_name' => 'contact.first_name',
'last_name' => 'contact.last_name',
'phone' => 'contact.phone',
'contact_custom_value1' => 'contact.custom_value1',
'contact_custom_value2' => 'contact.custom_value2',
'contact_custom_value3' => 'contact.custom_value3',
'contact_custom_value4' => 'contact.custom_value4',
'email' => 'contact.email',
];
2022-05-07 09:10:23 +02:00
protected array $all_keys = [
'client.address1',
'client.address2',
'client.balance',
'client.city',
'client.country_id',
'client.credit_balance',
'client.custom_value1',
'client.custom_value2',
'client.custom_value3',
'client.custom_value4',
'client.id_number',
'client.industry_id',
'client.last_login',
'client.name',
'client.number',
'client.paid_to_date',
'client.phone',
'client.postal_code',
'client.private_notes',
'client.public_notes',
'client.shipping_address1',
'client.shipping_address2',
'client.shipping_city',
'client.shipping_country_id',
'client.shipping_postal_code',
'client.shipping_state',
'client.state',
'client.vat_number',
'client.website',
2022-05-09 06:59:01 +02:00
'client.currency',
2022-05-07 09:10:23 +02:00
'contact.first_name',
'contact.last_name',
'contact.phone',
'contact.custom_value1',
'contact.custom_value2',
'contact.custom_value3',
'contact.custom_value4',
'contact.email',
];
2022-04-07 04:17:02 +02:00
private array $decorate_keys = [
'client.country_id',
'client.shipping_country_id',
'client.currency',
'client.industry',
];
2022-04-27 05:07:29 +02:00
public function __construct(Company $company, array $input)
2022-04-07 04:17:02 +02:00
{
$this->company = $company;
2022-04-27 05:07:29 +02:00
$this->input = $input;
2022-04-07 04:17:02 +02:00
$this->client_transformer = new ClientTransformer();
$this->contact_transformer = new ClientContactTransformer();
}
public function run()
{
MultiDB::setDb($this->company->db);
App::forgetInstance('translator');
App::setLocale($this->company->locale());
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
//load the CSV document from a string
$this->csv = Writer::createFromString();
2022-05-07 09:10:23 +02:00
if(count($this->input['report_keys']) == 0)
$this->input['report_keys'] = $this->all_keys;
2022-04-07 04:17:02 +02:00
//insert the header
$this->csv->insertOne($this->buildHeader());
2022-04-27 05:07:29 +02:00
$query = Client::query()->with('contacts')
2022-04-27 08:29:38 +02:00
->withTrashed()
2022-04-27 05:07:29 +02:00
->where('company_id', $this->company->id)
->where('is_deleted',0);
$query = $this->addDateRange($query);
2022-04-07 04:17:02 +02:00
2022-04-27 05:07:29 +02:00
$query->cursor()
->each(function ($client){
$this->csv->insertOne($this->buildRow($client));
});
2022-04-07 04:17:02 +02:00
2022-04-08 03:02:31 +02:00
return $this->csv->toString();
2022-04-07 04:17:02 +02:00
}
private function buildRow(Client $client) :array
{
$transformed_contact = false;
$transformed_client = $this->client_transformer->transform($client);
if($contact = $client->contacts()->first())
$transformed_contact = $this->contact_transformer->transform($contact);
$entity = [];
2022-04-27 05:07:29 +02:00
foreach(array_values($this->input['report_keys']) as $key){
2022-04-07 04:17:02 +02:00
$parts = explode(".",$key);
$entity[$parts[1]] = "";
2022-05-09 06:59:01 +02:00
if($parts[0] == 'client' && array_key_exists($parts[1], $transformed_client)) {
2022-04-07 04:17:02 +02:00
$entity[$parts[1]] = $transformed_client[$parts[1]];
}
2022-05-09 06:59:01 +02:00
elseif($parts[0] == 'contact' && array_key_exists($parts[1], $transformed_client)) {
2022-04-07 04:17:02 +02:00
$entity[$parts[1]] = $transformed_contact[$parts[1]];
}
}
return $this->decorateAdvancedFields($client, $entity);
}
private function decorateAdvancedFields(Client $client, array $entity) :array
{
2022-05-09 06:59:01 +02:00
if(in_array('country_id', $this->input['report_keys']))
2022-04-07 04:17:02 +02:00
$entity['country_id'] = $client->country ? ctrans("texts.country_{$client->country->name}") : "";
2022-05-09 06:59:01 +02:00
if(in_array('shipping_country_id', $this->input['report_keys']))
2022-04-07 04:17:02 +02:00
$entity['shipping_country_id'] = $client->shipping_country ? ctrans("texts.country_{$client->shipping_country->name}") : "";
2022-05-09 06:59:01 +02:00
if(in_array('currency', $this->input['report_keys']))
$entity['currency_id'] = $client->currency() ? $client->currency()->code : $client->company->currency()->code;
2022-04-07 04:17:02 +02:00
2022-05-09 06:59:01 +02:00
if(in_array('industry_id', $this->input['report_keys']))
2022-04-07 04:17:02 +02:00
$entity['industry_id'] = $client->industry ? ctrans("texts.industry_{$client->industry->name}") : "";
return $entity;
}
}