Code

Converted buttons:
[gosa.git] / gosa-core / include / class_acl.inc
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 /*! \brief ACL management plugin */ 
24 class acl extends plugin
25 {
26   /* Definitions */
27   var $plHeadline= "Access control";
28   var $plDescription= "Manage access control lists";
30   /* attribute list for save action */
31   var $attributes= array('gosaAclEntry');
32   var $objectclasses= array('gosaAcl');
34   /* Helpers */
35   var $dialogState= "head";
36   var $gosaAclEntry= array();
37   var $aclType= "";
38   var $aclObject= "";
39   var $aclContents= array();
40   var $target= "group";
41   var $aclTypes= array();
42   var $aclObjects= array();
43   var $aclFilter= "";
44   var $aclMyObjects= array();
45   var $users= array();
46   var $roles= array();
47   var $groups= array();
48   var $recipients= array();
49   var $isContainer= FALSE;
50   var $currentIndex= 0;
51   var $wasNewEntry= FALSE;
52   var $ocMapping= array();
53   var $savedAclContents= array();
54   var $myAclObjects = array();
55   var $acl_category = "acl/";
57   function acl (&$config, $parent, $dn= NULL)
58   {
59     /* Include config object */
60     plugin::plugin($config, $dn);
62     /* Load ACL's */
63     $this->gosaAclEntry= array();
64     if (isset($this->attrs['gosaAclEntry'])){
65       for ($i= 0; $i<$this->attrs['gosaAclEntry']['count']; $i++){
66         $acl= $this->attrs['gosaAclEntry'][$i];
67         $this->gosaAclEntry= array_merge($this->gosaAclEntry, acl::explodeACL($acl));
68       }
69     }
70     ksort($this->gosaAclEntry);
72     /* Save parent - we've to know more about it than other plugins... */
73     $this->parent= &$parent;
75     /* Container? */
76     if (preg_match('/^(o|ou|c|l|dc)=/i', $dn)){
77       $this->isContainer= TRUE;
78     }
80     /* Users */
81     $ui= get_userinfo();
82     $tag= $ui->gosaUnitTag;
83     $ldap= $config->get_ldap_link();
84     $ldap->cd($config->current['BASE']);
85     if ($tag == ""){
86       $ldap->search('(objectClass=gosaAccount)', array('uid', 'cn'));
87     } else {
88       $ldap->search('(&(objectClass=gosaAccount)(gosaUnitTag='.$tag.'))', array('uid', 'cn'));
89     }
90     while ($attrs= $ldap->fetch()){
92       // Allow objects without cn to be listed without causing an error.
93       if(!isset($attrs['cn'][0]) && isset($attrs['uid'][0])){
94         $this->users['U:'.$attrs['dn']]=  $attrs['uid'][0];
95       }elseif(!isset($attrs['uid'][0]) && isset($attrs['cn'][0])){
96         $this->users['U:'.$attrs['dn']]=  $attrs['cn'][0];
97       }elseif(!isset($attrs['uid'][0]) && !isset($attrs['cn'][0])){
98         $this->users['U:'.$attrs['dn']]= $attrs['dn'];
99       }else{
100         $this->users['U:'.$attrs['dn']]= $attrs['cn'][0].' ['.$attrs['uid'][0].']';
101       }
103     }
104     ksort($this->users);
106     /* Groups */
107     $ldap->cd($config->current['BASE']);
108 #    if ($tag == ""){
109       $ldap->search('(objectClass=posixGroup)', array('cn', 'description'));
110 #    } else {
111 #      $ldap->search('(&(objectClass=posixGroup)(gosaUnitTag='.$tag.'))', array('cn', 'description'));
112 #    }
113     while ($attrs= $ldap->fetch()){
114       $dsc= "";
115       if (isset($attrs['description'][0])){
116         $dsc= $attrs['description'][0];
117       }
118       $this->groups['G:'.$attrs['dn']]= $attrs['cn'][0].' ['.$dsc.']';
119     }
120     $this->groups['G:*']= _("All users");
121     ksort($this->groups);
123     /* Roles */
124     $ldap->cd($config->current['BASE']);
125 #    if ($tag == ""){
126       $ldap->search('(objectClass=gosaRole)', array('cn', 'description','gosaAclTemplate','dn'));
127 #    } else {
128 #     $ldap->search('(&(objectClass=gosaRole)(gosaUnitTag='.$tag.'))', array('cn', 'description','gosaAclTemplate','dn'));
129 #    }
130     while ($attrs= $ldap->fetch()){
131       $dsc= "";
132       if (isset($attrs['description'][0])){
133         $dsc= $attrs['description'][0];
134       }
136       $role_id = $attrs['dn'];
138       $this->roles[$role_id]['acls'] =array();
139       for ($i= 0; $i < $attrs['gosaAclTemplate']['count']; $i++){
140         $acl= $attrs['gosaAclTemplate'][$i];
141         $this->roles[$role_id]['acls'] = array_merge($this->roles[$role_id]['acls'],acl::explodeACL($acl));
142       }
143       $this->roles[$role_id]['description'] = $dsc;
144       $this->roles[$role_id]['cn'] = $attrs['cn'][0];
145     }
147     /* Objects */
148     $tmp= session::global_get('plist');
149     $plist= $tmp->info;
150     $cats = array();
151     if (isset($this->parent) && $this->parent !== NULL){
152       $oc= array();
153       foreach ($this->parent->by_object as $key => $obj){
154         $oc= array_merge($oc, $obj->objectclasses);
155         if(isset($obj->acl_category)){
156                                         $tmp= str_replace("/","",$obj->acl_category);
157           $cats[$tmp] = $tmp;
158         }
159       }
160       if (in_array_ics('organizationalUnit', $oc)){
161         $this->isContainer= TRUE;
162       }
163     } else {
164       $oc=  $this->attrs['objectClass'];
165     }
167     /* Extract available categories from plugin info list */
168     foreach ($plist as $class => $acls){
170       /* Only feed categories */
171       if (isset($acls['plCategory'])){
173         /* Walk through supplied list and feed only translated categories */
174         foreach($acls['plCategory'] as $idx => $data){
176           /* Non numeric index means -> base object containing more informations */
177           if (preg_match('/^[0-9]+$/', $idx)){
179             if (!isset($this->ocMapping[$data])){
180               $this->ocMapping[$data]= array();
181               $this->ocMapping[$data][]= '0';
182             }
184             if(isset($cats[$data])){
185               $this->myAclObjects[$data.'/'.$class]= $acls['plDescription'];
186             }
187             $this->ocMapping[$data][]= $class;
188           } else {
189             if (!isset($this->ocMapping[$idx])){
190               $this->ocMapping[$idx]= array();
191               $this->ocMapping[$idx][]= '0';
192             }
193             $this->ocMapping[$idx][]= $class;
194             $this->aclObjects[$idx]= $data['description'];
196             /* Additionally filter the classes we're interested in in "self edit" mode */
197             if (is_array($data['objectClass'])){
198               foreach($data['objectClass'] as $objectClass){
199                 if (in_array_ics($objectClass, $oc)){
200                   $this->myAclObjects[$idx.'/'.$class]= $acls['plDescription'];
201                   break;
202                 }
203               }
204             } else {
205               if (in_array_ics($data['objectClass'], $oc)){
206                 $this->myAclObjects[$idx.'/'.$class]= $acls['plDescription'];
207               }
208             }
209           }
211         }
212       }
213     }
214     $this->aclObjects['all']= '*&nbsp;'._("All categories");
215     $this->ocMapping['all']= array('0' => 'all');
217     /* Sort categories */
218     asort($this->aclObjects);
220     /* Fill acl types */
221     if ($this->isContainer){
222       $this->aclTypes= array("reset" => _("Reset ACLs"),
223                              "one" => _("One level"),
224                              "base" => _("Current object"),
225                              "sub" => _("Complete subtree"),
226                              "psub" => _("Complete subtree (permanent)"),
227                              "role" => _("Use ACL defined in role"));
228     } else {
229       $this->aclTypes= array("base" => _("Current object"),
230           "role" => _("Use ACL defined in role"));
231     }
232     asort($this->aclTypes);
233     $this->targets= array("user" => _("Users"), "group" => _("Groups"));
234     asort($this->targets);
236     /* Finally - we want to get saved... */
237     $this->is_account= TRUE;
238   }
241   function execute()
242   {
243     /* Call parent execute */
244     plugin::execute();
246     $tmp= session::global_get('plist');
247     $plist= $tmp->info;
249     /* Handle posts */
250     if (isset($_POST['new_acl'])){
251       $this->dialogState= 'create';
252       $this->dialog= TRUE;
253       $this->currentIndex= count($this->gosaAclEntry);
254       $this->loadAclEntry(TRUE);
255     }
257     $new_acl= array();
258     $aclDialog= FALSE;
259     $firstedit= FALSE;
261     /* Act on HTML post and gets here.
262      */
263     if(isset($_GET['id']) && isset($_GET['act']) && $_GET['act'] == "edit"){
264       $id = trim($_GET['id']);
265       $this->dialogState= 'create';
266       $firstedit= TRUE;
267       $this->dialog= TRUE;
268       $this->currentIndex= $id;
269       $this->loadAclEntry();
270     }
272     foreach($_POST as $name => $post){
274       /* Actions... */
275       if (preg_match('/^acl_edit_[0-9]*$/', $name)){
276         $this->dialogState= 'create';
277         $firstedit= TRUE;
278         $this->dialog= TRUE;
279         $this->currentIndex= preg_replace('/^acl_edit_([0-9]*)$/', '\1', $name);
280         $this->loadAclEntry();
281         continue;
282       }
284       if (preg_match('/^cat_edit_.*$/', $name)){
285         $this->aclObject= preg_replace('/^cat_edit_(.*)$/', '\1', $name);
286         $this->dialogState= 'edit';
287         foreach ($this->ocMapping[$this->aclObject] as $oc){
288           if (isset($this->aclContents[$oc])){
289             $this->savedAclContents[$oc]= $this->aclContents[$oc];
290           }
291         }
292         continue;
293       }
295       /* Only handle posts, if we allowed to modify ACLs */
296       if(!$this->acl_is_writeable("")){
297         continue;
298       }
300       if (preg_match('/^acl_del_[0-9]*$/', $name)){
301         unset($this->gosaAclEntry[preg_replace('/^acl_del_([0-9]*)$/', '\1', $name)]);
302         continue;
303       }
305       if (preg_match('/^cat_del_.*$/', $name)){
306         $idx= preg_replace('/^cat_del_(.*)$/', '\1', $name);
307         foreach ($this->ocMapping[$idx] as $key){
308           if(isset($this->aclContents[$idx]))
309             unset($this->aclContents[$idx]);
310           if(isset($this->aclContents["$idx/$key"]))
311             unset($this->aclContents["$idx/$key"]);
312         }
313         continue;
314       }
316       /* Sorting... */
317       if (preg_match('/^sortup_[0-9]*$/', $name)){
318         $index= preg_replace('/^sortup_([0-9]*)$/', '\1', $name);
319         if ($index > 0){
320           $tmp= $this->gosaAclEntry[$index];
321           $this->gosaAclEntry[$index]= $this->gosaAclEntry[$index-1];
322           $this->gosaAclEntry[$index-1]= $tmp;
323         }
324         continue;
325       }
326       if (preg_match('/^sortdown_[0-9]*$/', $name)){
327         $index= preg_replace('/^sortdown_([0-9]*)$/', '\1', $name);
328         if ($index < count($this->gosaAclEntry)-1){
329           $tmp= $this->gosaAclEntry[$index];
330           $this->gosaAclEntry[$index]= $this->gosaAclEntry[$index+1];
331           $this->gosaAclEntry[$index+1]= $tmp;
332         }
333         continue;
334       }
336       /* ACL saving... */
337       if (preg_match('/^acl_.*_[^xy]$/', $name)){
338         list($dummy, $object, $attribute, $value)= explode('_', $name);
340         /* Skip for detection entry */
341         if ($object == 'dummy') {
342           continue;
343         }
345         /* Ordinary ACLs */
346         if (!isset($new_acl[$object])){
347           $new_acl[$object]= array();
348         }
349         if (isset($new_acl[$object][$attribute])){
350           $new_acl[$object][$attribute].= $value;
351         } else {
352           $new_acl[$object][$attribute]= $value;
353         }
354       }
356       // Remember the selected ACL role.
357       if(isset($_POST['selected_role']) && $_POST['aclType'] == 'role'){
358         $this->aclContents = "";
359         $this->aclContents = base64_decode($_POST['selected_role']);
360       }
361     }
363     if(isset($_POST['acl_dummy_0_0_0'])){
364       $aclDialog= TRUE;
365     }
367     if($this->acl_is_writeable("")){
368       
369       /* Only be interested in new acl's, if we're in the right _POST place */
370       if ($aclDialog && $this->aclObject != "" && is_array($this->ocMapping[$this->aclObject])){
372         foreach ($this->ocMapping[$this->aclObject] as $oc){
374           if(isset($this->aclContents[$oc]) && is_array($this->aclContents)){
375             unset($this->aclContents[$oc]);
376           }elseif(isset($this->aclContents[$this->aclObject.'/'.$oc]) && is_array($this->aclContents)){
377             unset($this->aclContents[$this->aclObject.'/'.$oc]);
378           }else{
379 #          trigger_error("Huhm?");
380           }
381           if (isset($new_acl[$oc]) && is_array($new_acl)){
382             $this->aclContents[$oc]= $new_acl[$oc];
383           }
384           if (isset($new_acl[$this->aclObject.'/'.$oc]) && is_array($new_acl)){
385             $this->aclContents[$this->aclObject.'/'.$oc]= $new_acl[$this->aclObject.'/'.$oc];
386           }
387         }
388       }
390       /* Save new acl in case of base edit mode */
391       if ($this->aclType == 'base' && !$firstedit){
392         $this->aclContents= $new_acl;
393       }
394     }
396     /* Cancel new acl? */
397     if (isset($_POST['cancel_new_acl'])){
398       $this->dialogState= 'head';
399       $this->dialog= FALSE;
400       if ($this->wasNewEntry){
401         unset ($this->gosaAclEntry[$this->currentIndex]);
402       }
403     }
405     /* Save common values */
406     if($this->acl_is_writeable("")){
407       foreach (array("aclType","aclFilter", "aclObject", "target") as $key){
408         if (isset($_POST[$key])){
409           $this->$key= validate($_POST[$key]);
410         }
411       }
412     }
414     /* Store ACL in main object? */
415     if (isset($_POST['submit_new_acl'])){
416       $this->gosaAclEntry[$this->currentIndex]['type']= $this->aclType;
417       $this->gosaAclEntry[$this->currentIndex]['members']= $this->recipients;
418       $this->gosaAclEntry[$this->currentIndex]['acl']= $this->aclContents;
419       $this->gosaAclEntry[$this->currentIndex]['filter']= $this->aclFilter;
420       $this->dialogState= 'head';
421       $this->dialog= FALSE;
422     }
424     /* Cancel edit acl? */
425     if (isset($_POST['cancel_edit_acl'])){
426       $this->dialogState= 'create';
427       foreach ($this->ocMapping[$this->aclObject] as $oc){
428         if (isset($this->savedAclContents[$oc])){
429           $this->aclContents[$oc]= $this->savedAclContents[$oc];
430         }
431       }
432     }
434     /* Save edit acl? */
435     if (isset($_POST['submit_edit_acl'])){
436       $this->dialogState= 'create';
437     }
439     /* Add acl? */
440     if (isset($_POST['add_acl']) && $_POST['aclObject'] != ""){
441       $this->dialogState= 'edit';
442       $this->savedAclContents= array();
443       foreach ($this->ocMapping[$this->aclObject] as $oc){
444         if (isset($this->aclContents[$oc])){
445           $this->savedAclContents[$oc]= $this->aclContents[$oc];
446         }
447       }
448     }
450     /* Add to list? */
451     if (isset($_POST['add']) && isset($_POST['source'])){
452       foreach ($_POST['source'] as $key){
453         if ($this->target == 'user'){
454           $this->recipients[$key]= $this->users[$key];
455         }
456         if ($this->target == 'group'){
457           $this->recipients[$key]= $this->groups[$key];
458         }
459       }
460       ksort($this->recipients);
461     }
463     /* Remove from list? */
464     if (isset($_POST['del']) && isset($_POST['recipient'])){
465       foreach ($_POST['recipient'] as $key){
466           unset($this->recipients[$key]);
467       }
468     }
470     /* Create templating instance */
471     $smarty= get_smarty();
472     $smarty->assign("acl_readable",$this->acl_is_readable(""));
473     if(!$this->acl_is_readable("")){
474       return ($smarty->fetch (get_template_path('acl.tpl')));
475     }
477     if ($this->dialogState == 'head'){
478       /* Draw list */
479       $aclList= new divSelectBox("aclList");
480       $aclList->SetHeight(450);
481       
482       /* Fill in entries */
483       foreach ($this->gosaAclEntry as $key => $entry){
484         if(!$this->acl_is_readable("")) continue;
486         $action ="";      
488         if($this->acl_is_readable("")){
489           $link = "<a href=?plug=".$_GET['plug']."&amp;id=".$key."&amp;act=edit>".$this->assembleAclSummary($entry)."</a>";
490         }else{
491           $link = $this->assembleAclSummary($entry);
492         }
493   
494         $field1= array("string" => $this->aclTypes[$entry['type']], "attach" => "style='width:150px'");
495         $field2= array("string" => $link);
497         if($this->acl_is_writeable("")){
498           $action.= image('images/lists/sort-up.png', 'sortup_'.$key);
499           $action.= image('images/lists/sort-down.png', 'sortdown_'.$key);
500         } 
501     
502         if($this->acl_is_readable("")){
503           $action.= image('images/lists/edit.png','acl_edit_'.$key,msgPool::editButton(_("ACL")));
504         }
505         if($this->acl_is_removeable("")){
506           $action.= image('images/lists/trash.png','acl_del_'.$key,msgPool::delButton(_("ACL")));
507         }
509         $field3= array("string" => $action, "attach" => "style='border-right:0px;width:50px;text-align:right;'");
510         $aclList->AddEntry(array($field1, $field2, $field3));
511       }
513       $smarty->assign("aclList", $aclList->DrawList());
514     }
516     if ($this->dialogState == 'create'){
517       /* Draw list */
518       $aclList= new divSelectBox("aclList");
519       $aclList->SetHeight(150);
521       /* Add settings for all categories to the (permanent) list */
522       foreach ($this->aclObjects as $section => $dsc){
523         $summary= "";
524         foreach($this->ocMapping[$section] as $oc){
525           if (isset($this->aclContents[$oc]) && count($this->aclContents[$oc]) && isset($this->aclContents[$oc][0]) &&
526               $this->aclContents[$oc][0] != ""){
528             $summary.= "$oc, ";
529             continue;
530           }
531           if (isset($this->aclContents["$section/$oc"]) && count($this->aclContents["$section/$oc"])){
532             $summary.= "$oc, ";
533             continue;
534           }
535           if (isset($this->aclContents[$oc]) && !isset($this->aclContents[$oc][0]) && count($this->aclContents[$oc])){
536             $summary.= "$oc, ";
537           }
538         }
540         /* Set summary... */
541         if ($summary == ""){
542           $summary= '<i>'._("No ACL settings for this category!").'</i>';
543         } else {
544           $summary= sprintf(_("Contains ACLs for these objects: %s"), preg_replace('/, $/', '', $summary));
545         }
547         $actions ="";
548         if($this->acl_is_readable("")){
549           $actions.= image('images/lists/edit.png','cat_edit_'.$section, msgPool::editButton(_("category ACL")));
550         }
551         if($this->acl_is_removeable()){
552           $actions.= image('images/lists/trash.png','cat_del_'.$section, msgPool::delButton(_("category ACL")));
553         }   
555         $field1= array("string" => $dsc, "attach" => "style='width:100px'");
556         $field2= array("string" => $summary);
557         $field3= array("string" => $actions, "attach" => "style='border-right:0px;width:50px'");
558         $aclList->AddEntry(array($field1, $field2, $field3));
559       }
561       $smarty->assign("aclList", $aclList->DrawList());
562       $smarty->assign("aclType", $this->aclType);
563       $smarty->assign("aclFilter", $this->aclFilter);
564       $smarty->assign("aclTypes", $this->aclTypes);
565       $smarty->assign("target", $this->target);
566       $smarty->assign("targets", $this->targets);
568       /* Assign possible target types */
569       $smarty->assign("targets", $this->targets);
570       foreach ($this->attributes as $attr){
571         $smarty->assign($attr, $this->$attr);
572       }
575       /* Generate list */
576       $tmp= array();
577       if ($this->target == "group" && !isset($this->recipients["G:*"])){
578         $tmp["G:*"]= _("All users");
579       }
580       foreach (array("user" => "users", "group" => "groups") as $field => $arr){
581         if ($this->target == $field){
582           foreach ($this->$arr as $key => $value){
583             if (!isset($this->recipients[$key])){
584               $tmp[$key]= $value;
585             }
586           }
587         }
588       }
589       $smarty->assign('sources', $tmp);
590       $smarty->assign('recipients', $this->recipients);
592       /* Acl selector if scope is base */
593       if ($this->aclType == 'base'){
594         $smarty->assign('aclSelector', $this->buildAclSelector($this->myAclObjects));
595       }
597       /* Role selector if scope is base */
598       if ($this->aclType == 'role'){
599         $smarty->assign('roleSelector', "Role selector");#, $this->buildRoleSelector($this->myAclObjects));
600         $smarty->assign('roleSelector', $this->buildRoleSelector($this->roles));
601       }
602     }
604     if ($this->dialogState == 'edit'){
605       $smarty->assign('headline', sprintf(_("Edit ACL for '%s' - scope is '%s'"), $this->aclObjects[$this->aclObject], $this->aclTypes[$this->aclType]));
607       /* Collect objects for selected category */
608       foreach ($this->ocMapping[$this->aclObject] as $idx => $class){
609         if ($idx == 0){
610           continue;
611         }
612         $aclObjects[$this->aclObject.'/'.$class]= $plist[$class]['plDescription'];
613       }
614       if ($this->aclObject == 'all'){
615         $aclObjects['all']= _("All objects in current subtree");
616       }
618       /* Role selector if scope is base */
619       if ($this->aclType == 'role'){
620         $smarty->assign('roleSelector', $this->buildRoleSelector($this->roles));
621       } else {
622         $smarty->assign('aclSelector', $this->buildAclSelector($aclObjects));
623       }
624     }
626     /* Show main page */
627     $smarty->assign("dialogState", $this->dialogState);
628    
629     /* Assign acls */ 
630     $smarty->assign("acl_createable",$this->acl_is_createable());
631     $smarty->assign("acl_writeable" ,$this->acl_is_writeable(""));
632     $smarty->assign("acl_readable"  ,$this->acl_is_readable(""));
633     $smarty->assign("acl_removeable",$this->acl_is_removeable());
635     return ($smarty->fetch (get_template_path('acl.tpl')));
636   }
639   function sort_by_priority($list)
640   {
641     $tmp= session::global_get('plist');
642     $plist= $tmp->info;
643     asort($plist);
644     $newSort = array();
646     foreach($list as $name => $translation){
647       $na  =  preg_replace("/^.*\//","",$name);
648       $prio = 0;
649       if(isset($plist[$na]['plPriority'])){
650         $prio=  $plist[$na]['plPriority'] ;
651       }
653       $newSort[$name] = $prio;
654     }
656     asort($newSort);
658     $ret = array();
659     foreach($newSort as $name => $prio){
660       $ret[$name] = $list[$name];
661     }
662     return($ret);
663   }
666   function buildRoleSelector($list)
667   {
668     $D_List =new divSelectBox("Acl_Roles");
669  
670     $selected = $this->aclContents;
671     if(!is_string($this->aclContents) || !isset($list[$this->aclContents])){
672       $selected = key($list);
673     }
675     $str ="";
676     foreach($list as $dn => $values){
678       if($dn == $selected){    
679         $option = "<input type='radio' name='selected_role' value='".base64_encode($dn)."' checked>";
680       }else{
681         $option = "<input type='radio' name='selected_role' value='".base64_encode($dn)."'>";
682       }
683  
684       $field1 = array("string" => $option) ;
685       $field2 = array("string" => $values['cn'], "attach" => "style='width:200px;'") ;
686       $field3 = array("string" => $values['description'],"attach" => "style='border-right:0px;'") ;
688       $D_List->AddEntry(array($field1,$field2,$field3));
689     }
690     return($D_List->DrawList());
691   } 
694   function buildAclSelector($list)
695   {
696     $display= "<input type='hidden' name='acl_dummy_0_0_0' value='1'>";
697     $cols= 3;
698     $tmp= session::global_get('plist');
699     $plist= $tmp->info;
700     asort($plist);
702     /* Add select all/none buttons */
703     $style = "style='width:100px;'";
705     if($this->acl_is_writeable("")){
706       $display .= "<button type='button' ".$style." name='toggle_all_create' onClick=\"acl_toggle_all('_0_c$');\" >Toggle C</button>";
707       $display .= "<button type='button' ".$style." name='toggle_all_move'   onClick=\"acl_toggle_all('_0_m$');\" >Toggle M</button>";
708       $display .= "<button type='button' ".$style." name='toggle_all_remove' onClick=\"acl_toggle_all('_0_d$');\" >Toggle D</button> - ";
709       $display .= "<button type='button' ".$style." name='toggle_all_read'   onClick=\"acl_toggle_all('_0_r$');\" >Toggle R</button>";
710       $display .= "<button type='button' ".$style." name='toggle_all_write'  onClick=\"acl_toggle_all('_0_w$');\" >Toggle W</button> - ";
712       $display .= "<button type='button' ".$style." name='toggle_all_sub_read'  onClick=\"acl_toggle_all('[^0]_r$');\" >R+</button>";
713       $display .= "<button type='button' ".$style." name='toggle_all_sub_write'  onClick=\"acl_toggle_all('[^0]_w$');\" >W+</button>";
715       $display .= "<br>";
717       $style = "style='width:50px;'";
718       $display .= "<button type='button' ".$style." name='set_true_all_create' onClick=\"acl_set_all('_0_c$',true);\" >C+</button>";
719       $display .= "<button type='button' ".$style." name='set_false_all_create' onClick=\"acl_set_all('_0_c$',false);\" >C-</button>";
720       $display .= "<button type='button' ".$style." name='set_true_all_move' onClick=\"acl_set_all('_0_m$',true);\" >M+</button>";
721       $display .= "<button type='button' ".$style." name='set_false_all_move' onClick=\"acl_set_all('_0_m$',false);\" >M-</button>";
722       $display .= "<button type='button' ".$style." name='set_true_all_remove' onClick=\"acl_set_all('_0_d$',true);\" >D+</button>";
723       $display .= "<button type='button' ".$style." name='set_false_all_remove' onClick=\"acl_set_all('_0_d$',false);\" >D-</button> - ";
724       $display .= "<button type='button' ".$style." name='set_true_all_read' onClick=\"acl_set_all('_0_r$',true);\" >R+</button>";
725       $display .= "<button type='button' ".$style." name='set_false_all_read' onClick=\"acl_set_all('_0_r$',false);\" >R-</button>";
726       $display .= "<button type='button' ".$style." name='set_true_all_write' onClick=\"acl_set_all('_0_w$',true);\" >W+</button>";
727       $display .= "<button type='button' ".$style." name='set_false_all_write' onClick=\"acl_set_all('_0_w$',false);\" >W-</button> - ";
729       $display .= "<button type='button' ".$style." name='set_true_all_read' onClick=\"acl_set_all('[^0]_r$',true);\" >R+</button>";
730       $display .= "<button type='button' ".$style." name='set_false_all_read' onClick=\"acl_set_all('[^0]_r$',false);\" >R-</button>";
731       $display .= "<button type='button' ".$style." name='set_true_all_write' onClick=\"acl_set_all('[^0]_w$',true);\" >W+</button>";
732       $display .= "<button type='button' ".$style." name='set_false_all_write' onClick=\"acl_set_all('[^0]_w$',false);\" >W-</button>";
733     }
735     /* Build general objects */
736     $list =$this->sort_by_priority($list);
737     foreach ($list as $key => $name){
739       /* Create sub acl if it does not exist */
740       if (!isset($this->aclContents[$key])){
741         $this->aclContents[$key]= array();
742       }
743       if(!isset($this->aclContents[$key][0])){
744         $this->aclContents[$key][0]= '';
745       }
747       $currentAcl= $this->aclContents[$key];
749       /* Get the overall plugin acls 
750        */
751       $overall_acl ="";
752       if(isset($currentAcl[0])){
753         $overall_acl = $currentAcl[0];
754       }
756       // Detect configured plugins
757       $expand = count($currentAcl) > 1 || $currentAcl[0] != "";
759       /* Object header */
760                         $tname= preg_replace("/[^a-z0-9]/i","_",$name);
762       if($expand){
763         $back_color = "#C8C8FF";
764       }else{
765         $back_color = "#C8C8C8";
766       }
768       if(isset($_SERVER['HTTP_USER_AGENT']) && 
769           (preg_match("/gecko/i",$_SERVER['HTTP_USER_AGENT'])) || 
770           (preg_match("/presto/i",$_SERVER['HTTP_USER_AGENT']))) {
771         $display.= "\n<table summary='{$name}' style='width:100%;border:1px solid #A0A0A0' cellspacing=0 cellpadding=2>".
772           "\n  <tr>".
773           "\n    <td style='background-color:{$back_color};height:1.8em;' colspan=".($cols-1)."><b>"._("Object").": $name</b></td>".
774           "\n    <td align='right' style='background-color:{$back_color};height:1.8em;'>".
775           "\n    <button type='button' onclick=\"$('{$tname}').toggle();\">"._("Show/hide advanced settings")."</button></td>".
776           "\n  </tr>";
777       } else if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match("/ie/i",$_SERVER['HTTP_USER_AGENT'])) {
778         $display.= "\n<table summary='{$name}' style='width:100%;border:1px solid #A0A0A0' cellspacing=0 cellpadding=2>".
779           "\n  <tr>".
780           "\n    <td style='background-color:#C8C8C8;height:1.8em;' colspan=".($cols-1)."><b>"._("Object").": $name</b></td>".
781           "\n    <td align='right' style='background-color:#C8C8C8;height:1.8em;'>".
782           "\n    <button type='button' onclick=\"$('{$tname}').toggle();\">"._("Show/hide advanced settings")."</button></td>".
783           "\n  </tr>";
784       } else {
785         $display.= "\n<table summary='{$name}' style='width:100%;border:1px solid #A0A0A0' cellspacing=0 cellpadding=2>".
786           "\n  <tr>".
787           "\n    <td style='background-color:#C8C8C8;height:1.8em;' colspan=$cols><b>"._("Object").": $name</b></td>".
788           "\n  </tr>";
789       }
791       /* Generate options */
792       $spc= "&nbsp;&nbsp;";
793       $options= $this->mkchkbx($key."_0_c",  _("Create objects"), preg_match('/c/', $overall_acl)).$spc;
794       $options.= $this->mkchkbx($key."_0_m", _("Move objects"), preg_match('/m/', $overall_acl)).$spc;
795       $options.= $this->mkchkbx($key."_0_d", _("Remove objects"), preg_match('/d/', $overall_acl)).$spc;
796       if ($plist[preg_replace('%^.*/%', '', $key)]['plSelfModify']){
797         $options.= $this->mkchkbx($key."_0_s", _("Grant permission to owner"), preg_match('/s/', $overall_acl)).$spc;
798       }
800       /* Global options */
801       $more_options= $this->mkchkbx($key."_0_r",  _("read"), preg_match('/r/', $overall_acl)).$spc;
802       $more_options.= $this->mkchkbx($key."_0_w", _("write"), preg_match('/w/', $overall_acl));
804       $display.= "\n  <tr>".
805                  "\n    <td style='background-color:#E0E0E0' colspan=".($cols-1).">$options</td>".
806                  "\n    <td style='background-color:#D4D4D4'>&nbsp;"._("Complete object").": $more_options</td>".
807                  "\n  </tr>";
809       /* Walk through the list of attributes */
810       $cnt= 1;
811       $splist= $plist[preg_replace('%^.*/%', '', $key)]['plProvidedAcls'];
812       if(session::global_get('js')) {
813         if(isset($_SERVER['HTTP_USER_AGENT']) && 
814             (preg_match("/gecko/i",$_SERVER['HTTP_USER_AGENT'])) || (preg_match("/presto/i",$_SERVER['HTTP_USER_AGENT']))) {
815           $display.= "\n  <tr id='tr_$tname' style='vertical-align:top;height:0px;'>".
816                      "\n    <td colspan=".$cols.">".
817                      "\n      <div id='$tname' style='overflow:hidden; display:none;vertical-align:top;width:100%;'>".
818                      "\n        <table style='width:100%;' summary='{$name}'>";
819         } else if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match("/ie/i",$_SERVER['HTTP_USER_AGENT'])) {
820           $display.= "\n  <tr id='tr_$tname' style='vertical-align:top;height:0px;'>".
821                      "\n    <td colspan=".$cols.">".
822                      "\n      <div id='$tname' style='position:absolute;overflow:hidden;display:none;;vertical-align:top;width:100%;'>".
823                      "\n        <table style='width:100%;' summary='{$name}'>";
824         }else{
825         }
826       }
828   
829       foreach($splist as $attr => $dsc){
831         /* Skip pl* attributes, they are internal... */
832         if (preg_match('/^pl[A-Z]+.*$/', $attr)){
833           continue;
834         }
836         /* Open table row */
837         if ($cnt == 1){
838           $display.= "\n  <tr>";
839         }
841         /* Close table row */
842         if ($cnt == $cols){
843           $cnt= 1;
844           $rb= "";
845           $end= "\n  </tr>";
846         } else {
847           $cnt++;
848           $rb= "border-right:1px solid #A0A0A0;";
849           $end= "";
850         }
852         /* Collect list of attributes */
853         $state= "";
854         if (isset($currentAcl[$attr])){
855           $state= $currentAcl[$attr];
856         }
857         $display.= "\n    <td style='border-top:1px solid #A0A0A0;${rb}width:".(int)(100/$cols)."%'>".
858                    "\n      <b>$dsc</b> ($attr)<br>".$this->mkrwbx($key."_".$attr, $state)."</td>$end";
859       }
860       
861       /* Fill missing td's if needed */
862       if (--$cnt != $cols && $cnt != 0){
863        $display.= str_repeat("\n    <td style='border-top:1px solid #A0A0A0; width:".(int)(100/$cols)."%'>&nbsp;</td>", $cols-$cnt); 
864       }
866       if(session::global_get('js')) {
867         if(isset($_SERVER['HTTP_USER_AGENT']) && 
868             (preg_match("/gecko/i",$_SERVER['HTTP_USER_AGENT'])) || 
869             (preg_match("/presto/i",$_SERVER['HTTP_USER_AGENT'])) || 
870             (preg_match("/ie/i",$_SERVER['HTTP_USER_AGENT']))) {
871           $display.= "\n        </table>".
872                      "\n      </div>".
873                      "\n    </td>".
874                      "\n  </tr>";
875         }
876       }
878       $display.= "\n</table><br />\n";
879     }
881     return ($display);
882   }
885   function mkchkbx($name, $text, $state= FALSE)
886   {
887     $state= $state?"checked":"";
888     if($this->acl_is_writeable("")){
889                         $tname= preg_replace("/[^a-z0-9]/i","_",$name);
890       return "\n      <input id='acl_$tname' type=checkbox name='acl_$name' $state>".
891         "\n      <label for='acl_$tname'>$text</label>";
892     }else{
893       return "\n <input type='checkbox' disabled name='dummy_".microtime(1)."' $state>$text";
894     }
895   }
898   function mkrwbx($name, $state= "")
899   {
900     $rstate= preg_match('/r/', $state)?'checked':'';
901     $wstate= preg_match('/w/', $state)?'checked':'';
902                 $tname= preg_replace("/[^a-z0-9]/i","_",$name);
903       
904     if($this->acl_is_writeable("")){
905       return ("\n      <input id='acl_".$tname."_r' type=checkbox name='acl_${name}_r' $rstate>".
906           "\n      <label for='acl_".$tname."_r'>"._("read")."</label>".
907           "\n      <input id='acl_".$tname."_w' type=checkbox name='acl_${name}_w' $wstate>".
908           "\n      <label for='acl_".$tname."_w'>"._("write")."</label>");
909     }else{
910       return ("\n      <input disabled type=checkbox name='dummy_".microtime(1)."' $rstate>"._("read").
911           "\n      <input disabled type=checkbox name='dummy_".microtime(1)."' $wstate>"._("write"));
912     }
913   }
916   static function explodeACL($acl)
917   {
919     $list= explode(':', $acl);
920     if(count($list) == 5){
921       list($index, $type,$member,$permission,$filter)= $list;
922       $filter = base64_decode($filter);
923     }else{
924       $filter = "";
925       list($index, $type,$member,$permission)= $list;
926     }
928     $a= array( $index => array("type" => $type,
929                                "filter"=> $filter,
930                                "members" => acl::extractMembers($acl,$type == "role")));
931    
932     /* Handle different types */
933     switch ($type){
935       case 'psub':
936       case 'sub':
937       case 'one':
938       case 'base':
939         $a[$index]['acl']= acl::extractACL($acl);
940         break;
941       
942       case 'role':
943         $a[$index]['acl']= base64_decode(preg_replace('/^[^:]+:[^:]+:([^:]+).*$/', '\1', $acl));
944         break;
946       case 'reset':
947         break;
948       
949       default:
950         msg_dialog::display(_("Internal error"), sprintf(_("Unkown ACL type '%s'!"), $type), ERROR_DIALOG);
951         $a= array();
952     }
953     return ($a);
954   }
957   static function extractMembers($acl,$role = FALSE)
958   {
959     global $config;
960     $a= array();
962     /* Rip acl off the string, seperate by ',' and place it in an array */
963     if($role){
964       $ms= preg_replace('/^[^:]+:[^:]+:[^:]+:([^:]+).*$/', '\1', $acl);
965     }else{
966       $ms= preg_replace('/^[^:]+:[^:]+:([^:]+).*$/', '\1', $acl);
967     }
968     if ($ms == $acl){
969       return $a;
970     }
971     $ma= explode(',', $ms);
973     /* Decode dn's, fill with informations from LDAP */
974     $ldap= $config->get_ldap_link();
975     foreach ($ma as $memberdn){
976       // Check for wildcard here
977       $dn= base64_decode($memberdn);
978       if ($dn != "*") {
979         $ldap->cat($dn, array('cn', 'objectClass', 'description', 'uid'));
981         /* Found entry... */
982         if ($ldap->count()){
983           $attrs= $ldap->fetch();
984           if (in_array_ics('gosaAccount', $attrs['objectClass'])){
985             $a['U:'.$dn]= $attrs['cn'][0]." [".$attrs['uid'][0]."]";
986           } else {
987             $a['G:'.$dn]= $attrs['cn'][0];
988             if (isset($attrs['description'][0])){
989               $a['G:'.$dn].= " [".$attrs['description'][0]."]";
990             }
991           }
993         /* ... or not */
994         } else {
995           $a['U:'.$dn]= sprintf(_("Unknown entry '%s'!"), $dn);
996         }
998       } else {
999         $a['G:*']= sprintf(_("All users"));
1000       }
1001     }
1003     return ($a);
1004   }
1007   static function extractACL($acl)
1008   {
1009     /* Rip acl off the string, seperate by ',' and place it in an array */
1010     $as= preg_replace('/^[^:]+:[^:]+:[^:]*:([^:]*).*$/', '\1', $acl);
1011     $aa= explode(',', $as);
1012     $a= array();
1014     /* Dis-assemble single ACLs */
1015     foreach($aa as $sacl){
1016       
1017       /* Dis-assemble field ACLs */
1018       $ao= explode('#', $sacl);
1019       $gobject= "";
1020       foreach($ao as $idx => $ssacl){
1022         /* First is department with global acl */
1023         $object= preg_replace('/^([^;]+);.*$/', '\1', $ssacl);
1024         $gacl=   preg_replace('/^[^;]+;(.*)$/', '\1', $ssacl);
1025         if ($idx == 0){
1026           /* Create hash for this object */
1027           $gobject= $object;
1028           $a[$gobject]= array();
1030           /* Append ACL if set */
1031           if ($gacl != ""){
1032             $a[$gobject]= array($gacl);
1033           }
1034         } else {
1036           /* All other entries get appended... */
1037           list($field, $facl)= explode(';', $ssacl);
1038           $a[$gobject][$field]= $facl;
1039         }
1041       }
1042     }
1044     return ($a);
1045   }
1047   
1048   function assembleAclSummary($entry)
1049   {
1050     $summary= "";
1052     /* Summarize ACL */
1053     if (isset($entry['acl'])){
1054       $acl= "";
1056       if($entry['type'] == "role"){
1058         if(isset($this->roles[$entry['acl']])){  
1059           $summary.= sprintf(_("Role: %s"), $this->roles[$entry['acl']]['cn']);
1060         }else{
1061           $summary.= sprintf(_("Role: %s"), "<i>"._("unknown role")."</i>");
1062         }
1063       }else{
1064         foreach ($entry['acl'] as $name => $object){
1065           if (count($object)){
1066             $acl.= "$name, ";
1067           }
1068         }
1069         $summary.= sprintf(_("Contains settings for these objects: %s"), preg_replace('/, $/', '', $acl));
1070       }
1071     }
1074     /* Summarize members */
1075     if(!($this instanceOf aclrole)){
1076       if ($summary != ""){
1077         $summary.= ", ";
1078       }
1079       if (count($entry['members'])){
1080         $summary.= _("Members").": ";
1081         foreach ($entry['members'] as $cn){
1082           $cn= preg_replace('/ \[.*$/', '', $cn);
1083           $summary.= $cn.", ";
1084         }
1085       } else {
1086         $summary.= "<font color='red'><i>"._("inactive")."&nbsp;-&nbsp;"._("No members")."</i></font>";
1087       }
1088     }
1089     return (preg_replace('/, $/', '', $summary));
1090   }
1093   function loadAclEntry($new= FALSE)
1094   {
1095     /* New entry gets presets... */
1096     if ($new){
1097       $this->aclType= 'base';
1098       $this->aclFilter= "";
1099       $this->recipients= array();
1100       $this->aclContents= array();
1101     } else {
1102       $acl= $this->gosaAclEntry[$this->currentIndex];
1103       $this->aclType= $acl['type'];
1104       $this->recipients= $acl['members'];
1105       $this->aclContents= $acl['acl'];
1106       $this->aclFilter= $acl['filter'];
1107     }
1109     $this->wasNewEntry= $new;
1110   }
1113   function aclPostHandler()
1114   {
1115     if (isset($_POST['save_acl'])){
1116       $this->save();
1117       return TRUE;
1118     }
1120     return FALSE;
1121   }
1123   
1124   function PrepareForCopyPaste($source)
1125   {
1126     plugin::PrepareForCopyPaste($source);
1127     
1128     $dn = $source['dn'];
1129     $acl_c = new acl($this->config, $this->parent,$dn);
1130     $this->gosaAclEntry = $acl_c->gosaAclEntry;
1131   }
1134   function save()
1135   {
1136     /* Assemble ACL's */
1137     $tmp_acl= array();
1138   
1139     foreach ($this->gosaAclEntry as $prio => $entry){
1140       $final= "";
1141       $members= "";
1142       if (isset($entry['members'])){
1143         foreach ($entry['members'] as $key => $dummy){
1144           $members.= base64_encode(preg_replace('/^.:/', '', $key)).',';
1145         }
1146       }
1148       if($entry['type'] != "role"){
1149         $final= $prio.":".$entry['type'].":".preg_replace('/,$/', '', $members);
1150       }else{
1151         $final= $prio.":".$entry['type'].":".base64_encode($entry['acl']).":".preg_replace('/,$/', '', $members);
1152       }
1154       /* ACL's if needed */
1155       if ($entry['type'] != "reset" && $entry['type'] != "role"){
1156         $acl= ":";
1157         if (isset($entry['acl'])){
1158           foreach ($entry['acl'] as $object => $contents){
1160             /* Only save, if we've some contents in there... */
1161             if (count($contents)){
1162               $acl.= $object.";";
1164               foreach($contents as $attr => $permission){
1166                 /* First entry? Its the one for global settings... */
1167                 if ($attr == '0'){
1168                   $acl.= $permission;
1169                 } else {
1170                   $acl.= '#'.$attr.';'.$permission;
1171                 }
1173               }
1174               $acl.= ',';
1175             }
1176             
1177           }
1178         }
1179         $final.= preg_replace('/,$/', '', $acl);
1180       }
1182       /* Append additional filter options 
1183        */
1184       if(!empty($entry['filter'])){
1185         $final .= ":".base64_encode($entry['filter']);
1186       }
1188       $tmp_acl[]= $final;
1189     } 
1191     /* Call main method */
1192     plugin::save();
1194     /* Finally (re-)assign it... */
1195     $this->attrs['gosaAclEntry']= $tmp_acl;
1197     /* Remove acl from this entry if it is empty... */
1198     if (!count($tmp_acl)){
1199       /* Remove attribute */
1200       if ($this->initially_was_account){
1201         $this->attrs['gosaAclEntry']= array();
1202       } else {
1203         if (isset($this->attrs['gosaAclEntry'])){
1204           unset($this->attrs['gosaAclEntry']);
1205         }
1206       }
1208       /* Remove object class */
1209       $this->attrs['objectClass']= array_remove_entries(array('gosaAcl'), $this->attrs['objectClass']);
1210     }    
1212     /* Do LDAP modifications */
1213     $ldap= $this->config->get_ldap_link();
1214     $ldap->cd($this->dn);
1215     $this->cleanup();
1216     $ldap->modify ($this->attrs);
1218     if(count($this->attrs)){
1219       new log("modify","acls/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1220     }
1222     if (!$ldap->success()){
1223       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class()), ERROR_DIALOG);
1224     }
1226     /* Refresh users ACLs */
1227     $ui= get_userinfo();
1228     $ui->loadACL();
1229     session::global_set('ui',$ui);
1230   }
1233   function remove_from_parent()
1234   {
1235     plugin::remove_from_parent();
1237     /* include global link_info */
1238     $ldap= $this->config->get_ldap_link();
1240     $ldap->cd($this->dn);
1241     $this->cleanup();
1242     $ldap->modify ($this->attrs);
1244     new log("remove","acls/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
1246     /* Optionally execute a command after we're done */
1247     $this->handle_post_events("remove",array("uid" => $this->uid));
1248   }
1250   
1251   /* Return plugin informations for acl handling */
1252   static function plInfo()
1253   {
1254     return (array(
1255           "plShortName"   => _("ACL"),
1256           "plDescription" => _("ACL")."&nbsp;("._("Access control list").")",
1257           "plSelfModify"  => FALSE,
1258           "plDepends"     => array(),
1259           "plPriority"    => 0,
1260           "plSection"     => array("administration"),
1261           "plCategory"    => array("acl" => array("description"  => _("ACL")."&nbsp;&amp;&nbsp;"._("ACL roles"),
1262                                                           "objectClass"  => array("gosaAcl","gosaRole"))),
1263           "plProvidedAcls"=> array(
1264 //            "cn"          => _("Role name"),
1265 //            "description" => _("Role description")
1266             )
1268           ));
1269   }
1272   /* Remove acls defined for $src */
1273   function remove_acl()
1274   {
1275     acl::remove_acl_for($this->dn);
1276   }
1279   /* Remove acls defined for $src */
1280   static function remove_acl_for($dn)
1281   {                                  
1282     global $config;                  
1284     $ldap = $config->get_ldap_link();
1285     $ldap->cd($config->current['BASE']);
1286     $ldap->search("(&(objectClass=gosaAcl)(gosaAclEntry=*".base64_encode($dn)."*))",array("gosaAclEntry","dn"));
1287     $new_entries= array();                                                                                      
1288     while($attrs = $ldap->fetch()){                                                                             
1289       if (!isset($attrs['gosaAclEntry'])) {                                                                     
1290         continue;                                                                                               
1291       }                                                                                                         
1292       unset($attrs['gosaAclEntry']['count']);                                                                   
1294       // Remove entry directly
1295       foreach($attrs['gosaAclEntry'] as $id => $entry){
1296         $parts= explode(':',$entry);                     
1297         $members= explode(',',$parts[2]);                
1298         $new_members= array();                         
1299         foreach($members as $member) {                 
1300           if (base64_decode($member) != $dn) {         
1301             $new_members[]= $member;                   
1302           } else {                                     
1303             gosa_log("modify","users/acl",$attrs['dn'],array(),sprintf("Removed acl for %s on object %s.",$dn,$attrs['dn']));
1304           }                                                                                                                  
1305         }                                                                                                                    
1307         /* We can completely remove the entry if there are no members anymore */
1308         if (count($new_members)) {                                              
1309           $parts[2]= implode(",", $new_members);                                
1310           $new_entries[]= implode(":", $parts);                                 
1311         }                                                                       
1312       }                                                                         
1314       // There should be a modification, so write it back
1315       $ldap->cd($attrs['dn']);
1316       $new_attrs= array("gosaAclEntry" => $new_entries);
1317       $ldap->modify($new_attrs);
1318       if (!$ldap->success()){
1319         msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD, get_class()), ERROR_DIALOG);
1320       }
1321     }
1322   }
1325   function update_acl_membership($src,$dst)
1326   {
1327     $ldap = $this->config->get_ldap_link();
1328     $ldap->cd($this->config->current['BASE']);
1329     $ldap->search("(&(objectClass=gosaAcl)(gosaAclEntry=*".base64_encode($src)."*))",array("gosaAclEntry","dn"));
1330     while($attrs = $ldap->fetch()){
1331       $acl = new acl($this->config,$this->parent,$attrs['dn']);
1332       foreach($acl->gosaAclEntry as $id => $entry){
1333         foreach($entry['members'] as $m_id => $member){
1334           if($m_id == "U:".$src){
1335             unset($acl->gosaAclEntry[$id]['members'][$m_id]);
1336             $new = "U:".$dst;
1337             $acl->gosaAclEntry[$id]['members'][$new] = $new;
1338             gosa_log("modify","users/acl",$attrs['dn'],array(),sprintf("Updated acl for user %s on object %s.",$src,$attrs['dn']));
1339           }
1340           if($m_id == "G:".$src){
1341             unset($acl->gosaAclEntry[$id]['members'][$m_id]);
1342             $new = "G:".$dst;
1343             $acl->gosaAclEntry[$id]['members'][$new] = $new;
1344             gosa_log("modify","groups/acl",$attrs['dn'],array(),sprintf("Updated acl for group %s on object %s.",$src,$attrs['dn']));
1345           }
1346         }
1347       }
1348       $acl -> save();
1349     }
1350   }
1354 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1355 ?>