8
0
ModCfg/Application/Model/Maintenance/Actions/DisableVariantsWithInactiveParent.php

101 Zeilen
3.2 KiB
PHP

<?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
*/
declare(strict_types=1);
namespace D3\ModCfg\Application\Model\Maintenance\Actions;
use Doctrine\DBAL\Driver\Exception as DoctrineDriverException;
use Doctrine\DBAL\Exception as DoctrineException;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Query\QueryBuilder;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
class DisableVariantsWithInactiveParent extends AbstractAction
{
/**
* @return int
* @throws ContainerExceptionInterface
* @throws DoctrineDriverException
* @throws DoctrineException
* @throws NotFoundExceptionInterface
*/
public function getAffectedRows(): int
{
$oQB = $this->getBaseQuery('oav');
$oQB->select('count(*)')
->setMaxResults(1);
return (int) $oQB->execute()->fetchOne();
}
/**
* @throws ContainerExceptionInterface
* @throws DoctrineDriverException
* @throws DoctrineException
* @throws NotFoundExceptionInterface
*/
public function fixIt(): void
{
$baseQuery = $this->getBaseQuery('oav');
$baseQuery->select('oav.oxid');
$allIds = $baseQuery->execute()->fetchAllNumeric();
$queryBuilder = $this->getQueryBuilder();
$queryBuilder->update('oxarticles', 'updateTable')
->set('updateTable.oxactive', $queryBuilder->createNamedParameter(0, ParameterType::INTEGER))
->where(
$queryBuilder->expr()->in(
'updateTable.oxid',
implode(
', ',
array_map(
fn ($id) => $queryBuilder->createNamedParameter($id),
$allIds
)
)
)
);
$this->_performAction(
[count($allIds) ? $queryBuilder : null],
'D3_CFG_CLRTMP_VARIANTACTIVE_SUCC'
);
}
/**
* @param string $tableAlias
*
* @return QueryBuilder
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
protected function getBaseQuery(string $tableAlias): QueryBuilder
{
$oQB = $this->getQueryBuilder();
$oQB->from('oxarticles', $tableAlias)
->leftJoin($tableAlias, 'oxarticles', 'oap', $oQB->expr()->eq($tableAlias.'.oxparentid', 'oap.oxid'))
->where(
$oQB->expr()->and(
$oQB->expr()->eq("oap.oxactive", $oQB->createNamedParameter(0, ParameterType::INTEGER)),
$oQB->expr()->eq($tableAlias.".oxactive", $oQB->createNamedParameter(1, ParameterType::INTEGER))
)
);
return $oQB;
}
}