Code

e905b8894497a991517c36c84dba6b75ef0e7013
[gosa.git] / plugins / admin / systems / class_goShareServer.inc
1 <?php
3 class goShareServer extends plugin{
5   var $cli_summary      = "This plugin is used within the ServerService Pluign \nand indicates that this server supports shares.";
6   var $cli_description  = "Some longer text\nfor help";
7   var $cli_parameters   = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
9   /* This plugin only writes its objectClass */
10   var $objectclasses    = array("goShareServer");
11   var $attributes       = array("goExportEntry");
12   var $StatusFlag       = "goShareServerStatus";
14   /* This class can't be assigned twice so it conflicts with itsself */
15   var $conflicts        = array("goShareServer");
17   var $DisplayName      = "";
18   var $dn               = NULL;
19   var $acl;
20   var $cn                   = "";
21   var $goShareServerStatus  = "";
22   var $goExportEntry        = array();
23   var $allow_mounts         = false;
24   var $mounts_to_remove     = array();
25   var $mounts_to_add        = array();
27   function goShareServer($config,$dn)
28   {
29     plugin::plugin($config,$dn);
31     $this->DisplayName = _("File service");
33     $tmp =array();
34     if(isset($this->attrs['goExportEntry'])){
35       if(isset($this->attrs['goExportEntry']['count'])){
36         for($i= 0; $i<$this->attrs['goExportEntry']['count']; $i++){
37           $entry= $this->attrs['goExportEntry'][$i];
38           $tmp[preg_replace('/\|.*$/', '', $entry)]= $entry;
39         }
40       }
41     } 
42     $this->goExportEntryList = $tmp;
44     $ldap = $this->config->get_ldap_link();
45     $avl_objectclasses = $ldap->get_objectclasses();
46     if (isset($avl_objectclasses["mount"])) {
47       $this->allow_mounts = true;
48     }
49   }
52   function execute()
53   { 
54     $smarty = get_smarty(); 
57     if((isset($_POST['DelNfsEnt']))&&(isset($_POST['goExportEntryList']))){
58       if($this->allow_mounts){
59         foreach($_POST['goExportEntryList'] as $entry){
60           $this->deleteFromMountList($this->goExportEntryList[$entry]);
61         }
62       }
63       foreach($_POST['goExportEntryList'] as $entry){
64         $this->deleteFromList($entry);
65       }
66     }
68     if(isset($_POST['NewNfsAdd'])){
69       $this->oldone = NULL;
70       $this->o_subWindow = new servnfs($this->config,$this->acl, $this->allow_mounts, $this->dn);
71       $this->dialog = true;
72     }
74     if((isset($_POST['NewNfsEdit']))&&(isset($_POST['goExportEntryList']))){
75       $entry = $this->goExportEntryList[$_POST['goExportEntryList'][0]];
76       $add_mount=isset($this->mounts_to_add[$entry]);
77       $this->oldone=$entry;
78       $this->o_subWindow = new servnfs($this->config,$this->acl,$this->allow_mounts,$this->dn,$entry,$add_mount);
79       $this->dialog = true;
80     }
81     if(isset($this->o_subWindow)){
82       $this->o_subWindow->save_object(TRUE);
83     }
85     /* Save NFS setup */
86     if(isset($_POST['NFSsave'])){
87       if(count($this->o_subWindow->check())>0){
88         foreach($this->o_subWindow->check() as $msg) {
89           print_red($msg);
90         }
91       }else{
92         $this->o_subWindow->save_object();
93         $newone = $this->o_subWindow->save();
94         $this->addToList($newone);
95         if($this->allow_mounts){
96           if($this->oldone) {
97             $this->deleteFromMountList($this->oldone);
98           }
99           if ($this->o_subWindow->should_create_mount()) {
100             $this->addToMountList($newone);
101           }
102         }
103         unset($this->o_subWindow);
104         $this->dialog = false;
105       }
106     }
108     /* Cancel NFS setup */
109     if(isset($_POST['NFScancel'])){
110       $this->oldone = NULL;
111       unset($this->o_subWindow);
112       $this->dialog = false;
113     }
115     /* Execute NFS setup dialog*/
116     if(isset($this->o_subWindow)){
117       return $this->o_subWindow->execute();
118     }
124     foreach($this->attributes as $attr){
125       $smarty->assign($attr,$this->$attr);
126       $smarty->assign($attr."ACL",chkacl($this->acl,$attr));
127     }
128     $tellSmarty= array();
129     ksort($this->goExportEntryList);
130     foreach($this->goExportEntryList as $name=>$values){
131       $tmp = split("\|",$values);
132       $tellSmarty[$name] = $tmp[0]." ".$tmp[4]." (".$tmp[2].")";
133     }
134     $smarty->assign("goExportEntry",array_keys($tellSmarty));
135     $smarty->assign("goExportEntryKeys",($tellSmarty));
136     $smarty->assign("goExportEntryACL", chkacl($this->acl, "goExportEntry"));
139     return($smarty->fetch(get_template_path("goShareServer.tpl",TRUE,dirname(__FILE__))));
140   }
143   function getListEntry()
144   {
145     $this->updateStatusState();
146     $flag = $this->StatusFlag;
147     $fields['Status']     = $this->$flag;
148     $fields['Message']    = _("Shares");
149     $fields['AllowStart'] = true;
150     $fields['AllowStop']  = true;
151     $fields['AllowRestart'] = true;
152     $fields['AllowRemove']= true;
153     $fields['AllowEdit']  = true;
154     return($fields);
155   }
158   function remove_from_parent()
159   {
160     plugin::remove_from_parent();
162     /* Remove status flag, it is not a memeber of 
163         this->attributes, so ensure that it is deleted too */
164     if(!empty($this->StatusFlag)){
165       $this->attrs[$this->StatusFlag] = array();
166     }
168     /* Check if this is a new entry ... add/modify */
169     $ldap = $this->config->get_ldap_link();
170     $ldap->cat($this->dn,array("objectClass"));
171     if($ldap->count()){
172       $ldap->cd($this->dn);
173       $ldap->modify($this->attrs);
174     }else{
175       $ldap->cd($this->dn);
176       $ldap->add($this->attrs);
177     }
178     show_ldap_error($ldap->get_error());
179     $this->handle_post_events("remove");
180   }
183   function save()
184   {
185     plugin::save();
187     /* Arrays */
188     foreach (array("goExportEntryList"=>"goExportEntry") as $source => $destination){
189       $this->attrs[$destination]= array();
190       foreach ($this->$source as $element){
191         $this->attrs[$destination][]= $element;
192       }
193     }
196     /* Process netatalk mounts */
197     if($this->allow_mounts) {
198       $this->process_mounts();
199     }
202     /* Check if this is a new entry ... add/modify */
203     $ldap = $this->config->get_ldap_link();
204     $ldap->cat($this->dn,array("objectClass"));
205     if($ldap->count()){
206       $ldap->cd($this->dn);
207       $ldap->modify($this->attrs);
208     }else{
209       $ldap->cd($this->dn);
210       $ldap->add($this->attrs);
211     }
212     show_ldap_error($ldap->get_error());
213     if($this->initially_was_account){
214       $this->handle_post_events("modify");
215     }else{
216       $this->handle_post_events("add");
217     }
218   }
221   /* Directly save new status flag */
222   function setStatus($value)
223   {
224     if($value == "none") return;
225     if(!$this->initially_was_account) return;
226     $ldap = $this->config->get_ldap_link();
227     $ldap->cd($this->dn);
228     $ldap->cat($this->dn,array("objectClass"));
229     if($ldap->count()){
231       $tmp = $ldap->fetch();
232       for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
233         $attrs['objectClass'][] = $tmp['objectClass'][$i];
234       }
235       $flag = $this->StatusFlag;
236       $attrs[$flag] = $value;
237       $this->$flag = $value;
238       $ldap->modify($attrs);
239       show_ldap_error($ldap->get_error());
240       $this->action_hook();
241     }
242   }
245   function check()
246   { 
247     $message = plugin::check();
248     return($message);
249   }
252   function save_object()
253   {
254     if(isset($_POST['goShareServerPosted'])){
255       plugin::save_object();
256     }
257   } 
259   function addToList($entry){
260     $key =  key($entry);
261     $this->goExportEntryList[$key]=$entry[$key];
262   }
264   function deleteFromList($id){
265     unset($this->goExportEntryList[$id]);
266   }
268    function process_mounts() {
270     $clip = "cn=" . $this->cn . ",ou=servers,ou=systems,";
271     $mountsdn = "cn=mounts," . substr($this->dn, strlen($clip));
273     $mounts = array(
274       "objectClass" => "container",
275       "cn" => "mounts"
276     );
278     # load data from mounts container
279     $ldap = $this->config->get_ldap_link();
280     $ldap->cat($mountsdn, array('dn'));
281     $attrs = $ldap->fetch();
283     # mounts container not present yet, so we create it
284     if (count($attrs) == 0) {
285         $ldap->cd($mountsdn);
286         $ldap->add($mounts);
287         show_ldap_error($ldap->get_error(), _("Creating mount container failed"));
288         gosa_log("Mount container '$mountsdn' has been created");
289     }
291     # remove deleted mounts from the container
292     foreach ($this->mounts_to_remove as $entry) {
293       $mount=$this->returnMountEntry($entry);
294       $mountdn = "cn=".$mount["cn"].","."$mountsdn";
296       $ldap->cat($mountdn, array('dn'));
297       $attrs = $ldap->fetch();
299       if (count($attrs) != 0) {
300         $ldap->rmdir($mountdn);
301         show_ldap_error($ldap->get_error(), _("Removing mount container failed"));
302         gosa_log("Mount object '".$mountdn."' has been removed");
303       }
304     }
306     # add new mounts to the container
307     foreach ($this->mounts_to_add as $entry) {
309       $mount=$this->returnMountEntry($entry);
310       $mountdn = "cn=".$mount["cn"].","."$mountsdn";
311       $ldap->cd($mountdn);
312       $ldap->add($mount);
313       show_ldap_error($ldap->get_error(), _("Saving mount container failed"));
314       gosa_log("Mount object '".$mountdn."' has been added");
315     }
316   }
318    function action_hook($add_attrs= array())
319   {
320     /* Find postcreate entries for this class */
321     $command= search_config($this->config->data['MENU'], get_class($this), "ACTION_HOOK");
322     if ($command == "" && isset($this->config->data['TABS'])){
323       $command= search_config($this->config->data['TABS'], get_class($this), "ACTION_HOOK");
324     }
325     if ($command != ""){
326       /* Walk through attribute list */
327       foreach ($this->attributes as $attr){
328         if (!is_array($this->$attr)){
329           $command= preg_replace("/%$attr/", $this->$attr, $command);
330         }
331       }
332       $command= preg_replace("/%dn/", $this->dn, $command);
333       /* Additional attributes */
334       foreach ($add_attrs as $name => $value){
335         $command= preg_replace("/%$name/", $value, $command);
336       }
338       /* If there are still some %.. in our command, try to fill these with some other class vars */
339       if(preg_match("/%/",$command)){
340         $attrs = get_object_vars($this);
341         foreach($attrs as $name => $value){
342           if(!is_string($value)) continue;
343           $command= preg_replace("/%$name/", $value, $command);
344         }
345       }
347       if (check_command($command)){
348         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
349             $command, "Execute");
351         exec($command);
352       } else {
353         $message= sprintf(_("Command '%s', specified as ACTION_HOOK for plugin '%s' doesn't seem to exist."), $command, get_class($this));
354         print_red ($message);
355       }
356     }
357   }
359   /* Get updates for status flag */
360   function updateStatusState()
361   {
362     if(empty($this->StatusFlag)) return;
364     $attrs = array();
365     $flag = $this->StatusFlag;
366     $ldap = $this->config->get_ldap_link();
367     $ldap->cd($this->cn);
368     $ldap->cat($this->dn,array($flag));
369     if($ldap->count()){
370       $attrs = $ldap->fetch();
371     }
372     if(isset($attrs[$flag][0])){
373       $this->$flag = $attrs[$flag][0];
374     }
375   }
378 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
379 ?>