Code

replaced <p> seperator style by <hr >
[gosa.git] / gosa-plugins / opsi / admin / opsiLicenses / class_licenseGeneric.inc
index 726de07873385ccbfef315fdfba4b9ca576bea30..21f5a3f8d08e43ad04323d3db5d16de44588c8b1 100644 (file)
 class licenseGeneric extends plugin 
 {
 
+  // License attributes
   var $si = NULL;
+  var $data = array();
+  var $cn = "";
+  var $orig_cn = "";
+  var $description = "";  
+  var $partner = "";
 
-  function __construct(&$config,$dn, $license)
+  // Date attributes 
+  var $conclusionDate = "";
+  var $expirationDate = "";
+  var $notificationDate = "";
+
+  // License model related attribues
+  var $licenseModel = "";
+  var $licenseKey = array();
+  var $orig_licenseModel = "";
+  var $licensePoolId = "";
+  var $boundToHost= array(); // Reserved for Host.   
+  var $usedByHost = array(); // Used by Host.   
+
+  var $maximumInstallations = 0;
+  var $opsiHosts; 
+  
+  var $attributes = array(
+        "cn","description","partner","conclusionDate","expirationDate",
+        "notificationDate","licenseModel","licenseKey","maximumInstallations",
+        "licensePoolId", "usedByHost","boundToHost");
+
+  function __construct(&$config, $dn, $license, $hosts = array())
   {
+  
     $this->config = $config;
-    $this->dn = $this->orig_dn = $dn;
+    $this->data = $license;
+    $this->dn = $dn;
     $this->si = new opsiLicenceHandler($this->config);
+    $this->opsiHosts = $hosts;
+
+    // Detect account state.
+    if(count($this->data) == 0){
+      $this->initially_was_account = FALSE;
+    }else{
+      $this->initially_was_account = TRUE;
+    }
+    $this->is_account = TRUE;
 
     // Extract pool name out of the fake dn.
     $this->init();
@@ -39,12 +77,27 @@ class licenseGeneric extends plugin
   
   function init()
   {
-    // Load local Boot Products 
-    $res = $this->si->get_local_products();
-    if($this->si->is_error()){
-      $this->init_successfull = FALSE;
-      return(FALSE);
+    // Extract license information out of the license object ($this->data)
+    $this->boundToHost = array('0'=>"");
+    $this->usedByHost = array('0'=>"");
+    $this->licenseKey = array('0'=>"");
+    if($this->initially_was_account){
+      foreach($this->attributes as $attr){
+        $this->$attr = $this->data[$attr];
+      }
+
+      // Fix dates 
+      foreach(array("notificationDate","expirationDate","conclusionDate") as $date) {
+        if(!empty($this->$date)){
+          $this->$date = date("d.m.Y",strtotime($this->$date));
+        }
+      }
     }
+
+    $this->orig_cn = $this->cn;
+    $this->orig_licenseModel = $this->licenseModel;
+    $this->init_successfull = TRUE;
+    return;    
   }
 
 
@@ -60,7 +113,7 @@ class licenseGeneric extends plugin
 
     $smarty = get_smarty();
 
-    // Assign ACls 
+    // Assign attributes and its ACls 
     $plInfo = $this->plInfo();
     foreach($plInfo['plProvidedAcls'] as $name => $desc){
       $smarty->assign("{$name}ACL",$this->getacl($name));
@@ -69,18 +122,88 @@ class licenseGeneric extends plugin
       $smarty->assign($attr,$this->$attr);
     }
 
+    // Assign list of available license models
+    $smarty->assign("licenseModels",array(
+          "RETAIL" => _("Retail"),
+          "OEM"=>_("OEM"),
+          "VOLUME" => _("Volume")));
+
+    $smarty->assign("usePrototype", "true");
     $smarty->assign("init_successfull", $this->init_successfull);
     $smarty->assign("initially_was_account", $this->initially_was_account);
+    $smarty->assign("hosts", $this->getHosts());
+
+    $ui = get_userinfo();
+    $acl_base = $this->dn;
+    if($acl_base == "new"){
+      $acl_base = $this->config->current['BASE'];
+    }
+    $smarty->assign("licenseACL", $ui->get_permissions($acl_base,"opsi/licensePoolGeneric","licenses"));
+    $smarty->assign("writeable", preg_match("/w/",$ui->get_permissions($acl_base,"opsi/licensePoolGeneric","licenses")));
+    $smarty->assign("notUsedHosts", array_diff($this->getHosts(), $this->usedByHost));
+    $smarty->assign("boundToHost", $this->boundToHost[0]);
+    $smarty->assign("licenseKey", $this->licenseKey[0]);
+
+    foreach(array("notificationDate","expirationDate","conclusionDate") as $date) {
+      $smarty->assign($date."Writeable", $this->acl_is_writeable($date));
+    }
+
     return($smarty->fetch(get_template_path('licenseGeneric.tpl',TRUE,dirname(__FILE__))));
   }
 
+
+  function getHosts()
+  {
+    $ret = array();
+    foreach($this->opsiHosts as $host){
+      $cn = $host['NAME'][0]['VALUE'];
+      $ret[$cn] = $cn;
+    }
+    return($ret);
+  }
+
+
  
   /* Save HTML inputs
    */
   function save_object()
   {
+
     if(isset($_POST['opsiLicensesPosted'])){
-      plugin::save_object();  
+      plugin::save_object();
+
+      if(isset($_POST['addLicenseUsage']) && isset($_POST['selectedHostToAdd'])){
+        $host = get_post('selectedHostToAdd');
+        if(!empty($host) && 
+            in_array($host,$this->getHosts()) && 
+            !in_array($host, $this->usedByHost)){
+          $this->usedByHost[] = $host;
+        }
+      }
+
+      if(isset($_POST['removeLicenseUsage']) && isset($_POST['selectedUsedHosts'])){
+        $todel = $_POST['selectedUsedHosts'];
+        foreach($todel as $host){
+          if(isset($this->usedByHost[$host])){
+            unset($this->usedByHost[$host]);
+          }
+        }
+      }
+
+      // Force licenseKey to be of type array.
+      if(!is_array($this->licenseKey)){
+        $this->licenseKey = array($this->licenseKey);
+      }
+
+      // BoundToHost maybe multiple too, later.
+      if(!is_array($this->boundToHost)){
+        $this->boundToHost = array($this->boundToHost);
+      }    
+
+      if($this->initially_was_account){
+        $this->cn = $this->orig_cn;
+        $this->licenseModel = $this->orig_licenseModel;
+      }
     }
   }  
 
@@ -90,58 +213,55 @@ class licenseGeneric extends plugin
   function check()
   {
     $message = plugin::check();
+
+    // Very simple date input checks
+    if(!empty($this->expirationDate) && 
+       !preg_match("/^[0-9]{2}\.[0-9]{2}\.[0-9]{4}$/",$this->expirationDate)){
+      $message[] = msgPool::invalid(_("Expiration date"),$this->expirationDate,"","23.02.2009");
+    }
+    if(!empty($this->conclusionDate) && 
+       !preg_match("/^[0-9]{2}\.[0-9]{2}\.[0-9]{4}$/",$this->conclusionDate)){
+      $message[] = msgPool::invalid(_("Expiration date"),$this->conclusionDate,"","23.02.2009");
+    }
+    if(!empty($this->notificationDate) && 
+       !preg_match("/^[0-9]{2}\.[0-9]{2}\.[0-9]{4}$/",$this->notificationDate)){
+      $message[] = msgPool::invalid(_("Expiration date"),$this->notificationDate,"","23.02.2009");
+    }
+
+    if(empty($this->cn)){
+      $message[] = msgPool::required(_("Name"));
+    }
+
+    if(empty($this->licenseKey[0])){
+      $message[] = msgPool::required(_("License key"));
+    }
+
     return($message);
   }
   
-
  
   /* Removes the object from the opsi database
    */ 
-  function remove_from_parent()
-  {
-  echo "missing remove.";
-#   $this->si->deletePool($this->orig_cn);
-#   if($this->si->is_error()){
-#     msg_dialog::display(_("Error"),msgPool::siError($this->si->get_error()),ERROR_DIALOG);
-#   }else{
-#
-#     // Trigger remove signal
-#     $this->handle_post_events("remove");
-#   }
-#
-#   new log("remove","users/".get_class($this),$this->dn,array_keys($this->attrs),$this->si->get_error());
-  }
+  function remove_from_parent() {}
 
 
   /* Saves object modifications
    */  
   function save()
   {
+    $data = array();
+    foreach($this->attributes as $target){
+      $data[$target] = $this->$target;
+    }
+    
+    // Return opsi like dates.
+    foreach(array("notificationDate","expirationDate","conclusionDate") as $date) {
+      if(!empty($this->$date)){
+        $data[$date] = date("Y-m-d",strtotime($this->$date));
+      }
+    }
 
-    echo "missing save";
-#   plugin::save();
-#
-#   // Send modify/add events
-#   $mode = "modify";
-#   if($this->orig_dn == "new"){
-#     $mode = "add";
-#   }
-#
-#   $this->si->createPool($this->cn, $this->description,$this->productIds,$this->softwareIds);#
-#   if($this->si->is_error()){
-#     msg_dialog::display(_("Error"),msgPool::siError($this->si->get_error()),ERROR_DIALOG);
-#   }else{
-#     $this->handle_post_events($mode);
-#   }
-#
-#   // Log action
-#   if($mode == "modify"){
-#     new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$this->si->get_error());
-#   }else{
-#     new log("create","users/".get_class($this),$this->dn,array_keys($this->attrs),$this->si->get_error());
-#   }
-#
-#   return 0;
+    return($data);
   }
  
   static function plInfo()
@@ -151,7 +271,7 @@ class licenseGeneric extends plugin
           "plDescription" => _("License generic"),
           "plSelfModify"  => FALSE,
           "plDepends"     => array(),
-          "plPriority"    => 1,
+          "plPriority"    => 8,
           "plSection"     => array("administration"),
           "plCategory"    => array("opsi"),
           "plProvidedAcls"=> array(