Code

Packagelist sorted
[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     /* Fill templating stuff */
80     $smarty= get_smarty();
81     $display= "";
83     $s_entry = "";
84     $s_action = "";
86     /* Remove class name From list */
87     foreach($_POST as $name => $post){
88       if(preg_match("/DEL_/i",$name)){
89         $s_action = "delete";
90         $s_entry  = preg_replace("/DEL_/","",$name);
91         $s_entry  = preg_replace("/_.*$/","",$s_entry);
92       }elseif(preg_match("/Add_class/i",$name)){
93         $s_action  = "add";
94       }elseif(preg_match("/DelClass/i",$name)){
95         $s_action  = "delete";
96         $s_entry = $_POST['FAIclass'];
97       }elseif(preg_match("/AddClass/i",$name)){
98         $s_action  = "add";
99       }
100     }
102     if($s_action == "delete"){
103       unset($this->FAIclasses[$s_entry]);
104     }
106     if($s_action == "add"){
107       $this->dialog = new faiProfileEntry($this->config,$this->dn,$this->FAIclasses);
108       $this->is_dialog  =true;
109     }
110   
111     /* Save Dialog */
112     if(isset($_POST['SaveSubObject'])){
113       $this->dialog->save_object();
114       $msgs= $this->dialog->check();
115       if(count($msgs)){
116         print_red($msgs);
117       }else{
118         $ret = $this->dialog->save();
119         foreach($ret as $class){
120           $this->FAIclasses[$class] =$class; 
121         }
122         $this->is_dialog=false;
123         unset($this->dialog);
124         $this->dialog=NULL;
125         ksort($this->FAIclasses);
126       }
127     }
129     /* Cancel Dialog */
130     if(isset($_POST['CancelSubObject'])){
131       $this->is_dialog=false;
132       unset($this->dialog);
133       $this->dialog=NULL;
134     }
135     
136     if(isset($this->dialog)){
137       $this->dialog->save_object();
138       return($this->dialog->execute());
139     }
141     $divlist  =new divlist("Profile");
142     $divlist->SetSummary(_("This list displays all assigned class names for this profile."));
143     $divlist->SetEntriesPerPage(10);
145     $divlist->SetHeader(array(array("string"=>"Class name"),
146                               array("string"=>"Objects","attach"=>"style='width:120px;'"),
147                               array("string"=>"Options","attach"=>"style='border-right:none;width:60px;'")));
148     $listhead = 
149     "<div style='background:#F0F0F9;padding:5px;'>".
150     "<input type='image' align='middle' src='images/editpaste.png' title='"._("Append new class names")."' alt='"._("Add")."' name='Add_class'>&nbsp;".
151     "</div>";
153     $objTypes['FAIhook']            = "<image src='images/fai_hook.png' title='"._("Hook bundle")."' alt=''>";
154     $objTypes['FAItemplate']        = "<image src='images/fai_template.png' title='"._("Template bundle")."' alt=''>";
155     $objTypes['FAIscript']          = "<image src='images/fai_script.png' title='"._("Script bundle")."' alt=''>";
156     $objTypes['FAIvariable']        = "<image src='images/fai_variable.png' title='"._("Variable bundle")."' alt=''>";
157     $objTypes['FAIpackages']        = "<image src='images/fai_packages.png' title='"._("Packages bundle")."' alt=''>";
158     $objTypes['FAIpartitionTable']  = "<image src='images/fai_partitionTable.png' title='"._("Partition table")."' alt=''>";
160     $actions = "<input type='image' src='images/editdelete.png' title='"._("Remove class from profile")."' name='DEL_%KEY%'>"; 
162     foreach($this->FAIclasses as $usedClass){
163       $str = "";
164       if(isset($this->FAIAllclasses[$usedClass])){
165         foreach($this->FAIAllclasses[$usedClass] as $class => $obj){
166           $str.= $objTypes[$class]; 
167         }
168       }
170       $field1 = array("string"=> $usedClass,"attach"=>"");
171       $field2 = array("string"=> $str,"attach"=>"");
172       $field3 = array("string"=> preg_replace("/%KEY%/",$usedClass,$actions),"attach"=>"style='border-right:none;'");
173       $divlist->AddEntry(array($field1,$field2,$field3));
174     }
175     
176     $smarty->assign("FAIclasses"  ,$this->FAIclasses);
177     $smarty->assign("divlisthead" ,$listhead);
178     $smarty->assign("divlist"     ,$divlist->DrawList());
180      /* Magic quotes GPC, escapes every ' " \, to solve some security risks
181      * If we post the escaped strings they will be escaped again
182      */
183     foreach($this->attributes as $attrs){
184       if(get_magic_quotes_gpc()){
185         $smarty->assign($attrs,stripslashes($this->$attrs));
186       }else{
187         $smarty->assign($attrs,($this->$attrs));
188       }
189     }
192     $display.= $smarty->fetch(get_template_path('faiProfile.tpl', TRUE));
193     return($display);
194   }
195   
196   function remove_from_parent()
197   {
198     $ldap = $this->config->get_ldap_link();
199     $ldap->cd ($this->dn);
200     $ldap->rmdir_recursive($this->dn);
201     $this->handle_post_events("remove");    
202   }
204   /* Save data to object 
205    */
206   function save_object()
207   {
208     plugin::save_object();
209     foreach($this->attributes as $attrs){
210       if(isset($_POST[$attrs])){
211         $this->$attrs = $_POST[$attrs];
212       }
213     }
214   }
217   /* Check supplied data */
218   function check()
219   {
220     $message= array();
221     
222     if(count($this->FAIclasses) == 0){
223       $message[]=_("Please assign at least one class to this  profile.");
224     }
225  
226     if(empty($this->cn)){
227       $message[]=_("Please enter a valid name.");
228     }
230     $ldap = $this->config->get_ldap_link();
231     $ldap->cd($_SESSION['faifilter']['base']);
232     $ldap->search("(&(objectClass=FAIprofile)(cn=".$this->cn.")(!cn=".$this->old_cn."))",array("*"));
233  
234     if($ldap->count()){
235       $message[]=_("There is already a profile with this class name defined.");
236     }
238     return ($message);
239   }
242   /* Save to LDAP */
243   function save()
244   {
245     plugin::save();
246  
247     $ldap = $this->config->get_ldap_link();
249     $this->FAIclass = "";
250     foreach($this->FAIclasses as $class){
251       $this->FAIclass.=$class." ";
252     }
254     $this->attrs['FAIclass']=trim($this->FAIclass);
256     $ldap->cat($this->dn);
257     if($ldap->count()!=0){
258       /* Write FAIscript to ldap*/
259       $ldap->cd($this->dn);
260       $ldap->modify($this->attrs);
261     }else{
262       /* Write FAIscript to ldap*/
263       $ldap->cd($this->config->current['BASE']);
264       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
265       $ldap->cd($this->dn);
266       $ldap->add($this->attrs);
267     }
268     show_ldap_error($ldap->get_error());
269   }
272 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
273 ?>