Code

Updated divlists to include the ldap base
[gosa.git] / plugins / admin / fai / class_divListFai.inc
1 <?php
3 class divListFai extends MultiSelectWindow
4 {
5   /* Current base */
6   var $selectedBase       = "";
7   var $selectedBranch     = "main";
8   var $AvailableBranches  = array();
9   var $departments        = array();
11   /* Regex */
12   var $Regex              = "*";
13   var $ShowProfiles;
14   var $ShowTemplates;
15   var $ShowScripts;
16   var $ShowHooks;
17   var $ShowVariables;
18   var $ShowPackages;
19   var $ShowPartitions;
21   /* Subsearch checkbox */
22   var $SubSearch;
24   var $parent             ;
25   var $ui                 ;
27   var $SaveAdditionalVars = array("selectedBranch");
29   function divListFai ($config,$parent)
30   {
31     MultiSelectWindow::MultiSelectWindow($config, "Fai", "fai");
32     
33     $this->parent       = $parent;
34     $this->ui           = get_userinfo();
36     /* Set default base */
37     if(!isset($_SESSION['CurrentMainBase'])){
38       $_SESSION['CurrentMainBase'] = $this->config->current['BASE'];
39     }
40     $this->selectedBase = $_SESSION['CurrentMainBase'];
42     /* Set list strings */
43     $this->SetTitle(_("List of FAI classes"));
44     $this->SetSummary(_("This table displays all FAI classes in the selected tree."));
46     /* Result page will look like a headpage */
47     $this->SetHeadpageMode();
48     $this->SetInformation(_("This menu allows you to create, delete and edit FAI classes."));
50     $this->EnableAplhabet   (true);
51   
52     /* Disable buttonsm */
53     $this->EnableCloseButton(false);
54     $this->EnableSaveButton (false);
56    /* Dynamic action col, depending on snapshot icons */
57     $action_col_size = 50;
58     if($this->parent->snapshotEnabled()){
59       $action_col_size += 20;
60     }
62     /* Toggle all selected / deselected */
63     $chk = "<input type='checkbox' id='select_all' name='select_all'
64                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
66     /* set Page header */
67     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
68     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
69     $this->AddHeader(array("string" => _("Name of FAI class"),  "attach" => "style=''"));
70     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
71     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
73     $this->AddCheckBox("ShowProfiles"   , _("Display FAI profile objects")    ,_("Show profiles")     ,true);
74     $this->AddCheckBox("ShowTemplates"  , _("Display FAI template objects")   ,_("Show templates")    ,true);
75     $this->AddCheckBox("ShowScripts"    , _("Display FAI scripts")            ,_("Show scripts")      ,true);
76     $this->AddCheckBox("ShowHooks"      , _("Display FAI hooks")              ,_("Show hooks")        ,true);
77     $this->AddCheckBox("ShowVariables"  , _("Display FAI variables")          ,_("Show variables")    ,true);
78     $this->AddCheckBox("ShowPackages"   , _("Display FAI packages")           ,_("Show packages")     ,true);
79     $this->AddCheckBox("ShowPartitions" , _("Display FAI partitions")         ,_("Show partitions")   ,true);
81     /* Add SubSearch checkbox */
82     //$this->AddCheckBox(SEPERATOR);
83     //$this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
85     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
86     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
87   }
89   function AddUserBoxToFilter($position){
90     $str = "";
91     if($position  == 2){
92       $smarty = get_smarty();
93       $smarty->assign("selectedBranch",$this->selectedBranch);
94       $smarty->assign("branchimage","images/branch.png");
95       $smarty->assign("branches",$this->AvailableBranches);
96       $str = $smarty->fetch(get_template_path('branch_selector.tpl', TRUE));
97     }
98     return($str);
99   }
101   function GenHeader()
102   {
103     /* Prepare departments,
104        which are shown in the listbox on top of the listbox
105      */
106     $options= "";
108     /* Get all departments within this subtree */
109     $ui= get_userinfo();
110     $first = "";
111     $found = FALSE;
112     $base = $this->config->current['BASE'];
113     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
114                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
116     /* Add base */
117     $deps[] = array("dn"=>$this->config->current['BASE']);
119     /* Load possible departments */
120     $ui= get_userinfo();
121     $tdeps= $ui->get_module_departments("fai");
122     $ids = $this->config->idepartments;
123     foreach($deps as $dep){
124       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $tdeps)){
126         /* Keep first base dn in mind, we could need this
127          *  info if no valid base was found
128          */
129         if(empty($first)) {
130           $first = $dep['dn'];
131         }
132   
133         $value = $ids[$dep['dn']];
134         if ($this->selectedBase == $dep['dn']){
135           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
136         } else {
137           $options.= "<option value='".$dep['dn']."'>$value</option>";
138         }
139       }
140     }
142     /* The currently used base is not visible with your acl setup.
143      * Set base to first useable base.
144      */
145     if(!$found){
146       $this->selectedBase = $first;
147     }
149     /* Add seperator */
150     $add_sep = false;
152     /* Get complete fai acls, to be able to check if we must show or hide the snapshot abilities */ 
153     $acl_all = $ui->has_complete_category_acls($this->selectedBase,$this->module);
155     /* Add default header */
156     $listhead = MultiSelectWindow::get_default_header();
158     $acl = $ui->get_permissions($this->selectedBase,"fai/faiProfile");
159     if(preg_match("/c/",$acl)){
160       $listhead .=" <input class='center' type='image' src='images/fai_new_profile.png' align='middle'
161         title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;";
162       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
163     }
165     /* Add snapshot icons, if we are allowed to write and create the complete fai module ($ui->has_complete_category_acls) */ 
166     if(preg_match("/(c.*w|w.*c)/",$acl_all)){ 
167       $listhead .= $this->get_snapshot_header($this->selectedBase);
168     }
170     /* Add copy & paste icons, currently disabled, this ability is not implemeneted yet */
171     if(preg_match("/(c.*w|w.*c)/",$acl_all) &&  isset($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler){
172       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
173     }
175     /* Append create icons for each fai component */
176     $arr = array(
177         array("images/fai_new_partitionTable.png" , _("New partition table")  ,"Create_partition" , _("PT") , "faiPartitionTable"),
178         array("images/fai_new_script.png"         , _("New scripts")          ,"Create_script"    , _("S")  , "faiScript"),
179         array("images/fai_new_hook.png"           , _("New hooks")            ,"Create_hook"      , _("H")  , "faiHook"),
180         array("images/fai_new_variable.png"       , _("New variables")        ,"Create_variable"  , _("V")  , "faiVariable"),
181         array("images/fai_new_template.png"       , _("New templates ")       ,"Create_template"  , _("I")  , "faiTemplate"),
182         array("images/fai_new_packages.png"       , _("New package list")     ,"Create_package"   , _("PK") , "faiPackage"));
184     foreach($arr as $ar){
185       $acl = $ui->get_permissions($this->selectedBase,"fai/".$ar[4]);
186       if(preg_match("/c/",$acl)){
187         $add_sep = true;
188         $listhead .=" <input class='center' type='image' src='".$ar[0]."' align='middle' title='".$ar[1]."' name='".$ar[2]."' alt='".$ar[3]."'>&nbsp;";
189       }
190     }
192     /* Add additional seperator */
193     if($add_sep){
194       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
195     }
196   
197     $listhead .=  _("Base")."&nbsp;<select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
198                   " <input class='center' type='image' src='images/list_submit.png' align='middle' 
199                   title='"._("Submit department")."' name='submit_department' alt='".  _("Submit")."'>&nbsp;";
201     /* Multiple options */
202     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
203         title='"._("Remove selected fai objects")."' alt='"._("Remove fai objects")."' name='remove_multiple_fai_objects'>&nbsp;";
205     $listhead .="</div>";;
208     $this->SetListHeader($listhead);
209   }
211   /* so some basic settings */
212   function execute()
213   {
214     $this->ClearElementsList();
215     $this->GenHeader();
216     $this->AvailableBranches = $this->parent->getBranches();
217   }
219   function setEntries($list)
220   {
221     /********************
222       Variable init
223      ********************/
225      $objects = array(
226            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>"Partition table","KZL"=> "PT", "VAR"=>"ShowPartitions"),
227            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>"Package list" ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
228            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>"Scripts" ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
229            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>"Variables" ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
230            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>"Hooks",          "KZL"=> "H",  "VAR"=>"ShowHooks"),
231            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>"Profile" ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
232            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>"Templates" ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
234     $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
236     /* Dynamic action col, depending on snapshot icons */
237     $action_col_size = 50;
238     if($this->parent->snapshotEnabled()){
239       $action_col_size += 20;
240     }
242     /********************
243       Attach objects
244      ********************/
246      foreach($list as $key => $value){
247        $info     = "";
248        $img      = "";
249        $type     = $value['type'];
250        $abort    =false;
252        if(isset($objects[$type])){
253          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
254          $info  = $objects[$type]['NAME'];
255          $var   = $objects[$type]['VAR'];
256        }else{
257          $img   = "<img class='center' src='images/empty.png' alt=''>";
258          $info  = "";
259          $var   = "";
260        }
262        if((isset($value['description']))&&(!empty($value['description']))){
263          $desc= " [".$value['description']."]";
264        }else{
265          $desc= "";
266        }
269        if($value['FAIstate'] == "freeze"){
270          $action=  "<img src='images/closedlock.png' alt='F' class='center'><img src='images/empty.png' width='38' height='2' class='center' alt=''>";
271          $action.= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
272            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
273        }else{
274          $action= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
275            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
277          if(preg_match("/(c&w)/",$value['acl'])){
278            $action.= $this->GetSnapShotActions($value['dn']);;
279          }
281          if(preg_match("/d/",$value['acl'])){
282            $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
283              name='entry_delete_%KEY%' title='"._("Delete class")."'>";
284          }
285        }
287        $edi = $editlink;
288        $acti = $action;
290        /* Create each field */
291        $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
292            "attach" => "style='width:20px;'");
293        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
294        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$value['cn'].$desc,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
295        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
296        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
297        $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
298      }
299   }
301   function Save()
302   {
303     MultiSelectWindow::Save();  
304   }
306   function save_object()
307   {
308     /* Save automatic created POSTs like regex, checkboxes */
309     MultiSelectWindow::save_object(); 
310     $_SESSION['faifilter']['branch'] = $this->selectedBranch; 
311   }
313 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
314 ?>