-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Anna Larch <anna@nextcloud.com>
- Loading branch information
1 parent
8a613c3
commit cc930ce
Showing
18 changed files
with
1,472 additions
and
10 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,55 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* @copyright 2022 Anna Larch <anna.larch@gmx.net> | ||
* | ||
* @author 2022 Anna Larch <anna.larch@gmx.net> | ||
* | ||
* @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\Mail\BackgroundJob; | ||
|
||
use OCA\Mail\Service\IMipService; | ||
use OCP\AppFramework\Utility\ITimeFactory; | ||
use OCP\BackgroundJob\TimedJob; | ||
use function defined; | ||
use function method_exists; | ||
|
||
class IMipMessageJob extends TimedJob { | ||
private IMipService $iMipService; | ||
|
||
public function __construct(ITimeFactory $time, | ||
IMipService $iMipService) { | ||
parent::__construct($time); | ||
|
||
// Run once per hour | ||
$this->setInterval(60 * 60); | ||
/** | ||
* @todo remove checks with 24+ | ||
*/ | ||
if (defined('\OCP\BackgroundJob\IJob::TIME_SENSITIVE') && method_exists($this, 'setTimeSensitivity')) { | ||
$this->setTimeSensitivity(self::TIME_SENSITIVE); | ||
} | ||
$this->iMipService = $iMipService; | ||
} | ||
|
||
protected function run($argument): void { | ||
$this->iMipService->process(); | ||
} | ||
} |
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,101 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* @copyright Anna Larch <anna.larch@gmx.net> | ||
* | ||
* @author Anna Larch <anna.larch@gmx.net> | ||
* | ||
* @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\Mail\BackgroundJob; | ||
|
||
use OCA\Mail\Service\AccountService; | ||
use OCA\Mail\Service\PreprocessingService; | ||
use OCP\AppFramework\Db\DoesNotExistException; | ||
use OCP\AppFramework\Utility\ITimeFactory; | ||
use OCP\BackgroundJob\IJobList; | ||
use OCP\BackgroundJob\TimedJob; | ||
use OCP\DB\Exception; | ||
use OCP\IUserManager; | ||
use Psr\Log\LoggerInterface; | ||
use function sprintf; | ||
|
||
class PreviewEnhancementProcessingJob extends TimedJob { | ||
private IUserManager $userManager; | ||
private AccountService $accountService; | ||
private LoggerInterface $logger; | ||
private IJobList $jobList; | ||
private PreprocessingService $preprocessingService; | ||
|
||
public function __construct(ITimeFactory $time, | ||
IUserManager $userManager, | ||
AccountService $accountService, | ||
PreprocessingService $preprocessingService, | ||
LoggerInterface $logger, | ||
IJobList $jobList) { | ||
parent::__construct($time); | ||
|
||
$this->userManager = $userManager; | ||
$this->accountService = $accountService; | ||
$this->logger = $logger; | ||
$this->jobList = $jobList; | ||
$this->preprocessingService = $preprocessingService; | ||
|
||
$this->setInterval(3600); | ||
$this->setTimeSensitivity(self::TIME_SENSITIVE); | ||
} | ||
|
||
/** | ||
* @return void | ||
*/ | ||
public function run($argument) { | ||
$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; | ||
} | ||
|
||
$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 preprocessing of messages', | ||
$account->getId(), | ||
$account->getUserId() | ||
)); | ||
return; | ||
} | ||
|
||
$dbAccount = $account->getMailAccount(); | ||
if (!is_null($dbAccount->getProvisioningId()) && $dbAccount->getInboundPassword() === null) { | ||
$this->logger->info("Ignoring preprocessing job for provisioned account that has no password set yet"); | ||
return; | ||
} | ||
|
||
try { | ||
$limitTimestamp = $this->time->getTime() - (60 * 60 * 24 * 14); // Two weeks into the past | ||
$this->preprocessingService->process($limitTimestamp, $account); | ||
} catch (Exception $e) { | ||
$this->logger->error('Error processing messages', ['exception' => $e]); | ||
} | ||
} | ||
} |
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.