Code

Disallow creating objects in a freezed release
[gosa.git] / gosa-plugins / fai / admin / fai / class_divListFai.inc
1 <?php
3 class divListFai extends MultiSelectWindow
4 {
5   /* Regex */
6   var $Regex              = "*";
7   var $ShowProfiles;
8   var $ShowTemplates;
9   var $ShowScripts;
10   var $ShowHooks;
11   var $ShowVariables;
12   var $ShowPackages;
13   var $ShowPartitions;
15   /* Subsearch checkbox */
16   var $SubSearch;
18   var $parent             ;
19   var $ui                 ;
21   function divListFai (&$config,$parent)
22   {
23     MultiSelectWindow::MultiSelectWindow($config, "Fai", "fai");
24     
25     $this->parent       = $parent;
26     $this->ui           = get_userinfo();
28     /* Set list strings */
29     $this->SetTitle(  _("List of classes"));
30     $this->SetSummary(_("List of deployment classes and packages"));
32     /* Result page will look like a headpage */
33     $this->SetHeadpageMode();
35     $this->EnableAplhabet   (true);
36   
37     /* Disable buttonsm */
38     $this->EnableCloseButton(false);
39     $this->EnableSaveButton (false);
41     /* Dynamic action col, depending on snapshot icons */
42     $action_col_size = 120;
44     /* Toggle all selected / deselected */
45     $chk = "<input type='checkbox' id='select_all' name='select_all'
46                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
48     /* set Page header */
49     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
50     $this->AddHeader(array("string" => "&nbsp;",                "attach" => "style='text-align:center;width:20px;'"));
51     $this->AddHeader(array("string" => _("Class name"),  "attach" => "style=''"));
52     $this->AddHeader(array("string" => _("Class type"),         "attach" => "style='width:200px;'"));
53     $this->AddHeader(array("string" => _("Actions"),            "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'"));
55     $this->AddCheckBox("ShowProfiles"   , sprintf(_("Display objects of type '%s'."),_("Profile"))  ,_("Show profiles")     ,true);
56     $this->AddCheckBox("ShowTemplates"  , sprintf(_("Display objects of type '%s'."),_("Variable")) ,_("Show templates")    ,true);
57     $this->AddCheckBox("ShowScripts"    , sprintf(_("Display objects of type '%s'."),_("Script"))   ,_("Show scripts")      ,true);
58     $this->AddCheckBox("ShowHooks"      , sprintf(_("Display objects of type '%s'."),_("Hook"))     ,_("Show hooks")        ,true);
59     $this->AddCheckBox("ShowVariables"  , sprintf(_("Display objects of type '%s'."),_("Variable")) ,_("Show variables")    ,true);
60     $this->AddCheckBox("ShowPackages"   , sprintf(_("Display objects of type '%s'."),_("Package"))  ,_("Show packages")     ,true);
61     $this->AddCheckBox("ShowPartitions" , sprintf(_("Display objects of type '%s'."),_("Partition")),_("Show partitions")   ,true);
63     /* Add SubSearch checkbox */
64     //$this->AddCheckBox(SEPERATOR);
65     //$this->AddCheckBox("SubSearch",  msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
67     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
68     $this->AddRegex   ("Regex",     _("Display users matching"),"*" , true);
69   }
71   function AddUserBoxToFilter($position)
72   {
73     $str = "";
74     if($position  == 2){
76       /* Check if there are post commands available for fai management.
77        * If not, grey out freeze/branch and release remove buttons.
78        */
79       $r = $this->config->search("faiManagement", "POSTREMOVE",array('menu','tabs'));
80       $c = $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'));
82       $smarty = get_smarty();
83       $releases = $this->parent->getBranches();
84       $smarty->assign("allow_create", $c);
85       $smarty->assign("allow_remove", $r);
86       $smarty->assign("fai_release" , $releases[$this->parent->fai_release]);
87       $smarty->assign("fai_base"    , $releases[$this->parent->fai_base]);
88       $smarty->assign("branchimage","images/branch.png");
89       $smarty->assign("fai_releases", $releases);
90       $plug_id = 0;       
91       if(isset($_GET['plug'])){
92         $plug_id = $_GET['plug'];
93       }
94       $smarty->assign("plug_id",$plug_id);
95       $str = $smarty->fetch(get_template_path('branch_selector.tpl', TRUE));
96     }
97     return($str);
98   }
100   function GenHeader()
101   {
102     /* Get all departments within this subtree */
103     $ui= get_userinfo();
104     $first = "";
105     $found = FALSE;
106     $base = $this->config->current['BASE'];
108     /* Add seperator */
109     $add_sep = false;
111     /* Get complete fai acls, to be able to check if we must show or hide the snapshot abilities */ 
112     $acl_all = $ui->has_complete_category_acls($this->parent->fai_base,$this->module);
114     /* Add default header */
115     $listhead = MultiSelectWindow::get_default_header();
117     /* Add additional seperator */
118     if($add_sep){
119       $listhead .=" <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
120     }
122     $s  = ".|"._("Actions")."|\n";
123     $s .= "..|<img src='images/list_new.png' alt='' border='0' class='center'>".
124       "&nbsp;"._("Create")."|\n";
126     $acl = $ui->get_permissions($this->parent->fai_base,"fai/faiProfile");
127     if($this->parent->lock_type == "freeze" && !$this->parent->allow_freeze_object_attach){
128       $s.= "...|<input class='center' type='image' src='images/freeze.png' alt=''>".
129         "&nbsp;"._("Freezed")."|\n";
130     }else{
131       if(preg_match("/c/",$acl)){
132         $s.= "...|<input class='center' type='image' src='images/fai_new_profile.png' alt=''>".
133           "&nbsp;"._("Profile")."|Create_profile|\n";
134       }
136       /* Append create icons for each fai component */
137       $arr = array(
138           array("images/fai_new_partitionTable.png" , _("Partition table")  ,"Create_partition" , _("PT") , "faiPartitionTable"),
139           array("images/fai_new_script.png"         , _("Scripts")          ,"Create_script"    , _("S")  , "faiScript"),
140           array("images/fai_new_hook.png"           , _("Hooks")            ,"Create_hook"      , _("H")  , "faiHook"),
141           array("images/fai_new_variable.png"       , _("Variables")        ,"Create_variable"  , _("V")  , "faiVariable"),
142         array("images/fai_new_template.png"       , _("Templates ")       ,"Create_template"  , _("I")  , "faiTemplate"),
143         array("images/fai_new_packages.png"       , _("Package list")     ,"Create_package"   , _("PK") , "faiPackage"));
145       foreach($arr as $ar){
146         $acl = $ui->get_permissions($this->parent->fai_base,"fai/".$ar[4]);
147         if(preg_match("/c/",$acl)){
148           $s.= "...|<input class='center' type='image' src='".$ar[0]."' alt=''>".
149             "&nbsp;".$ar[1]."|".$ar[2]."|\n";
150         }
151       }
152     }
154     /* Multiple options */
155     $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
156       "&nbsp;"._("Remove")."|"."remove_multiple|\n";
158     /* Add multiple copy & cut icons */
159     if(is_object($this->parent->CopyPasteHandler)){
160       $s.= "..|---|\n";
161       $s.= "..|<img src='images/lists/copy.png' alt='' border='0' class='center'>".
162         "&nbsp;"._("Copy")."|"."multiple_copy_systems|\n";
163       $s.= "..|<img src='images/lists/cut.png' alt='' border='0' class='center'>".
164         "&nbsp;"._("Cut")."|"."multiple_cut_systems|\n";
165     }
167     /* Add copy & paste icons, currently disabled, this ability is not implemeneted yet */
168     if(!($this->parent->lock_type == "freeze" && !$this->parent->allow_freeze_object_attach) && 
169       preg_match("/(c.*w|w.*c)/",$acl_all) &&  isset($this->parent->CopyPasteHandler) && $this->parent->CopyPasteHandler){
170       $s .= "..|---|\n";
171       if($this->parent->CopyPasteHandler->entries_queued()){
172         $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
173         $s.="..|".$img."&nbsp;"._("Paste")."|editPaste|\n";
174       }else{
175         $img = "<img border='0' class='center' src='images/lists/paste.png' alt=''>";
176         $s.="..|".$img."&nbsp;"._("Paste")."\n";
177       }
178     }
180 #   /* Add snapshot icons, if we are allowed to write and create the complete fai module ($ui->has_complete_category_acls) */ 
181 #   if(preg_match("/(c.*w|w.*c)/",$acl_all)){ 
182 #     if($this->parent->snapshotEnabled()){
183 #       $s .= "..|---|\n";
184 #       $s .= $this->get_snapshot_header(TRUE);
185 #     }
186 #   }
188     $this->SetDropDownHeaderMenu($s);
189     $this->SetListHeader($listhead);
190   }
192   /* so some basic settings */
193   function execute()
194   {
195     $this->ClearElementsList();
196     $this->GenHeader();
197     $this->AvailableBranches = $this->parent->getBranches();
198   }
200   function setEntries($list)
201   {
202     /********************
203       Variable init
204      ********************/
206      $objects = array(
207            "FAIpartitionTable"  => array("IMG"=> "images/fai_partitionTable.png", "NAME"=>_("Partition table"),"KZL"=> "PT", "VAR"=>"ShowPartitions"),
208            "FAIpackageList"     => array("IMG"=> "images/fai_packages.png",       "NAME"=>_("Package list") ,  "KZL"=> "PL", "VAR"=>"ShowPackages"),
209            "FAIscript"          => array("IMG"=> "images/fai_script.png",         "NAME"=>_("Scripts") ,       "KZL"=> "S",  "VAR"=>"ShowScripts"),
210            "FAIvariable"        => array("IMG"=> "images/fai_variable.png",       "NAME"=>_("Variables") ,     "KZL"=> "V",  "VAR"=>"ShowVariables"),
211            "FAIhook"            => array("IMG"=> "images/fai_hook.png",           "NAME"=>_("Hooks"),          "KZL"=> "H",  "VAR"=>"ShowHooks"),
212            "FAIprofile"         => array("IMG"=> "images/fai_profile.png",        "NAME"=>_("Profile") ,       "KZL"=> "P",  "VAR"=>"ShowProfiles"),
213            "FAItemplate"        => array("IMG"=> "images/fai_template.png",       "NAME"=>_("Templates") ,     "KZL"=> "T",  "VAR"=>"ShowTemplates"));
216     /* Dynamic action col, depending on snapshot icons */
217     $action_col_size = 120;
218 #   if($this->parent->snapshotEnabled()){
219 #     $action_col_size += 32;
220 #   }
222     /********************
223       Attach objects
224      ********************/
226     $cnts = array();
227     foreach($objects as $key => $data){
228       $cnts[$key] = 0;
229     }
231      foreach($list as $key => $value){
232        $info     = "";
233        $img      = "";
234        $type     = $value['type'];
235        $abort    =false;
237        $cnts[$type] ++;
239        if(isset($objects[$type])){
240          $img   = "<img class='center' src='".$objects[$type]['IMG']."' title='".$objects[$type]['NAME']."' alt='".$objects[$type]['KZL']."'>";
241          $info  = $objects[$type]['NAME'];
242          $var   = $objects[$type]['VAR'];
243        }else{
244          $img   = "<img class='center' src='images/empty.png' alt=''>";
245          $info  = "";
246          $var   = "";
247        }
249        if((isset($value['description']))&&(!empty($value['description']))){
250          $desc= " [".$value['description']."]";
251        }else{
252          $desc= "";
253        }
255        /* Add copy & cut icons */
256        $ui = get_userinfo();
257        $action ="";
258        $acl_all = $ui->has_complete_category_acls($this->parent->fai_base,$this->module);
259        if(preg_match("/(c.*w|w.*c)/",$acl_all) && $this->parent->CopyPasteHandler){
260          $action .= "<input class='center' type='image'
261            src='images/lists/cut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
262          $action.= "<input class='center' type='image'
263            src='images/lists/copy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
264        }
266        if(preg_match("/^freeze/", $value['FAIstate'])){
267          $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_freeze_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
268          $action.=  "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
269            name='entry_freeze_edit_%KEY%' title='"._("Edit class")."'>";
270          $action.=  "<img src='images/lists/locked.png' alt='F' class='center'>";
271        }else{
272          $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%' title='%TITLE%'>%NAME%</a>";
273          $action.= "<input class='center' type='image' src='images/edit.png'  alt='"._("edit")."'
274            name='entry_edit_%KEY%' title='"._("Edit class")."'>";
275          if(preg_match("/d/",$value['acl'])){
276            $action.= "<input class='center' type='image' src='images/lists/trash.png' alt='"._("delete")."'
277              name='entry_delete_%KEY%' title='"._("Delete class")."'>";
278          }
279        }
281        /* Cutted objects should be displayed in light grey */
282        $display = $value['cn'].$desc;
283        if($this->parent->CopyPasteHandler){
284          foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
285            if($queue_data['dn'] == $value['dn']) {
286              $display = "<font color='#999999'>".$display."</font>";
287              break;
288            }
289          }
290        }
291        $edi = $editlink;
292        $acti = $action;
294        /* Create each field */
295        $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
296            "attach" => "style='width:20px;'");
297        $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
298        $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/","/%TITLE%/"),array($key,$display,preg_replace('/ /', '&nbsp;', @LDAP::fix($value['dn']))),$edi) , "attach" => "style=''");
299        $field3 = array("string" => $info, "attach" => "style='width:200px;'");
300        $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
301        $this->AddElement(array($field0,$field1,$field2,$field3,$field4));
302      }
304      /* Create summary string for list footer */
305      $num_deps=0;
306      if(!$this->SubSearch){
307        $num_deps = count($this->Added_Departments);
308      }
310      $profile_str    = sprintf(_("Number of listed '%s'"),_("profiles"));
311      $partition_str  = sprintf(_("Number of listed '%s'"),_("partitions"));
312      $script_str     = sprintf(_("Number of listed '%s'"),_("scripts"));
313      $hook_str       = sprintf(_("Number of listed '%s'"),_("hooks"));
314      $variable_str   = sprintf(_("Number of listed '%s'"),_("variables"));
315      $template_str   = sprintf(_("Number of listed '%s'"),_("templates"));
316      $package_str    = sprintf(_("Number of listed '%s'"),_("packages"));   
317      $dep_str        = sprintf(_("Number of listed '%s'"),_("departments"));
319      $str = "<img class='center' src='".$objects['FAIprofile']['IMG']."'
320        title='".$profile_str."' alt='".$profile_str."'>&nbsp;".$cnts['FAIprofile']."&nbsp;&nbsp;&nbsp;&nbsp;";
321      $str.= "<img class='center' src='".$objects['FAIpartitionTable']['IMG']."'
322        title='".$partition_str."' alt='".$partition_str."'>&nbsp;".$cnts['FAIpartitionTable']."&nbsp;&nbsp;&nbsp;&nbsp;";
323      $str.= "<img class='center' src='".$objects['FAIscript']['IMG']."'
324        title='".$script_str."' alt='".$script_str."'>&nbsp;".$cnts['FAIscript']."&nbsp;&nbsp;&nbsp;&nbsp;";
325      $str.= "<img class='center' src='".$objects['FAIhook']['IMG']."'
326        title='".$hook_str."' alt='".$hook_str."'>&nbsp;".$cnts['FAIhook']."&nbsp;&nbsp;&nbsp;&nbsp;";
327      $str.= "<img class='center' src='".$objects['FAIvariable']['IMG']."'
328        title='".$variable_str."' alt='".$variable_str."'>&nbsp;".$cnts['FAIvariable']."&nbsp;&nbsp;&nbsp;&nbsp;";
329      $str.= "<img class='center' src='".$objects['FAItemplate']['IMG']."'
330        title='".$template_str."' alt='".$template_str."'>&nbsp;".$cnts['FAItemplate']."&nbsp;&nbsp;&nbsp;&nbsp;";
331      $str.= "<img class='center' src='".$objects['FAIpackageList']['IMG']."'
332        title='".$package_str."' alt='".$package_str."'>&nbsp;".$cnts['FAIpackageList']."&nbsp;&nbsp;&nbsp;&nbsp;";
333      $str.= "<img class='center' src='images/lists/folder.png'
334        title='".$dep_str."' alt='".$dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
335      $this->set_List_Bottom_Info($str);
336   }
338   function Save()
339   {
340     MultiSelectWindow::Save();  
341   }
343   function save_object()
344   {
345     /* Save automatic created POSTs like regex, checkboxes */
346     MultiSelectWindow::save_object(); 
347   }
349 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
350 ?>