2021-04-16 14:04:30 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
* http://www.shopmodule.com
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace D3\DataWizard\Application\Model;
|
|
|
|
|
2021-04-19 00:27:33 +02:00
|
|
|
use D3\ModCfg\Application\Model\d3filesystem;
|
2021-04-18 23:17:48 +02:00
|
|
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
|
|
|
use Doctrine\DBAL\DBALException;
|
2021-04-19 00:27:33 +02:00
|
|
|
use League\Csv\CannotInsertRecord;
|
|
|
|
use League\Csv\EncloseField;
|
|
|
|
use League\Csv\Exception;
|
|
|
|
use League\Csv\Writer;
|
|
|
|
use OxidEsales\Eshop\Core\DatabaseProvider;
|
2021-04-18 23:17:48 +02:00
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
2021-04-16 14:04:30 +02:00
|
|
|
|
|
|
|
abstract class ExportBase implements QueryBase
|
|
|
|
{
|
2021-04-19 00:27:33 +02:00
|
|
|
const FORMAT_CSV = 'CSV';
|
|
|
|
|
2021-04-18 23:17:48 +02:00
|
|
|
/**
|
2021-04-19 00:27:33 +02:00
|
|
|
* @throws CannotInsertRecord
|
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
|
|
|
* @throws Exception
|
2021-04-18 23:17:48 +02:00
|
|
|
* @throws StandardException
|
|
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
|
|
* @throws d3_cfg_mod_exception
|
|
|
|
* @throws DBALException
|
|
|
|
*/
|
2021-04-16 14:04:30 +02:00
|
|
|
public function run()
|
|
|
|
{
|
2021-04-18 23:17:48 +02:00
|
|
|
$query = trim($this->getQuery());
|
|
|
|
|
|
|
|
if (strtolower(substr($query, 0, 6)) !== 'select') {
|
|
|
|
/** @var StandardException $e */
|
|
|
|
throw oxNew(
|
|
|
|
StandardException::class,
|
|
|
|
$this->getTitle().' - '.Registry::getLang()->translateString('D3_DATAWIZARD_EXPORT_NOSELECT')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-19 00:27:33 +02:00
|
|
|
$rows = DatabaseProvider::getDb(DatabaseProvider::FETCH_MODE_ASSOC)->getAll($query);
|
|
|
|
|
|
|
|
if (count($rows) <= 0) {
|
|
|
|
throw oxNew(
|
|
|
|
StandardException::class,
|
|
|
|
Registry::getLang()->translateString('D3_DATAWIZARD_ERR_NOEXPORTCONTENT')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fieldNames = array_keys($rows[0]);
|
|
|
|
|
|
|
|
$csv = $this->getCsv();
|
|
|
|
$csv->insertOne($fieldNames);
|
|
|
|
$csv->insertAll($rows);
|
|
|
|
|
|
|
|
/** @var $oFS d3filesystem */
|
|
|
|
$oFS = oxNew(d3filesystem::class);
|
|
|
|
$oFS->startDirectDownload($this->getExportFilename(), $csv->getContent());
|
2021-04-16 14:04:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getButtonText() : string
|
|
|
|
{
|
|
|
|
return "D3_DATAWIZARD_EXPORT_SUBMIT";
|
|
|
|
}
|
2021-04-19 00:27:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Writer
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getCsv(): Writer
|
|
|
|
{
|
|
|
|
$csv = Writer::createFromString();
|
|
|
|
|
|
|
|
EncloseField::addTo($csv, "\t\x1f");
|
|
|
|
|
|
|
|
$sEncloser = Registry::getConfig()->getConfigParam('sGiCsvFieldEncloser');
|
|
|
|
if (false == $sEncloser) {
|
|
|
|
$sEncloser = '"';
|
|
|
|
}
|
|
|
|
$csv->setEnclosure($sEncloser);
|
|
|
|
|
|
|
|
$sDelimiter = Registry::getConfig()->getConfigParam('sCSVSign');
|
|
|
|
if (false == $sDelimiter) {
|
|
|
|
$sDelimiter = ';';
|
|
|
|
}
|
|
|
|
$csv->setDelimiter($sDelimiter);
|
|
|
|
|
|
|
|
return $csv;
|
|
|
|
}
|
2021-04-16 14:04:30 +02:00
|
|
|
}
|