mirror of
https://github.com/nextcloud/server.git
synced 2025-05-03 13:30:32 +00:00

fix: psalm fix: error fix: add batch fix: fatal error fix: add batch chore: add batch chore: add batch fix: psalm fix: typo fix: psalm fix: return bool fix: revert Manager
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\WorkflowEngine\Migration;
|
|
|
|
use OCP\DB\IResult;
|
|
use OCP\IDBConnection;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\IRepairStep;
|
|
use OCP\WorkflowEngine\IManager;
|
|
|
|
class PopulateNewlyIntroducedDatabaseFields implements IRepairStep {
|
|
|
|
public function __construct(
|
|
private IDBConnection $dbc,
|
|
) {
|
|
}
|
|
|
|
public function getName() {
|
|
return 'Populating added database structures for workflows';
|
|
}
|
|
|
|
public function run(IOutput $output) {
|
|
$result = $this->getIdsWithoutScope();
|
|
|
|
$this->populateScopeTable($result);
|
|
|
|
$result->closeCursor();
|
|
}
|
|
|
|
protected function populateScopeTable(IResult $ids): void {
|
|
$qb = $this->dbc->getQueryBuilder();
|
|
|
|
$insertQuery = $qb->insert('flow_operations_scope');
|
|
while (($id = $ids->fetchOne()) !== false) {
|
|
$insertQuery->values(['operation_id' => $qb->createNamedParameter($id), 'type' => IManager::SCOPE_ADMIN]);
|
|
$insertQuery->executeStatement();
|
|
}
|
|
}
|
|
|
|
protected function getIdsWithoutScope(): IResult {
|
|
$qb = $this->dbc->getQueryBuilder();
|
|
$selectQuery = $qb->select('o.id')
|
|
->from('flow_operations', 'o')
|
|
->leftJoin('o', 'flow_operations_scope', 's', $qb->expr()->eq('o.id', 's.operation_id'))
|
|
->where($qb->expr()->isNull('s.operation_id'));
|
|
// The left join operation is not necessary, usually, but it's a safe-guard
|
|
// in case the repair step is executed multiple times for whatever reason.
|
|
|
|
/** @var IResult $result */
|
|
$result = $selectQuery->executeQuery();
|
|
return $result;
|
|
}
|
|
}
|