X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_userinfo.inc;h=783b66822fe500558313f1ca8a27c726243f02a5;hb=b868e20368d036501ec2c97c67bc8362e00753cb;hp=6595325b275078cace805735ea1a50662dcbcc36;hpb=786129696db99ec40b6a073b07dec456221c8f5e;p=gosa.git diff --git a/include/class_userinfo.inc b/include/class_userinfo.inc index 6595325b2..783b66822 100644 --- a/include/class_userinfo.inc +++ b/include/class_userinfo.inc @@ -33,6 +33,7 @@ class userinfo var $ACL= array(); var $ocMapping= array(); var $groups= array(); + var $result_cache =array(); /* get acl's an put them into the userinfo object attr subtreeACL (userdn:components, userdn:component1#sub1#sub2,component2,...) */ @@ -68,33 +69,9 @@ class userinfo function loadACL() { - -#--------------------------------------------------------------------------OLD-BUT-ACTIVE----------------------------- - $ldap= $this->config->get_ldap_link(); - - /* Load ACL's from all groups we're in */ - $this->subtreeACL= array(); - $ldap->cd($this->config->current['BASE']); - if ($this->gidNumber == -1){ - $ldap->search("(&(objectClass=posixGroup)(objectClass=gosaObject)". - "(memberUid=$this->username))"); - } else { - $ldap->search("(&(objectClass=posixGroup)(objectClass=gosaObject)". - "(|(memberUid=$this->username)(gidNumber=$this->gidNumber)))"); - } - - while($attrs = $ldap->fetch()){ - $base= preg_replace('/^[^,]+,ou=[^,]+,/i', "",$ldap->getDN()); - $base= preg_replace("/[ ]*,[ ]*/", ",", $base); - - for ($i= 0; $i<$attrs["gosaSubtreeACL"]["count"]; $i++){ - $this->subtreeACL[$base][]= $attrs["gosaSubtreeACL"][$i]; - } - } -#echo "NEW ACL LOADING --------------------------------------------------------------------------------------------
"; - $this->ACL= array(); $this->groups= array(); + $this->result_cache =array(); $ldap= $this->config->get_ldap_link(); $ldap->cd($this->config->current['BASE']); @@ -120,6 +97,31 @@ class userinfo $aclc[$attrs['dn']]= $ol; } + /* Resolve roles here. + */ + foreach($aclc as $dn => $data){ + foreach($data as $prio => $aclc_value) { + if($aclc_value['type'] == "role"){ + + unset($aclc[$dn][$prio]); + + $ldap->cat($aclc_value['acl'],array("gosaAclTemplate")); + $attrs = $ldap->fetch(); + + if(isset($attrs['gosaAclTemplate'])){ + for($i= 0; $i<$attrs['gosaAclTemplate']['count']; $i++){ + $tmp = @acl::explodeAcl($attrs['gosaAclTemplate'][$i]); + + foreach($tmp as $new_acl){ + $new_acl['members'] = $aclc_value['members']; + $aclc[$dn][] =$new_acl; + } + } + } + } + } + } + /* ACL's read, sort for tree depth */ asort($aclp); @@ -157,7 +159,6 @@ class userinfo } } - } @@ -206,6 +207,11 @@ class userinfo continue; } + if($subacl['type'] == "role") { + echo "role skipped"; + continue; + } + /* Per attribute ACL? */ if (isset($subacl['acl'][$object][$attribute])){ $acl= $this->mergeACL($acl, $subacl['type'], $subacl['acl'][$object][$attribute]); @@ -226,7 +232,6 @@ class userinfo /* If attribute is "", we want to know, if we've *any* permissions here... */ if ($attribute == "" && isset($subacl['acl'][$object])){ -echo "Global $object
"; foreach($subacl['acl'][$object] as $attr => $dummy){ $acl= $this->mergeACL($acl, $subacl['type'], $subacl['acl'][$object][$attr]); } @@ -281,6 +286,11 @@ echo "Global $object
"; } } + /* Load departments here, if we are using php4 */ + if(is_php4() && !count($this->config->departments)){ + $this->config->get_departments(); + } + /* For all gosaDepartments */ foreach ($this->config->departments as $dn){ $acl= array("r" => "", "w" => "", "c" => "", "d" => "", "m" => "", "a" => ""); @@ -311,6 +321,11 @@ echo "Global $object
"; $acl= $this->cleanACL($acl, TRUE); continue; } + + if($subacl['type'] == 'role'){ + echo "role skipped"; + continue; + } /* Per object ACL? */ foreach ($objects as $object){ @@ -351,6 +366,9 @@ echo "Global $object
"; function mergeACL($acl, $type, $newACL) { + if(preg_match("/w/",$newACL) && !preg_match("/r/",$newACL)){ + $newACL .= "r"; + } foreach(str_split($newACL) as $char){ /* Ignore invalid characters */ @@ -411,6 +429,49 @@ echo "Global $object
"; return ($acl); } + + /* #FIXME This could be logical wrong or could be optimized in the future + Return combined acls for a given category. + All acls will be combined like boolean AND + As example ('rwcdm' + 'rcd' + 'wrm'= 'r') + + Results will be cached in $this->result_cache. + $this->result_cache will be resetted if load_acls is called. + */ + function has_complete_category_acls($dn,$category) + { + $acl = "rwcdm"; + $types = "rwcdm"; + + + if(!is_string($category)){ + trigger_error("category must be string"); + $acl = ""; + }else{ + if(!isset($this->result_cache['has_complete_category_acls'][$dn][$category])) { + if (isset($this->ocMapping[$category])){ + foreach($this->ocMapping[$category] as $oc){ + + /* Skip objectClass '0' (e.g. users/0) get_permissions will ever return '' ?? */ + if($oc == "0") continue; + $tmp = $this->get_permissions($dn, $category."/".$oc); + for($i = 0 ; $i < strlen($types); $i++) { + if(!preg_match("/".$types[$i]."/",$tmp)){ + $acl = preg_replace("/".$types[$i]."/","",$acl); + } + } + } + }else{ + trigger_error("Invalid type of category ".$category); + $acl = ""; + } + $this->result_cache['has_complete_category_acls'][$dn][$category] = $acl; + }else{ + $acl = $this->result_cache['has_complete_category_acls'][$dn][$category]; + } + } + return($acl); + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: