DataWizard/Application/Controller/Admin/d3ExportWizard.php

135 regels
4.3 KiB
PHP

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;
2024-03-15 11:42:23 +01:00
use D3\DataWizard\Application\Model\Constants;
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;
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;
use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory;
use OxidEsales\EshopCommunity\Internal\Framework\Module\Facade\ModuleSettingService;
use OxidEsales\EshopCommunity\Internal\Framework\Module\Facade\ModuleSettingServiceInterface;
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
{
2024-03-15 11:42:23 +01:00
protected $_sThisTemplate = '@'. Constants::OXID_MODULE_ID .'/admin/d3ExportWizard';
2021-04-16 14:04:30 +02:00
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);
}
2024-05-13 16:24:34 +02:00
public function getViewId(): string
2023-05-23 10:59:44 +02:00
{
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
}
2024-03-15 11:42:23 +01:00
public function getGroupTasks($group): array
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();
if ($this->getSettingsService()->getBoolean('d3datawizard_debug', Constants::OXID_MODULE_ID)) {
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 ModuleSettingService
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
2021-11-26 23:16:32 +01:00
*/
public function getSettingsService(): ModuleSettingServiceInterface
2021-11-26 23:16:32 +01:00
{
return ContainerFactory::getInstance()->getContainer()->get(ModuleSettingServiceInterface::class);
2021-11-26 23:16:32 +01:00
}
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
}