Code

Added execute methods
[gosa.git] / plugins / admin / fai / class_faiProfile.inc
1 <?php
3 class faiProfile extends plugin
4 {
5   /* CLI vars */
6   var $cli_summary      = "Manage server basic objects";
7   var $cli_description  = "Some longer text\nfor help";
8   var $cli_parameters   = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
10   /* attribute list for save action */
11   var $ignore_account   = TRUE;
13   /* Attributes for this Object */
14   var $attributes       = array("cn","description","FAIclass");
16   /* ObjectClasses for this Object*/
17   var $objectclasses    = array("top","FAIclass","FAIprofile");
19   /* Class name of the Ldap ObjectClass for the Sub Object */
20   var $subClass         = "FAIscriptEntry";
21   var $subClasses       = array("top","FAIclass","FAIscriptEntry");
23   /* Specific attributes */
24   var $old_cn           = "";
25   var $cn               = "";       // The class name for this object
26   var $description      = "";       // The description for this set of partitions
27   var $is_dialog        = false;    // specifies which buttons will be shown to save or abort
28   var $dialog           = NULL;     // a dialog, e.g. new disk dialog
29   var $FAIclass         = "";       // Classnames used for this profile
30   var $FAIclasses       = array();  // Contains classname seperated in an array
31   var $FAIAllclasses    = array();  // Contains all possible Classnames
33   function faiProfile($config, $dn= NULL)
34   {
35     /* Load Attributes */
36     plugin::plugin ($config, $dn);
37     $ldap=$this->config->get_ldap_link();
39     $tmp = split(" ",$this->FAIclass);
40     
41     foreach($tmp as $class){
42       if(!empty($class)){
43         $this->FAIclasses[trim($class)] = trim($class);
44       }
45     }
46     natcasesort($this->FAIclasses);
47     reset($this->FAIclasses) ;
48  
49     $categories = array("FAIscript","FAItemplate","FAIhook","FAIvariable","FAIpartitionTAble","FAIpackage");
50   
51     $sort = array();
52     
53     $base = $_SESSION['faifilter']['base'];
54     $ldap->cd($base);
55     $ldap->search("(objectClass=*)",array("*"));
56     while($attrs = $ldap->fetch()){
57       foreach($categories as $cat){
58         if(in_array($cat,$attrs['objectClass'])){
59           $this->FAIAllclasses[$attrs['cn'][0]][$cat]=$attrs;
60           $sort[strtolower($attrs['cn'][0])] = $attrs['cn'][0];
61         }
62       }
63     } 
64     ksort($sort);
65     foreach($sort as $name){
66       $tmp[$name] =$this->FAIAllclasses[$name];
67     }
68     $this->FAIAllclasses = array();
69     $this->FAIAllclasses = $tmp;
71     if($dn != "new"){
72       $this->dn =$dn;
73     }
74     $this->old_cn   = $this->cn;
75   }
77   function execute()
78   {
79         /* Call parent execute */
80         plugin::execute();
81     /* Fill templating stuff */
82     $smarty= get_smarty();
83     $display= "";
85     $s_entry = "";
86     $s_action = "";
88     /* Remove class name From list */
89     foreach($_POST as $name => $post){
90       if(preg_match("/DEL_/i",$name)){
91         $s_action = "delete";
92         $s_entry  = preg_replace("/DEL_/","",$name);
93         $s_entry  = preg_replace("/_.*$/","",$s_entry);
94       }elseif(preg_match("/Add_class/i",$name)){
95         $s_action  = "add";
96       }elseif(preg_match("/DelClass/i",$name)){
97         $s_action  = "delete";
98         $s_entry = $_POST['FAIclass'];
99       }elseif(preg_match("/AddClass/i",$name)){
100         $s_action  = "add";
101       }
102     }
104     if($s_action == "delete"){
105       unset($this->FAIclasses[$s_entry]);
106     }
108     if($s_action == "add"){
109       $this->dialog = new faiProfileEntry($this->config,$this->dn,$this->FAIclasses);
110       $this->is_dialog  =true;
111     }
112   
113     /* Save Dialog */
114     if(isset($_POST['SaveSubObject'])){
115       $this->dialog->save_object();
116       $msgs= $this->dialog->check();
117       if(count($msgs)){
118         print_red($msgs);
119       }else{
120         $ret = $this->dialog->save();
121         foreach($ret as $class){
122           $this->FAIclasses[$class] =$class; 
123         }
124         $this->is_dialog=false;
125         unset($this->dialog);
126         $this->dialog=NULL;
127         ksort($this->FAIclasses);
128       }
129     }
131     /* Cancel Dialog */
132     if(isset($_POST['CancelSubObject'])){
133       $this->is_dialog=false;
134       unset($this->dialog);
135       $this->dialog=NULL;
136     }
137     
138     if(isset($this->dialog)){
139       $this->dialog->save_object();
140       return($this->dialog->execute());
141     }
143     $divlist  =new divlist("Profile");
144     $divlist->SetSummary(_("This list displays all assigned class names for this profile."));
145     $divlist->SetEntriesPerPage(0);
147     $divlist->SetHeader(array(array("string"=>"Class name"),
148                               array("string"=>"Objects","attach"=>"style='width:120px;'"),
149                               array("string"=>"Options","attach"=>"style='border-right:none;width:60px;'")));
150     $listhead = 
151     "<div style='background:#F0F0F9;padding:5px;'>".
152     "<input type='image' align='middle' src='images/editpaste.png' title='"._("Append new class names")."' alt='"._("Add")."' name='Add_class'>&nbsp;".
153     "</div>";
155     $objTypes['FAIhook']            = "<image src='images/fai_hook.png' title='"._("Hook bundle")."' alt=''>";
156     $objTypes['FAItemplate']        = "<image src='images/fai_template.png' title='"._("Template bundle")."' alt=''>";
157     $objTypes['FAIscript']          = "<image src='images/fai_script.png' title='"._("Script bundle")."' alt=''>";
158     $objTypes['FAIvariable']        = "<image src='images/fai_variable.png' title='"._("Variable bundle")."' alt=''>";
159     $objTypes['FAIpackages']        = "<image src='images/fai_packages.png' title='"._("Packages bundle")."' alt=''>";
160     $objTypes['FAIpartitionTable']  = "<image src='images/fai_partitionTable.png' title='"._("Partition table")."' alt=''>";
162     $actions = "<input type='image' src='images/editdelete.png' title='"._("Remove class from profile")."' name='DEL_%KEY%'>"; 
164     foreach($this->FAIclasses as $usedClass){
165       $str = "";
166       if(isset($this->FAIAllclasses[$usedClass])){
167         foreach($this->FAIAllclasses[$usedClass] as $class => $obj){
168           $str.= $objTypes[$class]; 
169         }
170       }
172       $field1 = array("string"=> $usedClass,"attach"=>"");
173       $field2 = array("string"=> $str,"attach"=>"");
174       $field3 = array("string"=> preg_replace("/%KEY%/",$usedClass,$actions),"attach"=>"style='border-right:none;'");
175       $divlist->AddEntry(array($field1,$field2,$field3));
176     }
177     
178     $smarty->assign("FAIclasses"  ,$this->FAIclasses);
179     $smarty->assign("divlisthead" ,$listhead);
180     $smarty->assign("divlist"     ,$divlist->DrawList());
182      /* Magic quotes GPC, escapes every ' " \, to solve some security risks
183      * If we post the escaped strings they will be escaped again
184      */
185     foreach($this->attributes as $attrs){
186       if(get_magic_quotes_gpc()){
187         $smarty->assign($attrs,stripslashes($this->$attrs));
188       }else{
189         $smarty->assign($attrs,($this->$attrs));
190       }
191     }
194     $display.= $smarty->fetch(get_template_path('faiProfile.tpl', TRUE));
195     return($display);
196   }
197   
198   function remove_from_parent()
199   {
200     $ldap = $this->config->get_ldap_link();
201     $ldap->cd ($this->dn);
202     $ldap->rmdir_recursive($this->dn);
203     $this->handle_post_events("remove");    
204   }
206   /* Save data to object 
207    */
208   function save_object()
209   {
210     plugin::save_object();
211     foreach($this->attributes as $attrs){
212       if(isset($_POST[$attrs])){
213         $this->$attrs = $_POST[$attrs];
214       }
215     }
216   }
219   /* Check supplied data */
220   function check()
221   {
222     $message= array();
223     
224     if(count($this->FAIclasses) == 0){
225       $message[]=_("Please assign at least one class to this  profile.");
226     }
227  
228     if(empty($this->cn)){
229       $message[]=_("Please enter a valid name.");
230     }
232     $ldap = $this->config->get_ldap_link();
233     $ldap->cd($_SESSION['faifilter']['base']);
234     $ldap->search("(&(objectClass=FAIprofile)(cn=".$this->cn.")(!cn=".$this->old_cn."))",array("*"));
235  
236     if($ldap->count()){
237       $message[]=_("There is already a profile with this class name defined.");
238     }
240     return ($message);
241   }
244   /* Save to LDAP */
245   function save()
246   {
247     plugin::save();
248  
249     $ldap = $this->config->get_ldap_link();
251     $this->FAIclass = "";
252     foreach($this->FAIclasses as $class){
253       $this->FAIclass.=$class." ";
254     }
256     $this->attrs['FAIclass']=trim($this->FAIclass);
258     $ldap->cat($this->dn);
259     if($ldap->count()!=0){
260       /* Write FAIscript to ldap*/
261       $ldap->cd($this->dn);
262       $ldap->modify($this->attrs);
263     }else{
264       /* Write FAIscript to ldap*/
265       $ldap->cd($this->config->current['BASE']);
266       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
267       $ldap->cd($this->dn);
268       $ldap->add($this->attrs);
269     }
270     show_ldap_error($ldap->get_error());
271   }
274 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
275 ?>