-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leverage the new user removal handler API for cascade deleting team r…
…oles
- Loading branch information
Showing
3 changed files
with
69 additions
and
23 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
64 changes: 64 additions & 0 deletions
64
modules/apigee_edge_teams/src/User/RemoveTeamRolesWithUserSynchronousUserRemovalHandler.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,64 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright 2023 Google Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* version 2 as published by the Free Software Foundation. | ||
* | ||
* 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
* MA 02110-1301, USA. | ||
*/ | ||
|
||
namespace Drupal\apigee_edge_teams\User; | ||
|
||
use Drupal\apigee_edge\User\UserRemovalHandlerInterface; | ||
use Drupal\Core\Entity\EntityTypeManagerInterface; | ||
use Drupal\Core\Utility\Error; | ||
use Drupal\user\UserInterface; | ||
use Psr\Log\LoggerInterface; | ||
use Psr\Log\LogLevel; | ||
|
||
/** | ||
* Ensures team roles of the removed user also get deleted. | ||
*/ | ||
final class RemoveTeamRolesWithUserSynchronousUserRemovalHandler implements UserRemovalHandlerInterface { | ||
|
||
/** | ||
* RemoveTeamRolesWithUserSynchronousUserRemovalHandler constructor. | ||
*/ | ||
public function __construct(private readonly UserRemovalHandlerInterface $decorated, private readonly EntityTypeManagerInterface $entityTypeManager, private readonly LoggerInterface $logger) {} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function __invoke(UserInterface $account): void { | ||
($this->decorated)($account); | ||
|
||
/** @var \Drupal\apigee_edge_teams\Entity\Storage\TeamMemberRoleStorageInterface $team_member_role_storage */ | ||
$team_member_role_storage = $this->entityTypeManager->getStorage('team_member_role'); | ||
// When a user gets deleted then its developer account also gets deleted | ||
// from Apigee Edge which removes its (team) company memberships. | ||
// We must delete this user's team roles from Drupal as well. | ||
foreach ($team_member_role_storage->loadByDeveloper($account) as $team_member_roles_in_team) { | ||
try { | ||
$team_member_roles_in_team->delete(); | ||
} | ||
catch (\Exception $e) { | ||
Error::logException($this->logger, $e, "Integrity check: Failed to remove %developer team member's roles in %team team when its Drupal user got deleted. Reason: @message", [ | ||
'%developer' => $account->getEmail(), | ||
'%team' => $team_member_roles_in_team->getTeam()->id(), | ||
], LogLevel::CRITICAL); | ||
} | ||
} | ||
} | ||
|
||
} |