Code

Updated dhcp classes
[gosa.git] / gosa-plugins / dhcp / admin / systems / services / dhcp / class_dhcpSubnet.inc
1 <?php
2 /*
3   This code is part of GOsa (https://gosa.gonicus.de)
4   Copyright (C) 2003-2007  Cajus Pollmeier
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2 of the License, or
9   (at your option) any later version.
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
21 class dhcpSubnet extends dhcpPlugin
22 {
23   /* Used attributes */
24   var $dhcpNetMask= 24;
25   var $dhcpRange= "";
26   var $range_start= "";
27   var $range_stop= "";
28   var $use_range= FALSE;
30   /* attribute list for save action */
31   var $objectclasses= array('top', 'dhcpSubnet', 'dhcpOptions');
33   function dhcpSubnet($parent,$attrs)
34   {
35     dhcpPlugin::dhcpPlugin($parent,$attrs);
37     if (!$this->new){
38       /* Load attributes */
39       foreach (array("dhcpNetMask", "dhcpRange") as $attr){
40         if (isset($attrs[$attr][0])){
41           $this->$attr= $attrs[$attr][0];
42         }
43       }
44       if (isset($attrs['dhcpRange']) && count($attrs['dhcpRange'])){
45         $this->use_range= TRUE;
46         list($this->range_start, $this->range_stop)= preg_split('/\s+/', $this->dhcpRange);
47       }
48     }
50     $this->dhcpNetMask= normalize_netmask($this->dhcpNetMask);
51   }
54   function execute()
55   {
56     $smarty= get_smarty();
57     $smarty->assign("cn", $this->cn);
58     $smarty->assign("dhcp_netmask", $this->dhcpNetMask);
60     /* Assign ACLs */
61     $smarty->assign("acl",$this->parent->getacl(""));
63     /* Prepare range */
64     if ($this->use_range){
65       $smarty->assign("use_range", "checked");
66       $smarty->assign("range_disabled", "");
67     } else {
68       $smarty->assign("use_range", "");
69       $smarty->assign("range_disabled", "disabled");
70     }
71     $smarty->assign("range_start", $this->range_start);
72     $smarty->assign("range_stop", $this->range_stop);
74     /* Show main page */
75     $display= $smarty->fetch(get_template_path('dhcp_subnet.tpl', TRUE, dirname(__FILE__))).$this->network->execute();
77     /* Merge arrays for advanced view */
78     $this->fix_options();
79     foreach (array("options", "statements") as $type){
80       $this->advanced->$type= $this->$type + $this->network->$type;
81     }
83     $display.= $this->advanced->execute();
85     /* Merge back for removals */
86     foreach (array("options", "statements") as $type){
87       $this->$type= $this->advanced->$type;
88       $this->network->$type= $this->advanced->$type;
89     }
91     /* Add footer */
92     $display.= "<div style='width:100%;text-align:right;margin-top:5px;'>";
93     if(preg_match("/w/",$this->parent->getacl(""))){
94         $display.=   "<input type=submit name='save_dhcp' value='".msgPool::saveButton()."'>&nbsp;";
95     }
96     $display.=   "<input type=submit name='cancel_dhcp' value='".msgPool::cancelButton()."'>";
97     $display.= "</div>";
100     /* Show main page */
101     return $display;
102   }
105   function remove_from_parent()
106   {
107   }
110   /* Save data to object */
111   function save_object()
112   {
113     if(isset($_POST['dhcp_subnet_posted'])){
114       if (isset($_POST['cn'])){
115         $this->cn= validate(get_post('cn'));
116       } 
117       if (isset($_POST['dhcp_netmask'])){
118         $this->dhcpNetMask= validate(get_post('dhcp_netmask'));
119       } 
120       if (isset($_POST['use_range'])){
121         $this->use_range= TRUE;
122         $this->range_start= validate(get_post('range_start'));
123         $this->range_stop= validate(get_post('range_stop'));
124       } else {
125         $this->use_range= FALSE;
126       }
128       /* Move range to internal variable */
129       $this->dhcpRange= $this->range_start." ".$this->range_stop;
130       dhcpPlugin::save_object();
131     }
132   }
135   /* Check values */
136   function check()
137   {
138     $message= array();
140     $cache = $this->parent->dhcpObjectCache;
142     /* All required fields are set? */
143     if ($this->cn == ""){
144       $message[]= msgPool::required(_("Network address"));
145     }
146     if ($this->dhcpNetMask == ""){
147       $message[]= msgPool::required(_("Netmask"));
148     }
150     /* cn already used? */
151     if ($this->orig_cn != $this->cn || $this->new){
153       foreach($cache as $dn => $dummy){
154         if (preg_match("/^cn=".$this->cn.",/", $dn) && count($dummy)){
155           $message[]= msgPool::duplicated(_("Name"));
156           break;
157         }
158       }
159     }
161     /* IP's? */
162     foreach(array('dhcpNetMask' => _("Netmask"), 'cn' => _("Network address"), 'range_start' => _("Range"), 'range_stop' => _("Range")) as $attr => $str){
163       if ($this->$attr != "" && !tests::is_ip($this->$attr)){
164         $message[]= msgPool::invalid($str,"","","192.168.0.23");
165       }
166     }
168     /* Check ip range */
169     if ($this->use_range){
170       if(!tests::is_ip_range($this->range_start,$this->range_stop)){
171         $message[]= msgPool::invalid(_("Network range"));
172       }
174       /* Check if range is in the network */
175       if (!tests::is_in_network($this->cn, $this->dhcpNetMask, $this->range_start) ||
176           !tests::is_in_network($this->cn, $this->dhcpNetMask, $this->range_stop)){
177         $message[] = _("'Range' is not inside the configured network.");
178       }
179     }
181     /* Check external plugins */
182     $net= $this->network->check();
183     $adv= $this->advanced->check();
184     $message= array_merge($message, $net, $adv);
186     return $message;
187   }
190   /* Save to LDAP */
191   function save()
192   {
193     dhcpPlugin::save();
195     /* Move dn to the result */
196     $this->attrs['dhcpNetMask']= array(netmask_to_bits($this->dhcpNetMask));
197     if ($this->use_range && !empty($this->dhcpRange)){
198       $this->attrs['dhcpRange']= array($this->range_start." ".$this->range_stop);
199     } else {
200       $this->attrs['dhcpRange']= array();
201     }
203     return ($this->attrs);
204   }
205   
207 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
208 ?>