mirror of
https://github.com/nextcloud/server.git
synced 2026-04-14 21:48:02 -04:00
Merge pull request #42405 from nextcloud/fix/42374/ldap-remembered-groups-format
fix(LDAP): ensure stored groups are formatted as simple list
This commit is contained in:
commit
728dfa6799
2 changed files with 29 additions and 2 deletions
|
|
@ -685,7 +685,7 @@ class Group_LDAP extends ABackend implements GroupInterface, IGroupLDAP, IGetDis
|
|||
|
||||
protected function getCachedGroupsForUserId(string $uid): array {
|
||||
$groupStr = $this->config->getUserValue($uid, 'user_ldap', 'cached-group-memberships-' . $this->access->connection->getConfigPrefix(), '[]');
|
||||
return json_decode($groupStr) ?? [];
|
||||
return json_decode($groupStr, true) ?? [];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -838,7 +838,7 @@ class Group_LDAP extends ABackend implements GroupInterface, IGroupLDAP, IGetDis
|
|||
return $groups;
|
||||
}
|
||||
|
||||
$groups = array_unique($groups, SORT_LOCALE_STRING);
|
||||
$groups = array_values(array_unique($groups, SORT_LOCALE_STRING));
|
||||
$this->access->connection->writeToCache($cacheKey, $groups);
|
||||
|
||||
$groupStr = \json_encode($groups);
|
||||
|
|
|
|||
|
|
@ -901,6 +901,33 @@ class Group_LDAPTest extends TestCase {
|
|||
$this->assertTrue(in_array('groupF', $returnedGroups));
|
||||
}
|
||||
|
||||
/**
|
||||
* regression tests against a case where a json object was stored instead of expected list
|
||||
* @see https://github.com/nextcloud/server/issues/42374
|
||||
*/
|
||||
public function testGetUserGroupsOfflineUserUnexpectedJson() {
|
||||
$this->enableGroups();
|
||||
|
||||
$offlineUser = $this->createMock(OfflineUser::class);
|
||||
|
||||
$this->config->expects($this->any())
|
||||
->method('getUserValue')
|
||||
->with('userX', 'user_ldap', 'cached-group-memberships-', $this->anything())
|
||||
// results in a json object: {"0":"groupB","2":"groupF"}
|
||||
->willReturn(\json_encode([0 => 'groupB', 2 => 'groupF']));
|
||||
|
||||
$this->access->userManager->expects($this->any())
|
||||
->method('get')
|
||||
->with('userX')
|
||||
->willReturn($offlineUser);
|
||||
|
||||
$this->initBackend();
|
||||
$returnedGroups = $this->groupBackend->getUserGroups('userX');
|
||||
$this->assertCount(2, $returnedGroups);
|
||||
$this->assertTrue(in_array('groupB', $returnedGroups));
|
||||
$this->assertTrue(in_array('groupF', $returnedGroups));
|
||||
}
|
||||
|
||||
public function testGetUserGroupsUnrecognizedOfflineUser() {
|
||||
$this->enableGroups();
|
||||
$dn = 'cn=userX,dc=foobar';
|
||||
|
|
|
|||
Loading…
Reference in a new issue