Code

Added lsiting of license usages
[gosa.git] / gosa-plugins / opsi / admin / opsiLicenses / class_licenseUsage.inc
1 <?php
2 /*
3 * This code is part of GOsa (http://www.gosa-project.org)
4 * Copyright (C) 2003-2008 GONICUS GmbH
5 *
6 * ID: $$Id: class_opsiLicenses.inc 13520 2009-03-09 14:54:13Z hickert $$
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 */
24 class licenseUsage extends plugin 
25 {
27   var $cn = "";
28   var $licenseUses = array();
29   var $init_successfull = FALSE;
32   function __construct(&$config,$dn)
33   {
34     $this->config = $config;
35     $this->dn = $this->orig_dn = $dn;
36     $this->si = new opsiLicenceHandler($this->config);
38     $this->is_account=TRUE;
39     if($this->dn == "new"){
40       $this->initially_was_account = FALSE;
41     }else{
42       $this->initially_was_account = TRUE;
43       $this->cn = $this->orig_cn = preg_replace("/^opsi:cn=([^,]*),.*$/","\\1",$dn);
44     }
46     // Extract pool name out of the fake dn.
47     $this->init();
48   }
50   
51   function init()
52   {
53     $this->licenseUses = array();
54     if(!$this->initially_was_account){
55       $this->init_successfull = TRUE;
56     }else{
58       $res = $this->si->getLicenseUsage("", $this->cn);
59       if($this->si->is_error()){
60         $this->init_successfull = FALSE;
61         msg_dialog::display(_("Error"),msgPool::siError($this->si->get_error()),ERROR_DIALOG);
62         return;
63       }
65       $this->licenseUses = $res;
66       $this->init_successfull = TRUE;
67     }
68   }
71   function execute()
72   {
73     // Handle initialization failures.
74     if(isset($_POST['retry_init'])) $this->init();
75     if(!$this->init_successfull){
76       $smarty = get_smarty();
77       $smarty->assign("init_successfull", $this->init_successfull);
78       return($smarty->fetch(get_template_path('licenseGeneric.tpl',TRUE,dirname(__FILE__))));
79     }
80     
81     // Create usage list
82     $list = new divSelectBox("licenseUsage");
83     foreach($this->licenseUses as $license){
85       $f1 = array("string" => $license['hostId'][0]);
86       $f2 = array("string" => $license['licenseKey'][0]);
87       $f3 = array("string" => $license['licensePoolId'][0]);
88       $f4 = array("string" => $license['softwareLicenseId'][0],
89                   "attach" => "style='border-right:0px;'");
90       $list->addEntry(array($f1,$f2,$f3,$f4));
91     } 
93     $smarty = get_smarty();
95     // Assign ACls 
96     $plInfo = $this->plInfo();
97     foreach($plInfo['plProvidedAcls'] as $name => $desc){
98       $smarty->assign("{$name}ACL",$this->getacl($name));
99     }
100     foreach($this->attributes as $attr){
101       $smarty->assign($attr,$this->$attr);
102     }
104     $smarty->assign("licenseUses", $list->DrawList());
105     $smarty->assign("init_successfull", $this->init_successfull);
106     $smarty->assign("initially_was_account", $this->initially_was_account);
107     return($smarty->fetch(get_template_path('licenseUsage.tpl',TRUE,dirname(__FILE__))));
108   }
110  
111   /* Save HTML inputs
112    */
113   function save_object()
114   {
115     if(isset($_POST['opsiLicenseUsagePosted'])){
116       plugin::save_object();  
117     }
118   }  
121   /* Check user input and return a list of 'invalid input' messages.
122    */
123   function check()
124   {
125     $message = plugin::check();
126     return($message);
127   }
128   
130   /* Saves object modifications
131    */  
132   function save() { }
133   function remove_from_parent(){ return; }
135  
136   static function plInfo()
137   {
138     return (array(
139           "plShortName"   => _("Usage"),
140           "plDescription" => _("License usage"),
141           "plSelfModify"  => FALSE,
142           "plDepends"     => array(),
143           "plPriority"    => 1,
144           "plSection"     => array("administration"),
145           "plCategory"    => array("opsi"),
146           "plProvidedAcls"=> array(
147             "cn"                => _("Name"),
148             "description" => _("Description"))
149           ));
150   }
154 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
155 ?>