ModCfg/Application/Model/Maintenance/Actions/Object2ActionsOrphans.php

90 lignes
2.9 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\Query\QueryBuilder;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
class Object2ActionsOrphans extends AbstractAction
{
/**
* @return int
* @throws ContainerExceptionInterface
* @throws DoctrineDriverException
* @throws DoctrineException
* @throws NotFoundExceptionInterface
*/
public function getAffectedRows(): int
{
$oQB = $this->getBaseQuery('o2a');
$oQB->select('count(*)')
->setMaxResults(1);
return (int) $oQB->execute()->fetchOne();
}
/**
* @throws ContainerExceptionInterface
* @throws DoctrineDriverException
* @throws DoctrineException
* @throws NotFoundExceptionInterface
*/
public function fixIt(): void
{
$this->fixAction(
$this->getBaseQuery('o2a'),
'o2a.oxid',
'oxobject2action',
'D3_CFG_CLRTMP_ASSIGNOBJ2ACTION_SUCC'
);
}
/**
* @param string $tableAlias
*
* @return QueryBuilder
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
protected function getBaseQuery(string $tableAlias): QueryBuilder
{
$oQB = $this->getQueryBuilder();
$oQB->from('oxobject2action', $tableAlias)
->leftJoin($tableAlias, 'oxactions', 'oac', $oQB->expr()->eq($tableAlias.'.oxactionid', 'oac.oxid'))
->leftJoin($tableAlias, 'oxarticles', 'oar', $oQB->expr()->eq($tableAlias.'.oxobjectid', 'oar.oxid'))
->leftJoin($tableAlias, 'oxgroups', 'og', $oQB->expr()->eq($tableAlias.'.oxobjectid', 'og.oxid'))
->where(
$oQB->expr()->or(
$oQB->expr()->isNull('oac.oxid'),
$oQB->expr()->and(
$oQB->expr()->eq($tableAlias.'.oxclass', $oQB->createNamedParameter('oxarticle')),
$oQB->expr()->isNull('oar.oxid')
),
$oQB->expr()->and(
$oQB->expr()->eq($tableAlias.'.oxclass', $oQB->createNamedParameter('oxgroups')),
$oQB->expr()->isNull('og.oxid')
)
)
);
return $oQB;
}
}