-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[stable21] Add repair job to delete calendar subscriptions that were orphaned when deleting an user #30006
Closed
Closed
[stable21] Add repair job to delete calendar subscriptions that were orphaned when deleting an user #30006
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
apps/dav/lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2021 Thomas Citharel <nextcloud@tcit.fr> | ||
* | ||
* @author Thomas Citharel <nextcloud@tcit.fr> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
namespace OCA\DAV\Migration; | ||
|
||
use OCP\DB\Exception; | ||
use OCP\IDBConnection; | ||
use OCP\IUserManager; | ||
use OCP\Migration\IOutput; | ||
use OCP\Migration\IRepairStep; | ||
|
||
class RemoveDeletedUsersCalendarSubscriptions implements IRepairStep { | ||
/** @var IDBConnection */ | ||
private $connection; | ||
|
||
/** @var IUserManager */ | ||
private $userManager; | ||
|
||
/** @var int */ | ||
private $progress = 0; | ||
|
||
private $orphanSubscriptions = []; | ||
|
||
private const SUBSCRIPTIONS_CHUNK_SIZE = 1000; | ||
|
||
public function __construct(IDBConnection $connection, IUserManager $userManager) { | ||
$this->connection = $connection; | ||
$this->userManager = $userManager; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function getName(): string { | ||
return 'Clean up old calendar subscriptions from deleted users that were not cleaned-up'; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function run(IOutput $output) { | ||
$nbSubscriptions = $this->countSubscriptions(); | ||
|
||
$output->startProgress($nbSubscriptions); | ||
|
||
while ($this->progress < $nbSubscriptions) { | ||
$this->checkSubscriptions(); | ||
|
||
$this->progress += self::SUBSCRIPTIONS_CHUNK_SIZE; | ||
$output->advance(min(self::SUBSCRIPTIONS_CHUNK_SIZE, $nbSubscriptions)); | ||
} | ||
$output->finishProgress(); | ||
$this->deleteOrphanSubscriptions(); | ||
|
||
$output->info(sprintf('%d calendar subscriptions without an user have been cleaned up', count($this->orphanSubscriptions))); | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
private function countSubscriptions(): int { | ||
$qb = $this->connection->getQueryBuilder(); | ||
$query = $qb->select($qb->func()->count('*')) | ||
->from('calendarsubscriptions'); | ||
|
||
$result = $query->execute(); | ||
$count = $result->fetchOne(); | ||
$result->closeCursor(); | ||
|
||
if ($count !== false) { | ||
$count = (int)$count; | ||
} else { | ||
$count = 0; | ||
} | ||
|
||
return $count; | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
private function checkSubscriptions(): void { | ||
$qb = $this->connection->getQueryBuilder(); | ||
$query = $qb->selectDistinct(['id', 'principaluri']) | ||
->from('calendarsubscriptions') | ||
->setMaxResults(self::SUBSCRIPTIONS_CHUNK_SIZE) | ||
->setFirstResult($this->progress); | ||
|
||
$result = $query->execute(); | ||
while ($row = $result->fetch()) { | ||
$username = $this->getPrincipal($row['principaluri']); | ||
if (!$this->userManager->userExists($username)) { | ||
$this->orphanSubscriptions[] = $row['id']; | ||
} | ||
} | ||
$result->closeCursor(); | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
private function deleteOrphanSubscriptions(): void { | ||
foreach ($this->orphanSubscriptions as $orphanSubscriptionID) { | ||
$this->deleteOrphanSubscription($orphanSubscriptionID); | ||
} | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
private function deleteOrphanSubscription(int $orphanSubscriptionID): void { | ||
$qb = $this->connection->getQueryBuilder(); | ||
$qb->delete('calendarsubscriptions') | ||
->where($qb->expr()->eq('id', $qb->createNamedParameter($orphanSubscriptionID))) | ||
->executeStatement(); | ||
} | ||
|
||
private function getPrincipal(string $principalUri): string { | ||
$uri = explode('/', $principalUri); | ||
return array_pop($uri); | ||
} | ||
} |
169 changes: 169 additions & 0 deletions
169
apps/dav/tests/unit/Migration/RemoveDeletedUsersCalendarSubscriptionsTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,169 @@ | ||||||
<?php | ||||||
|
||||||
declare(strict_types=1); | ||||||
|
||||||
/** | ||||||
* @copyright Copyright (c) 2021 Thomas Citharel <nextcloud@tcit.fr> | ||||||
* | ||||||
* @author Thomas Citharel <nextcloud@tcit.fr> | ||||||
* | ||||||
* @license GNU AGPL version 3 or any later version | ||||||
* | ||||||
* This program is free software: you can redistribute it and/or modify | ||||||
* it under the terms of the GNU Affero General Public License as | ||||||
* published by the Free Software Foundation, either version 3 of the | ||||||
* License, or (at your option) any later version. | ||||||
* | ||||||
* This program is distributed in the hope that it will be useful, | ||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||||
* GNU Affero General Public License for more details. | ||||||
* | ||||||
* You should have received a copy of the GNU Affero General Public License | ||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||||
* | ||||||
*/ | ||||||
namespace OCA\DAV\Tests\unit\DAV\Migration; | ||||||
|
||||||
use OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions; | ||||||
use OCP\DB\IResult; | ||||||
use OCP\DB\QueryBuilder\IExpressionBuilder; | ||||||
use OCP\DB\QueryBuilder\IFunctionBuilder; | ||||||
use OCP\DB\QueryBuilder\IParameter; | ||||||
use OCP\DB\QueryBuilder\IQueryBuilder; | ||||||
use OCP\DB\QueryBuilder\IQueryFunction; | ||||||
use OCP\IDBConnection; | ||||||
use OCP\IUserManager; | ||||||
use OCP\Migration\IOutput; | ||||||
use PHPUnit\Framework\MockObject\MockObject; | ||||||
use Test\TestCase; | ||||||
|
||||||
class RemoveDeletedUsersCalendarSubscriptionsTest extends TestCase { | ||||||
/** | ||||||
* @var IDBConnection|MockObject | ||||||
*/ | ||||||
private $dbConnection; | ||||||
/** | ||||||
* @var IUserManager|MockObject | ||||||
*/ | ||||||
private $userManager; | ||||||
|
||||||
/** | ||||||
* @var IOutput|MockObject | ||||||
*/ | ||||||
private $output; | ||||||
/** | ||||||
* @var RemoveDeletedUsersCalendarSubscriptions | ||||||
*/ | ||||||
private $migration; | ||||||
|
||||||
|
||||||
protected function setUp(): void { | ||||||
parent::setUp(); | ||||||
|
||||||
$this->dbConnection = $this->createMock(IDBConnection::class); | ||||||
$this->userManager = $this->createMock(IUserManager::class); | ||||||
$this->output = $this->createMock(IOutput::class); | ||||||
|
||||||
$this->migration = new RemoveDeletedUsersCalendarSubscriptions($this->dbConnection, $this->userManager); | ||||||
} | ||||||
|
||||||
public function testGetName(): void { | ||||||
$this->assertEquals( | ||||||
'Clean up old calendar subscriptions from deleted users that were not cleaned-up', | ||||||
$this->migration->getName() | ||||||
); | ||||||
} | ||||||
|
||||||
/** | ||||||
* @dataProvider dataTestRun | ||||||
* @param array $subscriptions | ||||||
* @param array $userExists | ||||||
* @param int $deletions | ||||||
* @throws \Exception | ||||||
*/ | ||||||
public function testRun(array $subscriptions, array $userExists, int $deletions): void { | ||||||
$qb = $this->createMock(IQueryBuilder::class); | ||||||
|
||||||
$qb->method('select')->willReturn($qb); | ||||||
|
||||||
$functionBuilder = $this->createMock(IFunctionBuilder::class); | ||||||
|
||||||
$qb->method('func')->willReturn($functionBuilder); | ||||||
$functionBuilder->method('count')->willReturn($this->createMock(IQueryFunction::class)); | ||||||
|
||||||
$qb->method('selectDistinct') | ||||||
->with(['id', 'principaluri']) | ||||||
->willReturn($qb); | ||||||
|
||||||
$qb->method('from') | ||||||
->with('calendarsubscriptions') | ||||||
->willReturn($qb); | ||||||
|
||||||
$qb->method('setMaxResults') | ||||||
->willReturn($qb); | ||||||
|
||||||
$qb->method('setFirstResult') | ||||||
->willReturn($qb); | ||||||
|
||||||
$result = $this->createMock(IResult::class); | ||||||
|
||||||
$qb->method('execute') | ||||||
->willReturn($result); | ||||||
|
||||||
$result->expects($this->at(0)) | ||||||
->method('fetchOne') | ||||||
->willReturn(count($subscriptions)); | ||||||
|
||||||
$result | ||||||
->method('fetch') | ||||||
->willReturnOnConsecutiveCalls(...$subscriptions); | ||||||
|
||||||
$qb->method('delete') | ||||||
->with('calendarsubscriptions') | ||||||
->willReturn($qb); | ||||||
|
||||||
$expr = $this->createMock(IExpressionBuilder::class); | ||||||
|
||||||
$qb->method('expr')->willReturn($expr); | ||||||
$qb->method('createNamedParameter')->willReturn($this->createMock(IParameter::class)); | ||||||
$qb->method('where')->willReturn($qb); | ||||||
// Only when user exists | ||||||
$qb->expects($this->exactly($deletions))->method('executeStatement'); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
$this->dbConnection->method('getQueryBuilder')->willReturn($qb); | ||||||
|
||||||
|
||||||
$this->output->expects($this->once())->method('startProgress'); | ||||||
|
||||||
$this->output->expects($subscriptions === [] ? $this->never(): $this->once())->method('advance'); | ||||||
if (count($subscriptions)) { | ||||||
$this->userManager->method('userExists') | ||||||
->willReturnCallback(function (string $username) use ($userExists) { | ||||||
return $userExists[$username]; | ||||||
}); | ||||||
} | ||||||
$this->output->expects($this->once())->method('finishProgress'); | ||||||
$this->output->expects($this->once())->method('info')->with(sprintf('%d calendar subscriptions without an user have been cleaned up', $deletions)); | ||||||
|
||||||
$this->migration->run($this->output); | ||||||
} | ||||||
|
||||||
public function dataTestRun(): array { | ||||||
return [ | ||||||
[[], [], 0], | ||||||
[[[ | ||||||
'id' => 1, | ||||||
'principaluri' => 'users/principals/foo1', | ||||||
], | ||||||
[ | ||||||
'id' => 2, | ||||||
'principaluri' => 'users/principals/bar1', | ||||||
], | ||||||
[ | ||||||
'id' => 3, | ||||||
'principaluri' => 'users/principals/bar1', | ||||||
]], ['foo1' => true, 'bar1' => false], 2] | ||||||
]; | ||||||
} | ||||||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only available from NC 22
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.