Code

Updated gosa-si dependencies
[gosa.git] / gosa-plugins / goto / admin / systems / goto / class_workstationGeneric.inc
index 4c6b13995e771512bf2646ef37978a2076e03c2d..89e601e6cd1fd44caeb87275c6f6bb6d060c89d7 100644 (file)
@@ -4,6 +4,7 @@ class workgeneric extends plugin
 {
   /* Generic terminal attributes */
   var $gotoMode= "locked";
+  var $initial_gotoMode= "locked";
   var $gotoSyslogServer= "";
   var $gotoSyslogServers= array();
   var $gotoNtpServer= array();
@@ -23,17 +24,21 @@ class workgeneric extends plugin
   var $gotoLastUser= "-";
   var $FAIscript= "";
   var $view_logged = FALSE;
+  var $auto_activate= FALSE;
 
   /* Needed values and lists */
   var $base= "";
   var $cn= "";
   var $l= "";
   var $orig_dn= "";
+  var $orig_cn= "";
+  var $orig_base= "";
 
   /* Plugin side filled */
   var $modes= array();
 
   var $netConfigDNS;
+  var $baseSelector;
 
   var $inheritTimeServer = true;
 
@@ -46,7 +51,7 @@ class workgeneric extends plugin
   var $objectclasses= array("top", "gotoWorkstation", "GOhard");
 
   var $validActions   = array("reboot" => "", "localboot" => "", "halt" => "", "update" => "", "reinstall" => "",
-                            "rescan" => "", "wake" => "", "memcheck" => "", "sysinfo" => "");
+                            "rescan" => "", "wakeup" => "", "memcheck" => "", "sysinfo" => "");
   
   var $fai_activated = FALSE;
 
@@ -55,6 +60,8 @@ class workgeneric extends plugin
   var $currently_installing = FALSE;
   var $currently_installing_warned = FALSE;
 
+  var $kerberos_key_service = NULL;
+
   function workgeneric (&$config, $dn= NULL, $parent= NULL)
   {
     $tmp= $config->search("faiManagement", "CLASS",array('menu','tabs'));
@@ -64,6 +71,10 @@ class workgeneric extends plugin
 
     plugin::plugin ($config, $dn, $parent);
 
+    if(class_available("krbHostKeys")){
+      $this->kerberos_key_service = new krbHostKeys($this->config,$this);
+    }
+
     if(!isset($this->parent->by_object['ogroup'])){
       $ldap = $this->config->get_ldap_link();
       $ldap->cd ($this->config->current['BASE']);
@@ -72,6 +83,7 @@ class workgeneric extends plugin
     }
 
     $this->netConfigDNS = new termDNS($this->config,$this,$this->objectclasses);
+    $this->netConfigDNS->MACisMust =TRUE;
 
     /* Check if this host is currently in installation process*/
     if(class_available("gosaSupportDaemon") && class_available("DaemonEvent")){
@@ -79,7 +91,7 @@ class workgeneric extends plugin
       $e_types = DaemonEvent::get_event_types(USER_EVENT | SYSTEM_EVENT | HIDDEN_EVENT);
       $evts = $o->get_entries_by_mac(array($this->netConfigDNS->macAddress));
       foreach($evts as $evt){
-        if(isset($e_types['QUEUED'][$evt['HEADERTAG']]) && $evt['status'] == "processing" &&
+        if(isset($e_types['QUEUED'][$evt['HEADERTAG']]) && $evt['STATUS'] == "processing" &&
             $e_types['QUEUED'][$evt['HEADERTAG']] == "DaemonEvent_reinstall"){
           $this->currently_installing =TRUE;
         }
@@ -131,9 +143,11 @@ class workgeneric extends plugin
     /* Set base */
     if ($this->dn == "new"){
       $ui= get_userinfo();
-      $this->base= dn2base($ui->dn);
-    } else {
-      $this->base= preg_replace ("/^[^,]+,[^,]+,[^,]+,/", "", $this->dn);
+      $this->base= dn2base(session::global_is_set("CurrentMainBase")?"cn=dummy,".session::global_get("CurrentMainBase"):$ui->dn);
+    } elseif(preg_match("/".preg_quote(get_ou("systemIncomingRDN"), '/')."/i", $this->dn)){
+      $this->base= preg_replace ("/^[^,]+,".preg_quote(get_ou("systemIncomingRDN"), '/')."/i", "", $this->dn);
+    }else{
+      $this->base= preg_replace ("/^[^,]+,".preg_quote(get_ou("workstationRDN"), '/')."/i", "", $this->dn);
     }
 
     /* Create an array of all Syslog servers */
@@ -146,8 +160,18 @@ class workgeneric extends plugin
       $this->gotoSyslogServers[$server] = $visible;
     }
 
+    $this->initial_gotoMode = $this->gotoMode;
+
     /* Save 'dn' for later referal */
     $this->orig_dn= $this->dn;
+    $this->orig_cn= $this->cn;
+    $this->orig_base= $this->base;
+
+    /* Instanciate base selector */
+    $this->baseSelector= new baseSelector($this->get_allowed_bases(), $this->base);
+    $this->baseSelector->setSubmitButton(false);
+    $this->baseSelector->setHeight(300);
+    $this->baseSelector->update(true);
   }
 
 
@@ -186,7 +210,7 @@ class workgeneric extends plugin
       $action= $_POST['saction'];
 
       /* Check if we have an DaemonEvent for this action */ 
-      if(class_available("DaemonEvent")){
+      if(class_available("gosaSupportDaemon") && class_available("DaemonEvent")){
         $events = DaemonEvent::get_event_types(SYSTEM_EVENT | HIDDEN_EVENT);
         if(isset($events['TRIGGERED']["DaemonEvent_".$action])){
           $evt = $events['TRIGGERED']["DaemonEvent_".$action];
@@ -195,8 +219,7 @@ class workgeneric extends plugin
           $tmp->set_type(TRIGGERED_EVENT);
           $o_queue = new gosaSupportDaemon();
           if(!$o_queue->append($tmp)){
-            msg_dialog::display(_("Daemon"),sprintf(_("Something went wrong while talking to the daemon: %s."),
-                  $o_queue->get_error()),ERROR_DIALOG);
+            msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
           }
         }
       } else {
@@ -209,42 +232,11 @@ class workgeneric extends plugin
 
     /* Do we represent a valid terminal? */
     if (!$this->is_account && $this->parent === NULL){
-      $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
-        _("This 'dn' has no workstation features.")."</b>";
+      $display= "<img alt=\"\" src=\"images/small-error.png\" align=middle>&nbsp;<b>".
+        msgPool::noValidExtension(_("workstation"))."</b>";
       return($display);
     }
 
-    /* Base select dialog */
-    $once = true;
-    foreach($_POST as $name => $value){
-      if(preg_match("/^chooseBase/",$name) && $once && $this->acl_is_writeable("base")){
-        $once = false;
-        $this->dialog = new baseSelectDialog($this->config,$this,$this->get_allowed_bases());
-        $this->dialog->setCurrentBase($this->base);
-      }
-    }
-
-    /* Dialog handling */
-    if(is_object($this->dialog)){
-      /* Must be called before save_object */
-      $this->dialog->save_object();
-
-      if($this->dialog->isClosed()){
-        $this->dialog = false;
-      }elseif($this->dialog->isSelected()){
-
-        /* A new base was selected, check if it is a valid one */
-        $tmp = $this->get_allowed_bases();
-        if(isset($tmp[$this->dialog->isSelected()])){
-          $this->base = $this->dialog->isSelected();
-        }
-
-        $this->dialog= false;
-      }else{
-        return($this->dialog->execute());
-      }
-    }
-
     /* Add new ntp Server to our list */ 
     if((isset($_POST['addNtpServer'])) && (isset($_POST['gotoNtpServers'])) && $this->acl_is_writeable("gotoNtpServer")){
       $this->gotoNtpServer[$_POST['gotoNtpServers']] = $_POST['gotoNtpServers'];
@@ -259,6 +251,7 @@ class workgeneric extends plugin
 
     /* Fill templating stuff */
     $smarty= get_smarty();
+    $smarty->assign("usePrototype", "true");
 
     /* Set acls */
     $tmp = $this->plInfo();
@@ -269,7 +262,6 @@ class workgeneric extends plugin
     $smarty->assign("cn", $this->cn);
     $smarty->assign("description", $this->description);
     $smarty->assign("l", $this->l);
-    $smarty->assign("bases", $this->get_allowed_bases());
     $smarty->assign("staticAddress", "");
 
     $tmp = array();
@@ -283,19 +275,21 @@ class workgeneric extends plugin
     /* Check if workstation is online */
     if (gosaSupportDaemon::ping($this->netConfigDNS->macAddress)){
       $smarty->assign("actions", array("halt" => _("Switch off"), "reboot" => _("Reboot"),
-                                       "update" => _("System update"),
+                                       "update" => _("Software update"),
                                        "reinstall" => _("Reinstall"),
                                        "rescan" => _("Rescan hardware"),
-                                       "memcheck" => _("Memory test"),
+                                       #"memcheck" => _("Memory test"),
                                        "localboot" => _("Force localboot"),
-                                       "sysinfo"  => _("System analysis")));
+                                       #"sysinfo"  => _("System analysis")
+                                       ));
     } else {
-      $smarty->assign("actions", array("wake" => _("Wake up"),
+      $smarty->assign("actions", array("wakeup" => _("Wake up"),
                                        "reinstall" => _("Reinstall"),
-                                       "update" => _("System update"),
-                                       "memcheck" => _("Memory test"),
+                                       "update" => _("Software update"),
+                                       #"memcheck" => _("Memory test"),
                                        "localboot" => _("Force localboot"),
-                                       "sysinfo"  => _("System analysis")));
+                                       #"sysinfo"  => _("System analysis")
+                                       ));
     }
     /* Arrays */
     $smarty->assign("modes", $this->modes);
@@ -312,9 +306,10 @@ class workgeneric extends plugin
     $smarty->assign("gotoNtpServers", $ntpser);
 
     /* Variables */
-    foreach(array("base", "gotoMode", "gotoSyslogServer", "gotoNtpServer") as $val){
+    foreach(array("gotoMode", "gotoSyslogServer", "gotoNtpServer") as $val){
       $smarty->assign($val."_select", $this->$val);
     }
+    $smarty->assign("base", $this->baseSelector->render());
 
     /* tell smarty the inherit checkbox state */
     $smarty->assign("inheritTimeServer",$this->inheritTimeServer);
@@ -326,6 +321,12 @@ class workgeneric extends plugin
     }
     $smarty->assign("netconfig", $str);
 
+    /* Display kerberos host key options */
+    $smarty->assign("host_key","");
+    if(is_object($this->kerberos_key_service)){
+      $smarty->assign("host_key",$this->kerberos_key_service->execute_by_prefix("host/"));
+    }
+
     /* Show main page */
     $smarty->assign("currently_installing", $this->currently_installing);
     return($smarty->fetch (get_template_path('workstation.tpl', TRUE, dirname(__FILE__))));
@@ -343,6 +344,11 @@ class workgeneric extends plugin
         msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class()));
       }
 
+      /* Remove kerberos key dependencies too */
+      if(is_object($this->kerberos_key_service)){
+        $this->kerberos_key_service->remove_from_parent_by_prefix("host/");
+      }
+
       /* Optionally execute a command after we're done */
       $this->handle_post_events("remove", array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
 
@@ -354,6 +360,9 @@ class workgeneric extends plugin
         unset($og->member[$this->dn]);
         $og->save ();
       }
+
+      /* Remove all accessTo/trust dependencies */
+      update_accessTo($this->cn,"");
     }
 
     /* Clean queue form entries with this mac 
@@ -380,11 +389,14 @@ class workgeneric extends plugin
     plugin::save_object();
     $this->base = $base_tmp;
 
-    /* Save base, since this is no LDAP attribute */
-    $tmp = $this->get_allowed_bases();
-    if(isset($_POST['base'])){
-      if(isset($tmp[$_POST['base']])){
-        $this->base= $_POST['base'];
+    /* Refresh base */
+    if ($this->acl_is_moveable($this->base)){
+      if (!$this->baseSelector->update()) {
+        msg_dialog::display(_("Error"), msgPool::permMove(), ERROR_DIALOG);
+      }
+      if ($this->base != $this->baseSelector->getBase()) {
+        $this->base= $this->baseSelector->getBase();
+        $this->is_modified= TRUE;
       }
     }
 
@@ -402,6 +414,11 @@ class workgeneric extends plugin
     if(isset($_POST["inheritAll"])){
       $this->set_everything_to_inherited();
     }
+
+    /* Hanle kerberos host key plugin */
+    if(is_object($this->kerberos_key_service)){
+      $this->kerberos_key_service->save_object_by_prefix("host/");
+    }
   }
 
 
@@ -410,21 +427,26 @@ class workgeneric extends plugin
   {
     /* Call common method to give check the hook */
     $message= plugin::check();
-  
     /* Skip IP & Mac checks if this is a template */
     if($this->cn != "wdefault"){
       $message= array_merge($message, $this->netConfigDNS->check());
     }
 
-    $this->dn= "cn=".$this->cn.",".get_ou('workstationou').$this->base;
+    $this->dn= "cn=".$this->cn.",".get_ou('workstationRDN').$this->base;
 
     if ($this->cn == ""){
-      $message[]= _("The required field 'Workstation name' is not set.");
+      $message[]= msgPool::required(_("Name"));
     }
 
     /* Check if given name is a valid host/dns name */
     if(!tests::is_dns_name($this->cn)){
-      $message[] = _("Please specify a valid name for this object.");
+      $message[] = msgPool::invalid(_("Name"));
+    }
+
+    // Check if a wrong base was supplied
+    if(!$this->baseSelector->checkLastBaseUpdate()){
+      $message[]= msgPool::check_base();
     }
 
     if ($this->orig_dn != $this->dn){
@@ -438,11 +460,11 @@ class workgeneric extends plugin
       }
       if ($ldap->count() != 0){
         while ($attrs= $ldap->fetch()){
-          if (preg_match("/cn=dhcp,/",$attrs['dn']) || preg_match ("/,".get_ou('incomingou')."/", $ldap->getDN())){
+          if (preg_match("/cn=dhcp,/",$attrs['dn']) || preg_match ("/,".preg_quote(get_ou('systemIncomingRDN'), '/')."/i", $ldap->getDN())){
             continue;
           } else {
             if ($attrs['dn'] != $this->orig_dn){
-              $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
+              $message[]= msgPool::duplicated(_("Name"));
               break;
             }
           }
@@ -452,15 +474,41 @@ class workgeneric extends plugin
 
     /* Check for valid ntpServer selection */
     if((!$this->inheritTimeServer) && (!count($this->gotoNtpServer))){
-      $message[]= _("There must be at least one NTP server selected, or the inherit mode activated.");
+      $message[]= msgPool::required(_("NTP server"));
     }
 
-    /* Warn the user, that this host is currently installing */
-    if($this->currently_installing && !$this->currently_installing_warned){
-      $this->currently_installing_warned = TRUE;
-      $message[] = _("This host is currently installing, if you really want to save it, save again.");
+    /* Only systems with a valid ldap handle can be activated 
+     */
+    if($this->gotoMode == "active" && $this->initial_gotoMode != "active"){
+
+      if(isset($this->parent->by_object['workstartup']) &&
+          !count($this->parent->by_object['workstartup']->gotoLdapServers) && 
+          !$this->parent->by_object['workstartup']->gotoLdap_inherit){
+
+        $message[] = _("A valid LDAP server assignement is missing!");
+      }
+    }else{
+      /* Warn the user, that this host is currently installing */
+      if($this->currently_installing && !$this->currently_installing_warned && 
+          !preg_match("/".preg_quote(get_ou("systemIncomingRDN"), '/')."/i",$this->orig_dn)){
+      
+        /* Force aborting without message dialog */
+        $message[] = "";
+        $this->currently_installing_warned = TRUE;
+        msg_dialog::display(_("Software deployment"), 
+            _("This host is currently installing. If you want to save it, press 'OK'."),
+            CONFIRM_DIALOG);
+      }
     }
 
+    /* Check if we are allowed to create or move this object
+     */
+    if($this->orig_dn == "new" && !$this->acl_is_createable($this->base)){
+      $message[] = msgPool::permCreate();
+    }elseif($this->orig_dn != "new" && $this->base != $this->orig_base && !$this->acl_is_moveable($this->base)){
+      $message[] = msgPool::permMove();
+    }
     return ($message);
   }
 
@@ -472,7 +520,7 @@ class workgeneric extends plugin
     $activate= (isset($this->saved_attributes['gotoMode']) &&
         $this->gotoMode != $this->saved_attributes['gotoMode'] &&
         $this->gotoMode == "active" &&
-        tests::is_ip($this->netConfigDNS->ipHostNumber));
+        tests::is_ip($this->netConfigDNS->ipHostNumber)) || $this->auto_activate;
     plugin::save();
 
     /* Strip out 'default' values */
@@ -519,6 +567,11 @@ class workgeneric extends plugin
       }
     }
 
+    /* cn=default and macAddress=- indicates that this is a template */
+    if($this->cn == "wdefault"){
+      $this->netConfigDNS->macAddress = "-";
+    }
+
     /* Write back to ldap */
     $ldap= $this->config->get_ldap_link();
     if ($this->orig_dn == 'new'){
@@ -530,10 +583,16 @@ class workgeneric extends plugin
       if (!$ldap->success()){
         msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()));
       }
+
+      $this->netConfigDNS->cn = $this->cn;
+      $this->netConfigDNS->save();
+
       $this->handle_post_events("add",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
     } else {
       if ($this->orig_dn != $this->dn){
-        $this->move($this->orig_dn, $this->dn);
+
+        /* Remove all accessTo/trust dependencies */
+        update_accessTo($this->orig_cn,$this->cn);
       }
       $ldap->cd($this->dn);
       $this->cleanup();
@@ -543,17 +602,12 @@ class workgeneric extends plugin
       }
       new log("modify","workstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
 
-      $this->handle_post_events("modify",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
-    }
+      $this->netConfigDNS->cn = $this->cn;
+      $this->netConfigDNS->save();
 
-    /* cn=default and macAddress=- indicates that this is a template */
-    if($this->cn == "wdefault"){
-      $this->netConfigDNS->macAddress = "-";
+      $this->handle_post_events("modify",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
     }
 
-    $this->netConfigDNS->cn = $this->cn;
-    $this->netConfigDNS->save();
-
     if ($activate && class_available("DaemonEvent")){
 
       /* Send installation activation
@@ -566,8 +620,7 @@ class workgeneric extends plugin
         $tmp->set_type(TRIGGERED_EVENT);
         $tmp->add_targets(array($this->netConfigDNS->macAddress));
         if(!$o_queue->append($tmp)){
-          msg_dialog::display(_("Daemon"),sprintf(_("Something went wrong while talking to the daemon: %s."),
-                $o_queue->get_error()),ERROR_DIALOG);
+          msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
         }
       }
     }
@@ -646,7 +699,8 @@ class workgeneric extends plugin
             "gotoMode"            => _("Goto mode"), 
             "gotoSyslogServer"    => _("Syslog server"), 
             "gotoNtpServer"       => _("Ntp server"), 
-            "gotoRootPasswd"      => _("Root password"),
+            "userPassword"      => _("Root password"),
+            "createFAICD"         => _("Create FAI CD"),
             "FAIstate"            => _("Action flag"))
           ));
   }
@@ -658,19 +712,38 @@ class workgeneric extends plugin
 
     /* Set workstation service attributes to inherited */
     if($this->member_of_ogroup && isset($this->parent->by_object['workservice'])){
-      foreach(array("gotoXKbLayout","gotoXKbModel","gotoXKbVariant",
+      foreach(array("gotoXKbLayout","gotoXKbModel","gotoXKbVariant","gotoXDriver",
             "gotoXResolution","gotoXColordepth","gotoXMouseType","gotoXMouseport") as $name){
-        $this->parent->by_object['workservice']->$name = "default"; 
+        if($this->parent->by_object['workservice']->acl_is_writeable($name)){
+          $this->parent->by_object['workservice']->$name = "default"; 
+        }
       }
     }
 
     /* Set workstation startup attributes to inherited */
     if($this->member_of_ogroup && isset($this->parent->by_object['workstartup'])){
-      $this->parent->by_object['workstartup']->gotoBootKernel = "default-inherited";
-      $this->parent->by_object['workstartup']->gotoLdapServer = "default-inherited";
-      $this->parent->by_object['workstartup']->FAIdebianMirror= "inherited";
+      $obj = $this->parent->by_object['workstartup'];
+      if($obj->acl_is_writeable("gotoBootKernel")){
+        $this->parent->by_object['workstartup']->gotoBootKernel = "default-inherited";
+      }
+      if($obj->acl_is_writeable("gotoLdapServer")){
+        $this->parent->by_object['workstartup']->gotoLdapServer = "default-inherited";
+        $this->parent->by_object['workstartup']->gotoLdap_inherit = TRUE;
+        $this->parent->by_object['workstartup']->gotoLdapServers = array();
+      }
+      if($obj->acl_is_writeable("FAIdebianMirror")){
+        $this->parent->by_object['workstartup']->FAIdebianMirror= "inherited";
+      }
     }
   }
+
+
+  function is_modal_dialog()
+  {
+    return((isset($this->dialog) && $this->dialog) || (isset($this->netConfigDNS->dialog) && $this->netConfigDNS->dialog));
+  }
+
+
 }
   // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>