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

87 lines
2.6 KiB
PHP
Raw Normal View History

2024-04-19 16:15:46 +02:00
<?php
/**
2024-09-02 08:48:43 +02:00
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* https://www.d3data.de
2024-04-19 16:15:46 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2024-09-02 08:48:43 +02:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2024-04-19 16:15:46 +02:00
*/
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 Object2GroupOrphans extends AbstractAction
{
/**
* @return int
* @throws ContainerExceptionInterface
* @throws DoctrineDriverException
* @throws DoctrineException
* @throws NotFoundExceptionInterface
*/
public function getAffectedRows(): int
{
$oQB = $this->getBaseQuery('o2g');
$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('o2g'),
'o2g.oxid',
'oxobject2group',
'D3_CFG_CLRTMP_ASSIGNOBJ2GROUP_SUCC'
);
}
/**
* @param string $tableAlias
*
* @return QueryBuilder
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
protected function getBaseQuery(string $tableAlias): QueryBuilder
{
$oQB = $this->getQueryBuilder();
$oQB->from('oxobject2group', $tableAlias)
->leftJoin($tableAlias, 'oxgroups', 'oxgroups', $oQB->expr()->eq($tableAlias.'.oxgroupsid', 'oxgroups.oxid'))
->leftJoin($tableAlias, 'oxuser', 'oxuser', $oQB->expr()->eq($tableAlias.'.oxobjectid', 'oxuser.oxid'))
->leftJoin($tableAlias, 'oxpayments', 'oxpayments', $oQB->expr()->eq($tableAlias.'.oxobjectid', 'oxpayments.oxid'))
->where(
$oQB->expr()->or(
$oQB->expr()->isNull("oxgroups.oxid"),
$oQB->expr()->and(
$oQB->expr()->isNull('oxuser.oxid'),
$oQB->expr()->isNull('oxpayments.oxid')
)
)
);
return $oQB;
}
}