68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Migration;
|
|
|
|
use Closure;
|
|
use Exception;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
use OCP\IDBConnection;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
class Version1105Date20210922104324 extends SimpleMigrationStep {
|
|
private $connection;
|
|
private $logger;
|
|
|
|
public function __construct(IDBConnection $connection, LoggerInterface $logger) {
|
|
$this->connection = $connection;
|
|
$this->logger = $logger;
|
|
}
|
|
|
|
#[\Override]
|
|
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
|
|
$qb = $this->connection->getQueryBuilder();
|
|
$qb->select('accounts.id')
|
|
->from('mail_accounts', 'accounts')
|
|
->leftJoin('accounts', 'mail_provisionings', 'provisionings', $qb->expr()->eq('accounts.provisioning_id', 'provisionings.id'))
|
|
->where($qb->expr()->isNotNull('accounts.provisioning_id'))
|
|
->andWhere($qb->expr()->isNull('provisionings.id'));
|
|
|
|
try {
|
|
$result = $qb->executeQuery();
|
|
} catch (Exception $e) {
|
|
$this->logger->info('Migration to cleanup mail accounts without valid provisioning configuration failed', [
|
|
'exception' => $e
|
|
]);
|
|
return;
|
|
}
|
|
|
|
$accountIds = array_map(static fn ($row) => (int)$row['id'], $result->fetchAll());
|
|
$result->closeCursor();
|
|
|
|
if (count($accountIds) === 0) {
|
|
return;
|
|
}
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
$qb->delete('mail_accounts')
|
|
->where($qb->expr()->in('id', $qb->createNamedParameter($accountIds, IQueryBuilder::PARAM_INT_ARRAY)));
|
|
|
|
try {
|
|
$qb->executeStatement();
|
|
} catch (Exception $e) {
|
|
$this->logger->info('Migration to cleanup mail accounts without valid provisioning configuration failed', [
|
|
'exception' => $e
|
|
]);
|
|
return;
|
|
}
|
|
}
|
|
}
|