Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-05-11 21:25:11 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-05-12 15:09:08 +0300
commit097501676e021d16ddbdeacbc8c4ebb28de8f63c (patch)
tree47cc1f2eaeff471a996869aeb3331f3d32b81ba2 /lib/BackgroundJob
parent7f1e09adb087ffa825de76d8c2c1dd0f74ffaf88 (diff)
Clean up the database in the background
* Orphaned mailboxes * Orphaned messages * Orphaned aliases * Orphaned collected recipients Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/BackgroundJob')
-rw-r--r--lib/BackgroundJob/CleanupJob.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/BackgroundJob/CleanupJob.php b/lib/BackgroundJob/CleanupJob.php
new file mode 100644
index 000000000..13cf95961
--- /dev/null
+++ b/lib/BackgroundJob/CleanupJob.php
@@ -0,0 +1,48 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @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\CleanupService;
+use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\BackgroundJob\TimedJob;
+
+class CleanupJob extends TimedJob {
+
+ /** @var CleanupService */
+ private $cleanupService;
+
+ public function __construct(ITimeFactory $time,
+ CleanupService $cleanupService) {
+ parent::__construct($time);
+ $this->cleanupService = $cleanupService;
+
+ $this->setInterval(24 * 60 * 60);
+ }
+
+ protected function run($argument) {
+ $this->cleanupService->cleanUp();
+ }
+}