summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/computers/dhcphost_change.php
blob: cbfa7f9f415596b549b89dcdd35f75252d8b0dd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
include('../standard_header.inc.php');

$syntax = new Syntaxcheck;

$dhcp = $_POST['dhcpcont'];
$olddhcp = $_POST['olddhcp'];

$hostDN = $_POST['hostdn'];
$hostip = $_POST['hostip'];
$hostmac = $_POST['hostmac'];
$fixedaddress = $_POST['fixadd'];
$oldfixedaddress = $_POST['oldfixadd'];
$oldrbs = $_POST['oldrbs'];

$sbmnr = $_POST['sbmnr'];

$dhcp = htmlentities($dhcp);
$olddhcp = htmlentities($olddhcp);

# sonstige Attribute
$attribs = $_POST['attribs'];
if (count($attribs) != 0){
	foreach (array_keys($attribs) as $key){
		$atts[$key] = htmlentities($attribs[$key]);
	}
}
#print_r($atts); echo "<br><br>";
$oldattribs = $_POST['oldattribs'];
if (count($oldattribs) != 0){
	foreach (array_keys($oldattribs) as $key){
		$oldatts[$key] = htmlentities($oldattribs[$key]);
	}
}
#print_r($oldatts); echo "<br><br>";

/*echo "new dhcp:"; print_r($dhcp); echo "<br>";
echo "old dhcp:"; print_r($olddhcp); echo "<br>";
echo "new rbs:"; print_r($rbs); echo "<br>";
echo "old rbs:"; print_r($oldrbs); echo "<br>";
echo "Host DN:"; print_r($hostDN); echo "<br>";
echo "submenuNR:"; print_r($sbmnr); echo "<br><br>";*/


$seconds = 2;
$url = 'dhcphost.php?dn='.$hostDN.'&sbmnr='.$sbmnr;
 
echo "  
<html>
<head>
	<title>AU Management</title>
	<link rel='stylesheet' href='../styles.css' type='text/css'>
</head>
<body>
<table border='0' cellpadding='30' cellspacing='0'> 
<tr><td>";

##########################################
# DHCP Einbindung

if ($dhcp != "none" && $dhcp != $olddhcp){
   if ($dhcp != ""){
   	$exp = ldap_explode_dn($dhcp, 1);
	   $dhcpcn = $exp[0];
	   $dhcpau = $exp[2];
	   
	   $entrydhcp ['dhcphlpcont'] = $dhcp;
	   if ($olddhcp != ""){
	      echo "DHCP replace "; print_r($olddhcp); echo " with "; print_r($entrydhcp); echo "<br>";
   	   if ($result = ldap_mod_replace($ds,$hostDN,$entrydhcp)){
   	      update_dhcpmtime(array());
   	   	$mesg = "Rechner erfolgreich in DHCP <b>".$dhcpcn." [Abt.: ".$dhcpau."]</b> angemeldet<br><br>";
   	   }else{
   	   	$mesg = "Fehler beim &auml;ndern des DHCP Dienstes zu <b>".$dhcpcn."</b>!<br><br>";
   	   }
	   }else{
			if ( $hostmac != ""){
				if ( $hostip != "" ){
					$entrydhcp ['dhcpoptfixed-address'] = "ip";
				}
				echo "DHCP add "; print_r($entrydhcp); echo "<br>";
				if ($result = ldap_mod_add($ds,$hostDN,$entrydhcp)){
					update_dhcpmtime(array());
					$mesg = "Rechner erfolgreich in DHCP <b>".$dhcpcn." [Abt.: ".$dhcpau."]</b> angemeldet<br><br>";
				}else{
					$mesg = "Fehler beim &auml;ndern des DHCP Dienstes zu <b>".$dhcpcn."</b>!<br><br>";
				}
			}else{
				$mesg = "Es ist keine MAC Adresse f&uuml;r den Rechner eingetragen.<br>
							Dies ist jedoch Voraussetzung f&uuml;r einen DHCP Eintrag.<br><br>";
			}
	   }
	}else{
	   $entrydhcp ['dhcphlpcont'] = array();
	   if ( $oldfixedaddress != "" ){
	      $entrydhcp ['dhcpoptfixed-address'] = array();
	   }
	   #if ( $oldrbs != "" ){
	   #   $entrydhcp ['hlprbservice'] = array();
	   #}
	   echo "DHCP delete "; echo "<br>";
	   if ($result = ldap_mod_del($ds,$hostDN,$entrydhcp)){
	      update_dhcpmtime(array());
	   	$mesg = "Rechner erfolgreich aus DHCP gel&ouml;scht<br><br>";
	   }else{
	   	$mesg = "Fehler beim l&ouml;schen aus DHCP Dienst!<br><br>";
	   }
	}
	
}
if ($dhcp == "none"){
   echo " DHCP none <br>";
}


#############################
# DHCP Option fixed-address

if ($fixedaddress != "none" && $fixedaddress != $oldfixedaddress){
   if ($fixedaddress != ""){
      $entryfixadd ['dhcpoptfixed-address'] = $fixedaddress;
      if ($oldfixedaddress != ""){
         echo "Fixed Address &auml;ndern"; echo "<br>";
         if ($result = ldap_mod_replace($ds,$hostDN,$entryfixadd)){
            update_dhcpmtime(array());
   	   	$mesg = "Option Fixed-Address erfolgreich auf <b>".$fixedaddress."</b> ge&auml;ndert<br><br>";
   	   }else{
   	   	$mesg = "Fehler beim &auml;ndern der Option Fixed-Address auf <b>".$fixedaddress."</b>!<br><br>";
   	   }
   	}else{
         echo "Fixed Address auf IP Adresse setzen"; echo "<br>";
         if ($result = ldap_mod_add($ds,$hostDN,$entryfixadd)){
            update_dhcpmtime(array());
   	   	$mesg = "Option Fixed-Address erfolgreich auf <b>".$fixedaddress."</b> gesetzt<br><br>";
   	   }else{
   	   	$mesg = "Fehler beim setzen der Option Fixed-Address auf <b>".$fixedaddress."</b>!<br><br>";
   	   }
      }
   }else{
      $entryfixadd ['dhcpoptfixed-address'] = array();
      echo "No Fixed Address"; echo "<br>";
	   if ($result = ldap_mod_del($ds,$hostDN,$entryfixadd)){
	      update_dhcpmtime(array());
	   	$mesg = "Option Fixed-Address erfolgreich gel&ouml;scht<br><br>";
	   }else{
	   	$mesg = "Fehler beim l&ouml;schen der Option Fixed-Address!<br><br>";
	   }
   }
}

#####################################
# Restliche Attribute ...

#if (count($atts) != 0){
	
	$entryadd = array();
	$entrymod = array();
	$entrydel = array();
	
	foreach (array_keys($atts) as $key){
		
		if ( $oldatts[$key] == $atts[$key] ){
		
		}
		if ( $oldatts[$key] == "" && $atts[$key] != "" ){
			# hier noch Syntaxcheck
			$entryadd[$key] = $atts[$key];
		}
		if ( $oldatts[$key] != "" && $atts[$key] != "" && $oldatts[$key] != $atts[$key] ){
			# hier noch Syntaxcheck
			$entrymod[$key] = $atts[$key];
		}
		if ( $oldatts[$key] != "" && $atts[$key] == "" ){
			# hier noch Syntaxcheck
			$entrydel[$key] = $oldatts[$key];
		}
	}
	
	#print_r($entryadd); echo "<br>";
	#print_r($entrymod); echo "<br>";
	#print_r($entrydel); echo "<br>";
	
	
	if (count($entryadd) != 0 ){
		#print_r($entryadd); echo "<br>";
		#echo "neu anlegen<br>"; 
		foreach (array_keys($entryadd) as $key){
			$addatts .= "<b>".$key."</b>,";
		}
		if(ldap_mod_add($ds,$hostDN,$entryadd)){
			$mesg = "Attribute ".$addatts." erfolgreich eingetragen<br><br>";
			update_dhcpmtime(array());
		}else{
			$mesg = "Fehler beim eintragen der Attribute ".$addatts."<br><br>";
		}
	}
	
	if (count($entrymod) != 0 ){
		#print_r($entrymod); echo "<br>";
		#echo "&auml;ndern<br>";
		foreach (array_keys($entrymod) as $key){
			$modatts .= "<b>".$key."</b>,";
		}
		if(ldap_mod_replace($ds,$hostDN,$entrymod)){
			$mesg = "Attribute ".$modatts." erfolgreich geaendert<br><br>";
			update_dhcpmtime(array());
		}else{
			$mesg = "Fehler beim aendern der Attribute ".$modatts."<br><br>";
		}
	}
	
	if (count($entrydel) != 0 ){
		#print_r($entrydel); echo "<br>";
		#echo "l&ouml;schen<br>";
		foreach (array_keys($entrydel) as $key){
			$delatts .= "<b>".$key."</b>,";
		}
		if(ldap_mod_del($ds,$hostDN,$entrydel)){
			$mesg = "Attribute ".$delatts." erfolgreich geloescht<br><br>";
			update_dhcpmtime(array());
		}else{
			$mesg = "Fehler beim loeschen der Attribute ".$delatts."<br><br>";
		}
	}
	
#}

#####################

$mesg .= "<br>Sie werden automatisch auf die vorherige Seite zur&uuml;ckgeleitet. <br>				
			Falls nicht, klicken Sie hier <a href=".$url." style='publink'>back</a>";
redirect($seconds, $url, $mesg, $addSessionId = TRUE);

echo "</td></tr></table></body>
</html>";
?>