-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10210 from nextcloud/backport/10038/stable4.0
[stable4.0] feat: implement periodic full sync job to repair cache inconsistencies
- Loading branch information
Showing
10 changed files
with
398 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
namespace OCA\Mail\BackgroundJob; | ||
|
||
use OCA\Mail\Db\MailboxMapper; | ||
use OCA\Mail\Events\SynchronizationEvent; | ||
use OCA\Mail\Service\AccountService; | ||
use OCA\Mail\Service\Sync\SyncService; | ||
use OCP\AppFramework\Db\DoesNotExistException; | ||
use OCP\AppFramework\Utility\ITimeFactory; | ||
use OCP\BackgroundJob\IJobList; | ||
use OCP\BackgroundJob\TimedJob; | ||
use OCP\EventDispatcher\IEventDispatcher; | ||
use OCP\IUserManager; | ||
use Psr\Log\LoggerInterface; | ||
|
||
class RepairSyncJob extends TimedJob { | ||
public function __construct( | ||
ITimeFactory $time, | ||
private SyncService $syncService, | ||
private AccountService $accountService, | ||
private IUserManager $userManager, | ||
private MailboxMapper $mailboxMapper, | ||
private IJobList $jobList, | ||
private LoggerInterface $logger, | ||
private IEventDispatcher $dispatcher, | ||
) { | ||
parent::__construct($time); | ||
|
||
$this->setInterval(3600 * 24 * 7); | ||
$this->setTimeSensitivity(self::TIME_INSENSITIVE); | ||
} | ||
|
||
protected function run($argument): void { | ||
$accountId = (int)$argument['accountId']; | ||
|
||
try { | ||
$account = $this->accountService->findById($accountId); | ||
} catch (DoesNotExistException $e) { | ||
$this->logger->debug('Could not find account <' . $accountId . '> removing from jobs'); | ||
$this->jobList->remove(self::class, $argument); | ||
return; | ||
} | ||
|
||
if (!$account->getMailAccount()->canAuthenticateImap()) { | ||
$this->logger->debug('No authentication on IMAP possible, skipping background sync job'); | ||
return; | ||
} | ||
|
||
$user = $this->userManager->get($account->getUserId()); | ||
if ($user === null || !$user->isEnabled()) { | ||
$this->logger->debug(sprintf( | ||
'Account %d of user %s could not be found or was disabled, skipping background sync', | ||
$account->getId(), | ||
$account->getUserId() | ||
)); | ||
return; | ||
} | ||
|
||
$rebuildThreads = false; | ||
$trashMailboxId = $account->getMailAccount()->getTrashMailboxId(); | ||
$snoozeMailboxId = $account->getMailAccount()->getSnoozeMailboxId(); | ||
$sentMailboxId = $account->getMailAccount()->getSentMailboxId(); | ||
$junkMailboxId = $account->getMailAccount()->getJunkMailboxId(); | ||
foreach ($this->mailboxMapper->findAll($account) as $mailbox) { | ||
$isExcluded = [ | ||
$trashMailboxId === $mailbox->getId(), | ||
$snoozeMailboxId === $mailbox->getId(), | ||
$sentMailboxId === $mailbox->getId(), | ||
$junkMailboxId === $mailbox->getId(), | ||
]; | ||
if (in_array(true, $isExcluded, true)) { | ||
continue; | ||
} | ||
|
||
if ($this->syncService->repairSync($account, $mailbox) > 0) { | ||
$rebuildThreads = true; | ||
} | ||
} | ||
|
||
$this->dispatcher->dispatchTyped( | ||
new SynchronizationEvent($account, $this->logger, $rebuildThreads), | ||
); | ||
} | ||
} |
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
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
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
Oops, something went wrong.