Code

- modified a set of ldap->cat
[gosa.git] / plugins / admin / systems / class_servRepository.inc
1 <?php
3 class servrepository 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;
12   var $attributes             = array("FAIrepository");
13   var $objectclasses          = array("FAIrepositoryServer");
14   
15   /* Search filter */
16   var $regex                  = "*";
18   /* Configurationdialog for repositories */
19   var $dialog                 = NULL;
21   /* Repositories */
22   var $repositories           = array();
23   var $FAIrepository           = array();
25   function servrepository ($config, $dn= NULL)
26   {
27     plugin::plugin ($config, $dn);
29     $this->repositories = array();
30     if(isset($this->attrs['FAIrepository'])){
31       for($i = 0; $i < $this->attrs['FAIrepository']['count']; $i++){
32         $tmp = split("\|",$this->attrs['FAIrepository'][$i]);
33         $tmp2 = array();  
34         $tmp3 = array();   
36         if(isset($tmp[1])){
37           $tmp2['ParentServer'] = $tmp[1];
38           if(empty($tmp[1])){
39             $tmp2['ParentServer'] = "none";
40           }
41         }else{
42           $tmp2['ParentServer'] = "none";
43         }
45         if(isset($tmp[0])){
46           $tmp2['Url']          = $tmp[0];
47         }else{
48           $tmp2['Url']          = "";
49         }
50   
51         if(isset($tmp[2])){
52           $tmp2['Release']      = $tmp[2];
53         }else{
54           $tmp2['Release']      = "";
55         }
57         if(isset($tmp[3])){
58           $tmp3 = split(",",$tmp[3]);
59           foreach($tmp3 as $sec){
60             $tmp2['Sections'][$sec]=$sec;
61           }    
62         }else{
63           $tmp['Section']=array();
64         }
66         $this->repositories[$tmp[2]]=$tmp2;      
67       }
68     }
69   }
71   function execute()
72   {
73     /* Call parent execute */
74     plugin::execute();
76     /* Fill templating stuff */
77     $smarty= get_smarty();
78     $display= "";
80     /* Smarty vars*/
81     $smarty->assign("infoimage",    get_template_path('images/info.png'));
82     $smarty->assign("search_image", get_template_path('images/search.png'));
83     $smarty->assign("launchimage",  get_template_path('images/small_filter.png'));
84     $smarty->assign("tree_image",   get_template_path('images/tree.png'));
85     $smarty->assign("alphabet",     generate_alphabet());
86     $smarty->assign("apply",        apply_filter());
87     $smarty->assign("regex",        $this->regex);
90     /* Do we need to flip is_account state? */
91     if (isset($_POST['modify_state'])){
92       $this->is_account= !$this->is_account;
93     }
95     /* Show tab dialog headers */
96     if ($this->is_account){
97       $display= $this->show_header(_("Remove FAI repository extension."),
98           _("This server has FAI repository features enabled. You can disable them by clicking below."));
99     } else {
100       $display= $this->show_header(_("Add FAI repository extension."),
101           _("This server has FAI repository features disabled. You can enable them by clicking below."));
102       return ($display);
103     }
104  
105     /*
106       ADD / EDIT Repository
107       Dialog Handling
108     */
109     
110     $once = false;
111     foreach($_POST as $name => $value){
113       if(preg_match("/AddRepository/",$name)){
114         $once = true;
115         $this->dialog = new servRepositorySetup($this->config,$this->dn);
116         $this->dialog->acl = $this->acl;
117       }
119       if((preg_match("/^delete_/",$name))&&(!$once)){
120         $once = true;
121         $value = preg_replace("/delete_/","",$name);
122         $value = base64_decode(preg_replace("/_.*$/","",$value));
124         $url = $this->repositories[$value]['Url'];
125         $release = $this->repositories[$value]['Release'];
127         $ldap = $this->config->get_ldap_link();
128         $ldap->cd ($this->config->current['BASE']);
129         
130         $ldap->search("(&(objectClass=gotoWorkstation)(objectClass=FAIobject)(FAIdebianMirror=".$url."))",array("cn","FAIclass"));
131         
132         $found = false;
133         $found_in = " ";
134         while($attrs = $ldap->fetch()){
135           foreach($attrs['FAIclass'] as $class){
136             if(preg_match("/".str_replace("/","\/",$release)."$/i",$class)){
137               $found = true;  
138               $found_in .= $attrs['cn'][0]." ";
139             }
140           }
141         }
142          
143         if($found){
144           print_red(sprintf(_("You can't delete this release, it is still used by these workstations [%s]. Please solve this dependencies first, to keep data base consistency."),$found_in));
145         }else{
146           if(isset($this->repositories[$value])){
147             unset($this->repositories[$value]);
148           }
149         }
150       }
152       if((preg_match("/^edit_/",$name))&&(!$once)){
153         $value = preg_replace("/edit_/","",$name);
154         $value = base64_decode(preg_replace("/_.$/","",$value));
156         $ldap = $this->config->get_ldap_link();
157         $ldap->cd ($this->config->current['BASE']);
158         
159         $url = $this->repositories[$value]['Url'];
160         $release = $this->repositories[$value]['Release'];
162         $ldap->search("(&(objectClass=gotoWorkstation)(objectClass=FAIobject)(FAIdebianMirror=".$url."))",array("cn","FAIclass"));
164         $found = false;
165         $found_in = " ";
166         while($attrs = $ldap->fetch()){
167           foreach($attrs['FAIclass'] as $class){
168             if(preg_match("/".str_replace("/","\/",$release)."$/i",$class)){
169               $found = true;
170               $found_in .= $attrs['cn'][0]." ";
171             }
172           }
173         }
174   
175         if($found){
176           print_red(sprintf(_("Be careful editing this release, it is still used by these workstations [%s]."),$found_in));
177         } 
179         if(isset($this->repositories[$value])){
180           $once = true;
181           $obj = $this->repositories[$value];
182       
183           /* to be able to detect if this was renamed */
184           $obj['initialy_was'] = $obj['Release'];
185           $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
186           $this->dialog->acl = $this->acl;
187         }
188       }
189     }
191     if((isset($_GET['act']))&&($_GET['act']=="open")&&(isset($_GET['id']))){
192       $obj = $this->repositories[base64_decode($_GET['id'])];
193       $obj['initialy_was'] = $obj['Release'];
194       $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
195       $this->dialog->acl = $this->acl;
196     }
198     /*
199     if(isset($_POST['AddRepository'])){
200       $this->dialog = new servRepositorySetup($this->config,$this->dn);
201       $this->dialog->acl = $this->acl;
202     }
203     */
205     if(isset($_POST['repository_setup_save'])){
206       $this->dialog->save_object();
207       if(($this->dialog->is_new_name())&&(isset($this->repositories[$this->dialog->GetName()]))){
208         print_red(_("This name is already in use."));
209       }else
211       if(count($this->dialog->check())!=0){
212         foreach($this->dialog->check() as $msg){
213           print_red($msg);
214         }
215       }else{
216         $obj = $this->dialog->save();
217         if($this->dialog->is_new_name()){
218           $oldname = $this->dialog->initialy_was;
219           $this->repositories[$obj['Release']]=$obj;        
220           unset($this->repositories[$oldname]);
221         }else{ 
222           $this->repositories[$obj['Release']]=$obj;        
223         }
224         $this->dialog = NULL;
225         $this->is_dialog= false;
226       }
227     }
229     if(isset($_POST['repository_setup_cancel'])){
230       $this->dialog=NULL;
231       $this->is_dialog = false;
232     }
233    
234     if($this->dialog != NULL){
235       $this->dialog->save_object();
236       $this->is_dialog = true;
237       return($this->dialog->execute());
238     }
240     /*
241       Repository setup dialog handling /END
242     */
244     $divlist = new divList("repositories");
245     $divlist->SetEntriesPerPage(0);
246     $divlist->setHeight(400);
248     $divlist->setHeader(array(array("string"=>_("Release"),"attach"=>"style='width:80px;'"),
249                               array("string"=>_("Sections")),
250                               array("string"=>_("Options"),"attach"=>"style='border-right:0px;width:55px;'")
251                        )     );
253     $link   = "<a href='?plug=".$_GET['plug']."&amp;act=open&amp;id=%s'>%s</a>";
254     $edit   = "<input type='image' value='%s' name='edit_%s'   src='images/edit.png'>&nbsp;";
255     $delete = "<input type='image' value='%s' name='delete_%s' src='images/edittrash.png'>";
256   
257     foreach($this->repositories as $name => $reps){
259       $str = " ";
261       if(preg_match("/".str_replace("*",".*",$this->regex)."/",$reps['Release'])){
262     
264       foreach($reps['Sections'] as $sec){
265         $str.=$sec." ";  
266       }    
267   
268       $divlist->AddEntry(array(
269                               array("string"=>sprintf($link,base64_encode($name),$name),"attach"=>"style='width:80px;'"),
270                               array("string"=>sprintf($link,base64_encode($name),_("Sections")." :".$str)),
271                               array("string"=>preg_replace("/%s/",base64_encode($name),$edit.$delete),"attach"=>"style='border-right:0px;width:55px;text-align:right;'")
272                               ));
273       }
274     }
275  
276     $smarty -> assign("Repositories",$divlist->DrawList());
278     $display.= $smarty->fetch(get_template_path('servRepository.tpl', TRUE));
279     return($display);
280   }
282   function remove_from_parent()
283   {
284     plugin::remove_from_parent();    
285     $ldap= $this->config->get_ldap_link();
286     $ldap->cd ($this->config->current['BASE']);
287     
288     $ldap->cat($this->dn, array('dn'));
289     
290     if($ldap->count()){
291       $ldap->cd($this->dn);
292       $this->cleanup();
293       $ldap->modify ($this->attrs); 
295       $this->handle_post_events("modify");
296     }
297   }
300   /* Save data to object */
301   function save_object()
302   {
303     plugin::save_object();
304     if(isset($_POST['regex'])){
305       $this->regex = $_POST['regex'];
306     }
307   }
310   /* Check supplied data */
311   function check()
312   {
313     /* Call common method to give check the hook */
314     $message= plugin::check();
315         
316     return ($message);
317   }
320   /* Save to LDAP */
321   function save()
322   {
323     plugin::save();
325     $arr = array();
326     foreach($this->repositories as $servername => $conf){
327       $str = "";
328       foreach($conf['Sections'] as $sec){
329         $str.=$sec.",";
330       }
331       $str=preg_replace("/,$/","",$str);
332         
333       if($conf['ParentServer']=="none"){
334         $conf['ParentServer'] ="";
335       }    
336     
337       $arr[]=$conf['Url']."|".$conf['ParentServer']."|".$conf['Release']."|".$str;
338     }
339     $this->attrs['FAIrepository'] = $arr;
341     $ldap= $this->config->get_ldap_link();
342     $ldap->cd ($this->config->current['BASE']);
343     
344     $ldap->cat($this->dn, array('dn'));
345     
346     if($ldap->count()){
347       $ldap->cd($this->dn);
348       $this->cleanup();
349       $ldap->modify ($this->attrs);       
351       $this->handle_post_events("modify");
352     }else{
353       $ldap->cd ($this->config->current['BASE']);
354       $ldap->create_missing_trees($this->dn);
355       $ldap->cd($this->dn);
356       $ldap->add($this->attrs);
357       $this->handle_post_events("add");
358     }
359   }
363 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
364 ?>