← Back
Editing: UserDeletedListener.php
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Mail\Listener; use OCA\Mail\Exception\ClientException; use OCA\Mail\Service\AccountService; use OCA\Mail\Service\DelegationService; use OCA\Mail\Service\TextBlockService; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\User\Events\UserDeletedEvent; use Psr\Log\LoggerInterface; /** * @template-implements IEventListener<Event|UserDeletedEvent> */ class UserDeletedListener implements IEventListener { /** @var AccountService */ private $accountService; /** @var LoggerInterface */ private $logger; public function __construct( AccountService $accountService, private TextBlockService $textBlockService, private DelegationService $delegationService, LoggerInterface $logger, ) { $this->accountService = $accountService; $this->logger = $logger; } #[\Override] public function handle(Event $event): void { if (!($event instanceof UserDeletedEvent)) { // Unrelated return; } $user = $event->getUser(); foreach ($this->accountService->findByUserId($user->getUID()) as $account) { try { $this->accountService->delete( $user->getUID(), $account->getId() ); } catch (ClientException $e) { $this->logger->error('Could not delete user\'s Mail account: ' . $e->getMessage(), [ 'exception' => $e, ]); } } $this->textBlockService->deleteByUserId( $user->getUID() ); $this->delegationService->deleteByUserId( $user->getUID() ); } }
Save File
Cancel