2021-04-19 13:30:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2021-04-20 11:20:34 +02:00
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
2021-04-19 13:30:52 +02:00
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
2021-04-20 11:20:34 +02:00
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
2021-04-19 13:30:52 +02:00
|
|
|
*/
|
|
|
|
|
2021-04-20 09:57:44 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-04-19 13:30:52 +02:00
|
|
|
namespace D3\DataWizard\Application\Model\ExportRenderer;
|
|
|
|
|
2021-04-20 09:50:49 +02:00
|
|
|
use D3\DataWizard\Application\Model\Exceptions\RenderException;
|
2021-04-19 13:30:52 +02:00
|
|
|
use League\Csv\EncloseField;
|
|
|
|
use League\Csv\Exception;
|
|
|
|
use League\Csv\Writer;
|
2021-11-26 23:16:32 +01:00
|
|
|
use OxidEsales\Eshop\Core\Config;
|
2021-04-19 13:30:52 +02:00
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
|
|
|
class Csv implements RendererInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param $rows
|
|
|
|
* @param $fieldNames
|
|
|
|
*
|
|
|
|
* @return string
|
2021-04-20 09:50:49 +02:00
|
|
|
* @throws RenderException
|
2021-04-19 13:30:52 +02:00
|
|
|
*/
|
2021-04-19 14:36:25 +02:00
|
|
|
public function getContent($rows, $fieldNames): string
|
2021-04-19 13:30:52 +02:00
|
|
|
{
|
2021-04-20 09:50:49 +02:00
|
|
|
try {
|
|
|
|
$csv = $this->getCsv();
|
|
|
|
$csv->insertOne( $fieldNames );
|
|
|
|
$csv->insertAll( $rows );
|
2021-11-11 09:34:30 +01:00
|
|
|
return method_exists($csv, 'getContent') ? $csv->getContent() : (string) $csv;
|
2021-04-20 09:50:49 +02:00
|
|
|
} catch (Exception $e) {
|
|
|
|
/** @var RenderException $newException */
|
|
|
|
$newException = oxNew(RenderException::class, $e->getMessage(), $e->getCode(), $e );
|
|
|
|
throw $newException;
|
|
|
|
}
|
2021-04-19 13:30:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFileExtension(): string
|
|
|
|
{
|
|
|
|
return 'csv';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Writer
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getCsv(): Writer
|
|
|
|
{
|
|
|
|
$csv = Writer::createFromString();
|
|
|
|
|
|
|
|
EncloseField::addTo($csv, "\t\x1f");
|
|
|
|
|
2021-11-26 23:16:32 +01:00
|
|
|
$sEncloser = $this->d3GetConfig()->getConfigParam('sGiCsvFieldEncloser');
|
2021-04-19 13:30:52 +02:00
|
|
|
if (false == $sEncloser) {
|
|
|
|
$sEncloser = '"';
|
|
|
|
}
|
|
|
|
$csv->setEnclosure($sEncloser);
|
|
|
|
|
2021-11-26 23:16:32 +01:00
|
|
|
$sDelimiter = $this->d3GetConfig()->getConfigParam('sCSVSign');
|
2021-04-19 13:30:52 +02:00
|
|
|
if (false == $sDelimiter) {
|
|
|
|
$sDelimiter = ';';
|
|
|
|
}
|
|
|
|
$csv->setDelimiter($sDelimiter);
|
|
|
|
|
|
|
|
return $csv;
|
|
|
|
}
|
2021-10-29 11:37:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTitleTranslationId(): string
|
|
|
|
{
|
|
|
|
return 'D3_DATAWIZARD_EXPORT_FORMAT_CSV';
|
|
|
|
}
|
2021-11-26 23:16:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Config
|
|
|
|
*/
|
|
|
|
public function d3GetConfig()
|
|
|
|
{
|
|
|
|
return Registry::getConfig();
|
|
|
|
}
|
2021-04-19 13:30:52 +02:00
|
|
|
}
|