From 1026b2131c53d074cf71e8e3ca4766b0a1b4ead3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Thu, 3 Aug 2023 13:56:14 +0200 Subject: [PATCH] Fix check-group command for new groups MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/user_ldap/lib/Command/CheckGroup.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/apps/user_ldap/lib/Command/CheckGroup.php b/apps/user_ldap/lib/Command/CheckGroup.php index 48fe631a09b..d55b846020a 100644 --- a/apps/user_ldap/lib/Command/CheckGroup.php +++ b/apps/user_ldap/lib/Command/CheckGroup.php @@ -86,13 +86,15 @@ class CheckGroup extends Command { try { $this->assertAllowed($input->getOption('force')); $gid = $input->getArgument('ocName'); + $wasMapped = $this->groupWasMapped($gid); if ($this->backend->getLDAPAccess($gid)->stringResemblesDN($gid)) { $groupname = $this->backend->dn2GroupName($gid); if ($groupname !== false) { $gid = $groupname; } } - $wasMapped = $this->groupWasMapped($gid); + /* Search to trigger mapping for new groups */ + $this->backend->getGroups($gid); $exists = $this->backend->groupExistsOnLDAP($gid, true); if ($exists === true) { $output->writeln('The group is still available on LDAP.'); @@ -113,7 +115,7 @@ class CheckGroup extends Command { } } - public function onGroupCreatedEvent(GroupChangedEvent $event, OutputInterface $output): void { + public function onGroupCreatedEvent(GroupCreatedEvent $event, OutputInterface $output): void { $output->writeln('The group '.$event->getGroup()->getGID().' was added to Nextcloud with '.$event->getGroup()->count().' users'); } @@ -131,11 +133,15 @@ class CheckGroup extends Command { /** * checks whether a group is actually mapped - * @param string $ocName the groupname as used in Nextcloud + * @param string $gid the groupname as passed to the command */ - protected function groupWasMapped(string $ocName): bool { - $dn = $this->mapping->getDNByName($ocName); - return $dn !== false; + protected function groupWasMapped(string $gid): bool { + $dn = $this->mapping->getDNByName($gid); + if ($dn !== false) { + return true; + } + $name = $this->mapping->getNameByDN($gid); + return $name !== false; } /** -- 2.39.5