DataWizard/Application/Controller/Admin/d3ExportWizard.php

130 lines
3.8 KiB
PHP
Raw Normal View History

2021-04-16 14:04:30 +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.
2022-01-17 10:59:18 +01:00
*
2021-04-20 11:20:34 +02:00
* https://www.d3data.de
2021-04-16 14:04:30 +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-16 14:04:30 +02:00
*/
2021-04-20 09:57:44 +02:00
declare(strict_types=1);
2021-04-16 14:04:30 +02:00
namespace D3\DataWizard\Application\Controller\Admin;
use D3\DataWizard\Application\Model\Configuration;
use D3\DataWizard\Application\Model\Exceptions\DataWizardException;
use D3\DataWizard\Application\Model\Exceptions\DebugException;
use D3\DataWizard\Application\Model\Exceptions\NoSuitableRendererException;
use D3\ModCfg\Application\Model\d3database;
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
2024-03-04 13:57:10 +01:00
use Doctrine\DBAL\Driver\Exception;
use Doctrine\DBAL\Exception as DBALException;
2021-04-16 14:04:30 +02:00
use OxidEsales\Eshop\Application\Controller\Admin\AdminDetailsController;
2021-11-26 23:16:32 +01:00
use OxidEsales\Eshop\Core\Config;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
2021-04-16 14:04:30 +02:00
use OxidEsales\Eshop\Core\Registry;
2024-03-04 13:57:10 +01:00
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
2021-04-16 14:04:30 +02:00
class d3ExportWizard extends AdminDetailsController
{
protected $_sThisTemplate = 'd3ExportWizard.tpl';
2024-03-04 13:57:10 +01:00
protected Configuration $configuration;
2021-04-16 14:04:30 +02:00
public function __construct()
{
parent::__construct();
$this->configuration = oxNew(Configuration::class);
}
2023-05-23 10:59:44 +02:00
public function getViewId()
{
return 'd3mxDataWizard_Export';
}
2021-12-20 13:41:24 +01:00
public function getGroups(): array
2021-04-16 14:04:30 +02:00
{
2021-06-22 13:26:51 +02:00
return $this->configuration->getExportGroups();
2021-04-16 14:04:30 +02:00
}
public function getGroupTasks($group)
2021-04-16 14:04:30 +02:00
{
return $this->configuration->getExportsByGroup($group);
}
/**
2024-03-04 13:57:10 +01:00
* @throws ContainerExceptionInterface
* @throws DatabaseConnectionException
2024-03-04 13:57:10 +01:00
* @throws Exception
* @throws NotFoundExceptionInterface
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
*/
2024-03-04 13:57:10 +01:00
public function runTask(): void
2021-04-16 14:04:30 +02:00
{
try {
$this->execute();
} catch (DataWizardException|DBALException|DatabaseErrorException $e) {
Registry::getLogger()->error($e->getMessage());
Registry::getUtilsView()->addErrorToDisplay($e);
}
}
/**
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws NoSuitableRendererException
2024-03-04 13:57:10 +01:00
* @throws StandardException
* @throws Exception
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
*/
2024-03-04 13:57:10 +01:00
protected function execute(): void
{
$id = Registry::getRequest()->getRequestEscapedParameter('taskid');
$export = $this->configuration->getExportById($id);
[ $queryString, $parameters ] = $export->getQuery();
2021-11-26 23:16:32 +01:00
if ($this->d3GetConfig()->getConfigParam('d3datawizard_debug')) {
throw oxNew(
DebugException::class,
d3database::getInstance()->getPreparedStatementQuery($queryString, $parameters)
);
}
$export->run(Registry::getRequest()->getRequestEscapedParameter('format'));
2021-04-16 14:04:30 +02:00
}
2021-11-26 23:16:32 +01:00
/**
* @return Config
*/
2021-12-20 13:41:24 +01:00
public function d3GetConfig(): Config
2021-11-26 23:16:32 +01:00
{
return Registry::getConfig();
}
2024-03-04 13:57:10 +01:00
public function getUserMessages(): ?string
2021-04-16 14:04:30 +02:00
{
return null;
}
2024-03-04 13:57:10 +01:00
public function getHelpURL(): ?string
2021-04-16 14:04:30 +02:00
{
return null;
}
2022-01-17 10:59:18 +01:00
}