Code

replaced plugbottom by pluin-actions
[gosa.git] / gosa-plugins / opsi / admin / opsi / class_opsi.inc
index 62a6363650982519588b7ff6d40ac3df0414b822..2aee03ea2156b5a40ef68269cd60c66a61f26c49 100644 (file)
 
 /********
 
-  __construct($config)
-  get_hosts_for_system_management()
-  get_netboot_products($host = "")
-  get_local_products($host = "")
-  get_product_properties()
-  set_product_properties()
-  get_client_hardware()
-  get_client_software()
-  list_clients()
-  del_client()
-  job_opsi_install_client()
-  add_client()
-  add_product_to_client()
-  del_product_from_client()
+  public function __construct($config)
+  public function enabled()
+  function get_hosts_for_system_management()
+  private function xml_to_array($xml,$alternative_method = FALSE)
+  public function send_action($type,$hostId,$mac)
+  public function list_clients( $hostId = "")
+  public function add_client($hostId,$macaddress,$notes,$description)
+  public function modify_client($hostId,$mac,$notes,$description)
+  public function get_netboot_products($host = "")
+  public function get_local_products($host = "")
+  public function get_product_properties($productId,$hostId = "")
+  public function set_product_properties($productId,$cfg,$hostId = "")
+  public function add_product_to_client($productId,$hostId)
+  public function del_product_from_client($productId,$hostId)
+  public function get_client_hardware($hostId)
+  public function get_client_software($hostId)
+  public function del_client($hostId)
+  public function job_opsi_install_client($hostId,$mac)
 
  ********/
 
@@ -58,25 +62,32 @@ class opsi extends gosaSupportDaemon
 
     /* Detect the target opsi host 
      */
-    $opsi_hosts = $this->get_hosts_with_module("opsi_com");
-      
-    /* Just use the first result of the opsi hosts 
-     */
-    $opsi_hosts[] = "asdfdasf";
-    if(count($opsi_hosts) == 1 && isset($opsi_hosts[0])){
-      $this->target = $opsi_hosts[0];
-    }elseif(count($opsi_hosts) > 1){
-      $this->target = $opsi_hosts[0];
-      msg_dialog::display(_("Opsi"),sprintf(_("More than one Opsi server were found, using the first result '%s'."),$this->target));
+    $tmp= $this->config->search("faiManagement", "CLASS",array('menu','tabs'));
+    if(!empty($tmp) && class_available("faiManagement")){
+      $opsi_hosts = $this->get_hosts_with_module("opsi_com");
+
+      /* Just use the first result of the opsi hosts 
+       */
+      if(count($opsi_hosts) == 1 && isset($opsi_hosts[0])){
+        $this->target = $opsi_hosts[0];
+      }elseif(count($opsi_hosts) > 1){
+        $this->target = $opsi_hosts[0];
+        msg_dialog::display(_("Opsi"),sprintf(_("More than one Opsi server were found, using the first result '%s'."),$this->target));
+      }
     }
   }
 
   
   public function enabled()
   {
-    return(tests::is_mac($this->target));
+    $tmp= $this->config->search("faiManagement", "CLASS",array('menu','tabs'));
+    if(!empty($tmp) && class_available("faiManagement") && !empty($this->target)){
+      return(TRUE);
+    }   
+    return(FALSE);
   }
 
+
   /******************
     Opsi handling 
    ******************/
@@ -85,16 +96,27 @@ class opsi extends gosaSupportDaemon
   {
     $res = $this->list_clients();
     $data = array();
+    $ui = get_userinfo();
     foreach($res as $entry){
       if(!isset($entry['MAC'][0]['VALUE'])) $entry['MAC'][0]['VALUE'] = "";
-      $data[] = array(
-        "dn"          => "opsi:=".$entry['NAME'][0]['VALUE'].",".get_ou("winstations").$this->config->current['BASE'],
+      $obj = array(
+        "dn"          => "opsi:=".$entry['NAME'][0]['VALUE'].",".get_ou("sambaMachineAccountRDN").$this->config->current['BASE'],
         "objectClass" => array("gosa_opsi_client"),
         "cn"          => array(0 => $entry['NAME'][0]['VALUE']),
-        "description" => array(0 => $entry['DESCRIPTION'][0]['VALUE']),
         "macAddress"  => array(0 => $entry['MAC'][0]['VALUE']),
         "opsi_notes"  => array(0 => $entry['NOTES'][0]['VALUE']));
+
+      /* Check permissions */
+      $opsi_acl = $ui->get_permissions($obj['dn'],"opsi/opsiGeneric");
+      if(preg_match("/r/",$opsi_acl)){
+        if(!empty($entry['DESCRIPTION'][0]['VALUE'])){ 
+          $obj["description"]= array();
+          $obj["description"][0]= $entry['DESCRIPTION'][0]['VALUE'];
+        }
+        $data[] = $obj;
+      }
     }
+
     return($data);
   }
 
@@ -119,6 +141,23 @@ class opsi extends gosaSupportDaemon
     }
   }
 
+  
+  public function job_opsi_activate_client($id,$mac)
+  {
+    $events = DaemonEvent::get_event_types(SYSTEM_EVENT | HIDDEN_EVENT);
+    $o_queue = new gosaSupportDaemon();
+    if(isset($events['TRIGGERED']['DaemonEvent_activate'])){
+      $evt = $events['TRIGGERED']['DaemonEvent_activate'];
+      $tmp = new $evt['CLASS_NAME']($this->config);
+      $tmp->set_type(TRIGGERED_EVENT);
+      $tmp->add_targets(array($mac));
+      if(!$o_queue->append($tmp)){
+        msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
+      }
+    }
+  }
+
+
 
   /******************
     SI Communication functions
@@ -182,9 +221,7 @@ class opsi extends gosaSupportDaemon
   
     /* Add optional attributes */ 
     foreach(array("notes","description") as $attr) {
-      if(!empty($$attr)){
-        $data[$attr] = $$attr;
-      }
+      $data[$attr] = $$attr;
     }
 
     /* Query SI server */
@@ -245,6 +282,86 @@ class opsi extends gosaSupportDaemon
   }
 
 
+  /*! \brief           Returns a list of netboot products.
+    @param
+    @return            
+   */
+  public function get_full_product_host_information($host = "")
+  {
+    /* Append host attribute to query data 
+     */
+    $data = array();
+    if(!empty($host)){
+      $data['hostId'] = trim($host);
+    }
+
+    $res    = $this->send_data("gosa_opsi_get_full_product_host_information",$this->target,$data,TRUE);
+    $items = array();
+    $attrs = array("TYPE","PRIORITY","ONCESCRIPT","LICENSEREQUIRED","PACKAGEVERSION","PRODUCTVERSION",
+        "ADVICE","SETUPSCRIPT","WINDOWSSOFTWAREIDS","PXECONFIGTEMPLATE","NAME","CREATIONTIMESTAMP", "TYPE",
+        "ALWAYSSCRIPT","PRODUCTID","DESCRIPTION","UNINSTALLSCRIPT","UPDATESCRIPT","PRODUCTCLASSNAMES");
+
+    if(isset($res['XML'][0]['ITEM'])){
+      foreach($res['XML'][0]['ITEM'] as $entry){
+        $e = array();
+        foreach($attrs as $attr){
+          if(isset($entry[$attr])){
+            foreach($entry[$attr] as $key => $value){
+              if(isset($value['VALUE'])){
+                $e['data'][$attr] = $value['VALUE'];
+              }elseif($value['ELEMENT']){
+                foreach($value['ELEMENT'] as $element){
+                  $e['data'][$attr][] = $element['VALUE'];
+                }
+              }
+            }
+          }
+        }
+
+        $e["configurable"] = FALSE;
+        if(isset($entry['PROPERTIES']) && count($entry['PROPERTIES'])){
+          $e["configurable"] = TRUE;
+          $p_data = array();
+
+          foreach($entry['PROPERTIES'][0] as $p_name => $p_values){
+            if(empty($p_values)) continue;
+            $p_data[$p_name]= array();
+            foreach(array('CURRENT','DEFAULT','DESCRIPTION') as $p_tmp){
+              if(isset($p_values[0][$p_tmp])){
+                if(isset($p_values[0][$p_tmp][0]['VALUE'])){
+                  $p_data[$p_name][$p_tmp] = $p_values[0][$p_tmp][0]['VALUE'];
+                }
+              }
+            }
+
+            if(isset($p_values[0]['VALUES'][0]['ELEMENT'])){
+              foreach($p_values[0]['VALUES'][0]['ELEMENT'] as $val){
+                $p_data[$p_name]['VALUE'][] = $val['VALUE'];
+              }
+              $p_data[$p_name]['VALUE_CNT'] = count($p_data[$p_name]['VALUE']);
+            } 
+          }
+
+          $e["data"]['PROPERTIES'] = $p_data;
+        }
+
+
+        $e["installed"] = FALSE;
+        if(isset($entry['ACTIONREQUEST'])){
+          $e["installed"] = TRUE;
+        }
+
+        $e["requires_licence"] = FALSE;
+        if(isset($e['data']['LICENSEREQUIRED']) && preg_match("/true/i",$e['data']['LICENSEREQUIRED'])){
+          $e["requires_licence"] = TRUE;
+        }
+        $items[$entry['PRODUCTID'][0]['VALUE']] = $e;
+      }
+    }
+    return($items);
+  }
+
+
   /*! \brief           Returns a list of all product properties. \ 
     .           Additionally you can specify the host parameter to \
     .           get host specific product properties
@@ -274,7 +391,7 @@ class opsi extends gosaSupportDaemon
       foreach($res['XML'][0]['ITEM'] as $entry){
         foreach($entry as $name => $val){
 
-          foreach(array("DESCRIPTION","DEFAULT") as $attr){
+          foreach(array("DESCRIPTION","CURRENT") as $attr){
             $items[$name][$attr] = "";
             if(isset($val[0][$attr])){
               $items[$name][$attr] = $val[0][$attr][0]['VALUE'];
@@ -319,7 +436,7 @@ class opsi extends gosaSupportDaemon
     /* Add properties */
     $data['item'] = array();
     foreach($cfg as $name => $value){
-      $data['item'][] = "<name>".$name."</name><value>".$value['DEFAULT']."</value>";
+      $data['item'][] = "<name>".$name."</name><value>".$value['CURRENT']."</value>";
     }  
 
     /* Query SI server */