Code

36caf5c92820010fe00f4f6a2c6307bf3a63f5e5
[gosa.git] / plugins / admin / systems / class_goGlpiServer.inc
1 <?php
3 class goGlpiServer extends plugin{
4         
5   var $cli_summary      = "This pluign is used within the ServerService Pluign \nand indicates that this server supports asterisk management.";
6   var $cli_description  = "Some longer text\nfor help";
7   var $cli_parameters   = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
9   /* This plugin only writes its objectClass */
10   var $objectclasses    = array("goGlpiServer");
11   var $attributes       = array("goGlpiServerStatus","goGlpiAdmin","goGlpiDatabase","goGlpiPassword");
12   var $StatusFlag       = "goGlpiServerStatus";
13  
14   /* This class can't be assigned twice so it conflicts with itsself */
15   var $conflicts        = array("goGlpiServer");
17   var $DisplayName      = "";
18   var $dn               = NULL;
19   var $acl;
21   var $goGlpiServerStatus ="";
22   var $goGlpiAdmin        ="";
23   var $goGlpiDatabase     ="";
24   var $goGlpiPassword     ="";
25  
26  
27   function goGlpiServer($config,$dn)
28   {
29     plugin::plugin($config,$dn);
30     $this->DisplayName = _("Inventory database");
31   }
34   function execute()
35   { 
36     $smarty = get_smarty(); 
37     foreach($this->attributes as $attr){
38       $smarty->assign($attr,$this->$attr);
39       $smarty->assign($attr."ACL",chkacl($this->acl,$attr));
40     }
41     return($smarty->fetch(get_template_path("goGlpiServer.tpl",TRUE,dirname(__FILE__))));
42   }
45   function getListEntry()
46   {
47     $flag = $this->StatusFlag;
48     $fields['Status']     = $this->$flag;
49     $fields['Message']    = _("Glpi management");
50     $fields['AllowStart'] = true;
51     $fields['AllowStop']  = true;
52     $fields['AllowRestart'] = true;
53     $fields['AllowRemove']= true;
54     $fields['AllowEdit']  = true;
55     return($fields);
56   }
59   function remove_from_parent()
60   {
61     plugin::remove_from_parent();
62     /* Check if this is a new entry ... add/modify */
63     $ldap = $this->config->get_ldap_link();
64     $ldap->cat($this->dn,array("objectClass"));
65     if($ldap->count()){
66       $ldap->cd($this->dn);
67       $ldap->modify($this->attrs);
68     }else{
69       $ldap->cd($this->dn);
70       $ldap->add($this->attrs);
71     }
72     show_ldap_error($ldap->get_error());
73   }
76   function save()
77   {
78     plugin::save();
79     /* Check if this is a new entry ... add/modify */
80     $ldap = $this->config->get_ldap_link();
81     $ldap->cat($this->dn,array("objectClass"));
82     if($ldap->count()){
83       $ldap->cd($this->dn);
84       $ldap->modify($this->attrs);
85     }else{
86       $ldap->cd($this->dn);
87       $ldap->add($this->attrs);
88     }
89     show_ldap_error($ldap->get_error());
90   }
93   /* Directly save new status flag */
94   function setStatus($value)
95   {
96     if($value == "none") return;
97     $ldap = $this->config->get_ldap_link();
98     $ldap->cd($this->dn);
99     $ldap->cat($this->dn,array("objectClass","goGlpiAdmin","goGlpiDatabase"));
100       
101     if($ldap->count()){
102       $attrs =array();
103       foreach(array("goGlpiAdmin","goGlpiDatabase") as $req) {
104         if(!isset($attrs[$req])){
105           if(empty($this->$req)){
106             print_red(sprintf(_("The required attribute '%s' is not set."),$req));
107           }else{
108             $attrs[$req] = $this->$req;
109           }
110         }else{
111           $attrs[$req] = $attrs[$req][0];
112         }
113       }
115       $tmp = $ldap->fetch();
116       for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
117         $attrs['objectClass'][] = $tmp['objectClass'][$i];
118       }    
119       if(!in_array("goGlpiServer",$attrs['objectClass'])){
120         $attrs['objectClass'][] = "goGlpiServer";
121       }
123       $flag = $this->StatusFlag;
124       $attrs[$flag] = $value;
125       $this->$flag = $value;
126       $ldap->modify($attrs);
127       show_ldap_error($ldap->get_error());
128     }    
129   }
131   
132   function check()
133   { 
134     $message = plugin::check();
135     foreach(array("goGlpiAdmin","goGlpiDatabase") as $attr){
136       if(empty($this->$attr)){
137         $message[]= sprintf(_("The attribute '%s' is empty or contains invalid characters."), $attr);
138       }
139     }
140     return($message);
141   }
142   
144   function save_object()
145   {
146     if(isset($_POST['goLogDBServerPosted'])){
147       plugin::save_object();
148     }
149   }  
151 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
152 ?>