[Pkg-owncloud-commits] [owncloud] 47/58: inlcude AD primary group in user filter, if a group is selected. fixes #12190
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 15:58:10 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag v8.0.6
in repository owncloud.
commit 0d5b4b95ef030e3ecc265c1e54673ca9df17dab4
Author: Arthur Schiwon <blizzz at owncloud.com>
Date: Mon Nov 17 16:30:50 2014 +0100
inlcude AD primary group in user filter, if a group is selected. fixes #12190
---
apps/user_ldap/lib/wizard.php | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php
index ea1cdbd..5a504cc 100644
--- a/apps/user_ldap/lib/wizard.php
+++ b/apps/user_ldap/lib/wizard.php
@@ -852,13 +852,23 @@ class Wizard extends LDAPUtility {
}
$base = $this->configuration->ldapBase[0];
foreach($cns as $cn) {
- $rr = $this->ldap->search($cr, $base, 'cn=' . $cn, array('dn'));
+ $rr = $this->ldap->search($cr, $base, 'cn=' . $cn, array('dn', 'primaryGroupToken'));
if(!$this->ldap->isResource($rr)) {
continue;
}
$er = $this->ldap->firstEntry($cr, $rr);
+ $attrs = $this->ldap->getAttributes($cr, $er);
$dn = $this->ldap->getDN($cr, $er);
- $filter .= '(memberof=' . $dn . ')';
+ if(empty($dn)) {
+ continue;
+ }
+ $filterPart = '(memberof=' . $dn . ')';
+ if(isset($attrs['primaryGroupToken'])) {
+ $pgt = $attrs['primaryGroupToken'][0];
+ $primaryFilterPart = '(primaryGroupID=' . $pgt .')';
+ $filterPart = '(|' . $filterPart . $primaryFilterPart . ')';
+ }
+ $filter .= $filterPart;
}
$filter .= ')';
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list