Code

Fixed something
[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){
112       if((preg_match("/^delete_/",$name))&&(!$once)){
113         if(isset($this->repositories[$value])){
114           $once = true;
115           unset($this->repositories[$value]);
116         }
117       }
119       if((preg_match("/^edit_/",$name))&&(!$once)){
120         if(isset($this->repositories[$value])){
121           $once = true;
122           $obj = $this->repositories[$value];
123       
124           /* to be able to detect if this was renamed */
125           $obj['initialy_was'] = $obj['Release'];
126           $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
127           $this->dialog->acl = $this->acl;
128         }
129       }
130     }
132     if((isset($_GET['act']))&&($_GET['act']=="open")&&(isset($_GET['id']))){
133       $obj = $this->repositories[$_GET['id']];
134       $obj['initialy_was'] = $obj['Release'];
135       $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
136       $this->dialog->acl = $this->acl;
137     }
138  
139     if(isset($_POST['AddRepository'])){
140       $this->dialog = new servRepositorySetup($this->config,$this->dn);
141       $this->dialog->acl = $this->acl;
142     }
144     if(isset($_POST['repository_setup_save'])){
145       $this->dialog->save_object();
146       if(($this->dialog->is_new_name())&&(isset($this->repositories[$this->dialog->GetName()]))){
147         print_red(_("This name is already in use."));
148       }else
150       if(count($this->dialog->check())!=0){
151         foreach($this->dialog->check() as $msg){
152           print_red($msg);
153         }
154       }else{
155         $obj = $this->dialog->save();
156         $this->dialog = NULL;
157         $this->is_dialog= false;
158         $this->repositories[$obj['Release']]=$obj;        
159       }
160     }
162     if(isset($_POST['repository_setup_cancel'])){
163       $this->dialog=NULL;
164       $this->is_dialog = false;
165     }
166    
167     if($this->dialog != NULL){
168       $this->dialog->save_object();
169       $this->is_dialog = true;
170       return($this->dialog->execute());
171     }
173     /*
174       Repository setup dialog handling /END
175     */
177     $divlist = new divList("repositories");
178     $divlist->SetEntriesPerPage(12);
179     $divlist->setHeight(400);
181     $divlist->setHeader(array(array("string"=>_("Release"),"attach"=>"style='width:80px;'"),
182                               array("string"=>_("Sections")),
183                               array("string"=>_("Options"),"attach"=>"style='border-right:0px;width:69px;'")
184                        )     );
186     $link   = "<a href='?plug=".$_GET['plug']."&act=open&id=%s'>%s</a>";
187     $edit   = "<input type='image' value='%s' name='edit_%s'   src='images/edit.png'>&nbsp;";
188     $delete = "<input type='image' value='%s' name='delete_%s' src='images/edittrash.png'>";
189   
190     foreach($this->repositories as $name => $reps){
192       $str = " ";
194       if(preg_match("/".str_replace("*",".*",$this->regex)."/",$reps['Release'])){
195     
197       foreach($reps['Sections'] as $sec){
198         $str.=$sec." ";  
199       }    
200   
201       $divlist->AddEntry(array(
202                               array("string"=>preg_replace("/%s/",$name,$link),"attach"=>"style='width:80px;'"),
203                               array("string"=>sprintf($link,$name,_("Sections")." :".$str)),
204                               array("string"=>preg_replace("/%s/",$name,$edit.$delete),"attach"=>"style='border-right:0px;width:50px;text-align:right;'")
205                               ));
206       }
207     }
208  
209     $smarty -> assign("Repositories",$divlist->DrawList());
211     $display.= $smarty->fetch(get_template_path('servRepository.tpl', TRUE));
212     return($display);
213   }
215   function remove_from_parent()
216   {
217     plugin::remove_from_parent();    
218     $ldap= $this->config->get_ldap_link();
219     $ldap->cd ($this->config->current['BASE']);
220     
221     $ldap->cat($this->dn);
222     
223     if($ldap->count()){
224       $ldap->cd($this->dn);
225       $ldap->modify($this->attrs);      
226       $this->handle_post_events("modify");
227     }
228   }
231   /* Save data to object */
232   function save_object()
233   {
234     plugin::save_object();
235     if(isset($_POST['regex'])){
236       $this->regex = $_POST['regex'];
237     }
238   }
241   /* Check supplied data */
242   function check()
243   {
244     $message= array();
245     return ($message);
246   }
249   /* Save to LDAP */
250   function save()
251   {
252     plugin::save();
254     $arr = array();
255     foreach($this->repositories as $servername => $conf){
256       $str = "";
257       foreach($conf['Sections'] as $sec){
258         $str.=$sec.",";
259       }
260       $str=preg_replace("/,$/","",$str);
261         
262       if($conf['ParentServer']=="none"){
263         $conf['ParentServer'] ="";
264       }    
265     
266       $arr[]=$conf['Url']."|".$conf['ParentServer']."|".$conf['Release']."|".$str;
267     }
268     $this->attrs['FAIrepository'] = $arr;
270     $ldap= $this->config->get_ldap_link();
271     $ldap->cd ($this->config->current['BASE']);
272     
273     $ldap->cat($this->dn);
274     
275     if($ldap->count()){
276       $ldap->cd($this->dn);
277       $ldap->modify($this->attrs);      
278       $this->handle_post_events("modify");
279     }else{
280       $ldap->cd ($this->config->current['BASE']);
281       $ldap->create_missing_trees($this->dn);
282       $ldap->cd($this->dn);
283       $ldap->add($this->attrs);
284       $this->handle_post_events("add");
285     }
286   }
290 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
291 ?>