Code

Divlist changes
[gosa.git] / setup / class_setup.inc
index 8bd1e7bf1ec9c9bb3838229091e51a5793ba04e2..700ea7761d84047d0aa46178782eedcf07b323e6 100644 (file)
 
 require_once("class_setupStep.inc");
 
-class setup extends plugin
+class setup 
 {
-
-  var $i_steps  = 7;  // Number of setup steps 
+  var $i_steps  = 9;  // Number of setup steps 
   var $i_current= 1;  // Current step
   var $i_last   = 1;  // Last setup step;
   var $o_steps  = array(); 
-
   var $captured_values = array();
 
   function setup()
   {
-    for($i = 1 ; $i <= $this->i_steps; $i ++ ){
-      $class= "setup_step_".$i;
+    $i = 1; 
+    $this->o_steps[$i++] = new Step_Welcome();
+    $this->o_steps[$i++] = new Step_Language();
+    $this->o_steps[$i++] = new Step_Checks();
+    $this->o_steps[$i++] = new Step_License();
+    $this->o_steps[$i++] = new Step_Ldap();
+    $this->o_steps[$i++] = new Step_Schema();
+    $this->o_steps[$i++] = new Step_Config1();
+    $this->o_steps[$i++] = new Step_Config2();
+    $this->o_steps[$i++] = new Step_Config3();
+    $this->o_steps[$i++] = new Step_Migrate();
+    $this->o_steps[$i++] = new Step_Finish();
+    $this->i_steps = $i-1;
+
+    /* Ensure that setup is not reachable if gosa.conf (CONFIG_FILE) */
+    if(file_exists(CONFIG_DIR."/".CONFIG_FILE)){
+      session_destroy();
+      header("Location: index.php")    ;
+      exit();
+    }
     
-      if(class_exists($class)){
-        $this->o_steps[$i] = new $class();
-      }else{
-        $this->o_steps[$i] = new setup_step();
-        trigger_error("Try to create class '".$class."' but it is not available, possibly you have forgotten to add the include in setup.php");
-      }
+    foreach($this->o_steps as $key => $step){
+      $this->o_steps[$key]->parent = $this;
     }
   }
 
+
   function execute()
   {
-    $smarty = get_smarty();
+    /* display step error msgs */
+    $msgs = $this->o_steps[$this->i_current]->check();
+    foreach($msgs as $msg){
+      print_red($msg);
+    }
+
     $this->o_steps[$this->i_last]->set_active(FALSE);
     $this->o_steps[$this->i_current]->set_active();
     $content = $this->o_steps[$this->i_current]->execute();
@@ -66,6 +84,11 @@ class setup extends plugin
       $this->captured_values[$name] = $value;
     }
 
+    /* Set parent */
+    foreach($this->o_steps as $key => $value){
+      $this->o_steps[$key]->parent = $this;
+    }
+
     /* Check if image button requests next page */
     foreach($_POST as $name => $value){
       if(preg_match("/^next_(x|y)/",$name)){
@@ -86,20 +109,59 @@ class setup extends plugin
           if(isset($this->o_steps[($i+1)])){
             $this->o_steps[($i+1)]->set_enabled();
           }
+        }else{
+          $this->disable_steps_from($i+1);
         }
       }
+    }
+    /* Disable all following steps, if one step isn't compelted right now .*/
+    for($i = 1 ; $i <= $this->i_steps ; $i ++ ){
+      if($this->o_steps[$i]->is_completed()){
+      }else{
+        $this->disable_steps_from($i+1);
+      }
+    }
+    $step = -1;
+
+    if(isset($_POST['setup_goto_step'])){
+      $step= $_POST['setup_goto_step'];
+    }
+
+    if(isset($_GET['step'])){
+      $step = $_GET['step'];
+    }elseif(isset($_POST['next'])){
+      $step = $this->i_current + 1;
+    }elseif(isset($_POST['last'])){
+      $step = $this->i_current - 1;
+    }
+  
+    $once = true;
+    foreach($_POST as $name => $value){
+      if(preg_match("/^step_[0-9]*$/",$name) && $once ){
+        $step = preg_replace("/^step_/","",$name);
+      }
+    }
+
+    if($this->selectable_step($step)){
+      $this->i_last    = $this->i_current;
+      $this->i_current = $step;
+    }
+  }
 
-      if(isset($_GET['step'])){
-        $step = $_GET['step'];
-      }elseif(isset($_POST['next'])){
-        $step = $this->i_current + 1;
-      }elseif(isset($_POST['last'])){
-        $step = $this->i_current - 1;
+
+  function disable_steps_from($start)
+  {
+    $found = false;
+    foreach($this->o_steps as $key => $step){
+      if($key == $start){
+        $found = true;
       }
 
-      if($this->selectable_step($step)){
-        $this->i_last    = $this->i_current;
-        $this->i_current = $step;
+      if($found){ 
+        $this->o_steps[$key]->set_enabled(false);
+        $this->o_steps[$key]->set_completed(false);
       }
     }
   }
@@ -111,29 +173,87 @@ class setup extends plugin
     $str = "";
     foreach($this->o_steps as $key => $step){
 
+      $step -> update_strings();
+
       $s_title    = $step -> get_title();
       $s_info     = $step -> get_small_info();
       $b_active   = $step -> is_active();
       $b_enabled  = $step -> is_enabled();
+      $b_completed= $step -> is_completed();
 
-      $str .="<div >";
-      if($b_enabled){
-        if($b_active){
-          $str .= "<a href='?step=".$key."' class='navigation_element_active'>";
-          $str .= "<div class='navigation_title_active'>".$s_title."</div>";
-          $str .= "<div class='navigation_info'>".$s_info."</div>";
-          $str .= "</a><br>\n";
+      if($b_completed){
+        $s = "<img src='images/true.png' alt='"._("Completed")."' class='center'>&nbsp;"; 
+      }else{
+        $s = "<img src='images/empty.png' alt=' ' class='center'>&nbsp;";
+      }
+
+      if($_SESSION['js']){
+
+        $str .="<div >";
+    
+        if($b_enabled){
+          if($b_active){
+            $str .= "<div class='navigation_element_active'>";
+            $str .= "<div class='navigation_title_active'>".$s.$s_title."</div>";
+            $str .= "<div class='navigation_info'>".$s_info."</div>";
+            $str .= "</div>";
+          }else{
+            $str .= "<div class='navigation_element'>";
+            $str .= "<div onClick='document.mainform.setup_goto_step.value=\"$key\";document.mainform.submit();'
+              class='navigation_title_inactive'>".$s.$s_title."</div>";
+            $str .= "</div>";
+          }
+        }else{
+          $str .= "<div class='navigation_element'>";
+          $str .= "<div class='navigation_title_disabled'>".$s.$s_title."</div>";
+          $str .= "</div>";
+        }
+        $str .= "</div>" ;
+      }else{
+        $str .="<div >";
+        if($b_enabled){
+          if($b_active){
+            $str .= "<div class='navigation_element_active'>";
+            $str .= "<input style='text-align: left; color: #00008F; font-weight: bold; width:100%;' 
+                        type='button' value='".$s_title."' name='step_".$key."'>";
+            $str .= "</div>";
+          }else{
+            $str .= "<div class='navigation_element'>";
+            $str .= "<input style='text-align: left; color: #00008F; font-weight: bold; width:100%;' 
+                        type='submit' value='".$s_title."' name='step_".$key."'>";
+            $str .= "</div>";
+          }
         }else{
-          $str .= "<a href='?step=".$key."' class='navigation_element'>";
-          $str .= "<div class='navigation_title_inactive'>".$s_title."</div>";
-          $str .= "</a><br>\n";
+          $str .= "<div class='navigation_element'>";
+          $str .= "<div class='navigation_title_disabled'>".$s_title."</div>";
+          $str .= "</div>";
         }
+        $str .= "</div>" ;
+      }
+    }
+    return($str);
+  }
+
+  
+
+  function get_bottom_html()
+  {
+    /* Skip adding forward/backward button,   
+     *  if the currently opened step is a sub dialog 
+     */
+    if($this->o_steps[$this->i_current]->dialog){
+      $str ="";
+    }else{
+      $str ="<p class='seperator' style='margin-bottom:10px;'>&nbsp;</p>";
+      $str.="   <div style='text-align:right;float:top;'>";
+      if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){
+        $str .= "<input type='submit' name='last' value='"._("Back")."'>";
       }else{
-        $str .= "<div class='navigation_element'>";
-        $str .= "<div class='navigation_title_disabled'>".$s_title."</div>";
-        $str .= "</div>";
+        $str .= "<input type='button' name='last' value='"._("Back")."' disabled>";
       }
-      $str .= "</div>" ;
+      $str.= "&nbsp;";
+        $str .= "<input type='submit' name='next' value='"._("Continue")."'>";
+      $str .="</div>";
     }
     return($str);
   }
@@ -142,26 +262,7 @@ class setup extends plugin
   /* Create header entry */
   function get_header_html()
   {
-    $str ="";
-    $str.=" <div >";
-    $str.="   <div>";
-    $str.="     <font style='font-size:20px;float:top'>";
-    $str.=   $this->o_steps[$this->i_current]->get_long_title();
-    $str.="     </font>";
-    $str.="   </div>";
-    $str.="   <div style='text-align:right;float:top;'>";
-    if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){
-      $str.="   <input class='center' type='image' name='last' src='images/setup_step_back.png'  title='"._("Last step")."'>";
-    }else{
-      $str.="   <img class='center' src='images/setup_step_back_gray.png' title='"._("Last step")."'>";
-    }
-#   if(isset($this->o_steps[$this->i_current +1]) && $this->o_steps[$this->i_current +1]->is_enabled()){
-      $str.="   <input class='center' type='image' name='next' src='images/setup_step_forward.png'  title='"._("Next step")."'>";
-#   }else{
-#     $str.="   <img class='center' src='images/setup_step_forward_gray.png'  title='"._("Next step")."'>";
-#   }
-    $str.= "  </div>";
-    $str.= "</div>";
+    $str=   $this->o_steps[$this->i_current]->print_header();
     return ($str);
   }