<?php
// ----------------------------------------------------------------------
// Copyright (C) 2007 by GREGORY LE BRAS
// ----------------------------------------------------------------------
// LICENSE
//
// This file is part of ODCNMS - Open DataCenter Network Management System
//
// ODCNMS is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// Foobar is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Foobar; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// ----------------------------------------------------------------------
// Original Author of file: GREGORY LE BRAS - http://www.odcnms.org/
// ----------------------------------------------------------------------
?>
<?php
if (!isset($delete))
{
$request=mysql_query("SELECT * FROM $name_table_ip_address WHERE id=\"$_GET[id]\"") or die ("ERROR!");
while($tmp_request=mysql_fetch_array($request))
{
$addressarray=explode(".",$tmp_request['ip']);
$macarray=explode(".",$tmp_request['mac_address']);
?>
<form method="post" action="index.php?include=mainview&page=ip_address&action=delete&delete=ok&id=<?php echo $id;?>" name="delete_ip_address">
<fieldset class="form">
<legend><img src="images/delete.gif" alt="Delete" align="top"> <?php echo TXT_DELETE; ?> <?php echo TXT_IP_ADDRESS; ?></legend>
<label><?php echo TXT_NAME; ?></label>
<input type="text" name="name" size="50" value="<?php echo $tmp_request['name']; ?>" READONLY DISABLED><br>
<label><?php echo TXT_IP; ?></label>
<input type="text" name="oct1" id="oct1" size="3" maxlength="3" value="<?php echo $addressarray[0]; ?>" onkeydown="keynext(event.keyCode,'oct2');if (event.keyCode==190) return false;" onKeyPress="return numbersonly(this, event);" DISABLED><span style="top: -6px;position:relative;">.</span><input type="text" name="oct2" id="oct2" onkeydown="keynext(event.keyCode,'oct3');if (event.keyCode==190) return false;" size="3" maxlength="3" value="<?php echo $addressarray[1]; ?>"onKeyPress="return numbersonly(this, event);" DISABLED><span style="top: -6px;position:relative;">.</span><input type="text" name="oct3" id="oct3" size="3" maxlength="3" value="<?php echo $addressarray[2]; ?>"onkeydown="keynext(event.keyCode,'oct4');if (event.keyCode==190) return false;" onKeyPress="return numbersonly(this, event);" DISABLED><span style="top: -6px;position:relative;">.</span><input type="text" name="oct4" id="oct4" size="3" maxlength="3" value="<?php echo $addressarray[3]; ?>" onKeyPress="return numbersonly(this, event);" DISABLED><br>
<label><?php echo TXT_MAC_ADDRESS; ?> <font size="1">(xxxx.xxxx.xxxx format)</font></label>
<input type="text" name="mac1" id="mac1" size="4" maxlength="4" onkeydown="keynext(event.keyCode,'mac2');if (event.keyCode==190) return false;" value="<?php echo $macarray[0]; ?>" DISABLED><span style="top: -6px;position:relative;">.</span><input type="text" name="mac2" id="mac2" onkeydown="keynext(event.keyCode,'mac3');if (event.keyCode==190) return false;" size="4" maxlength="4" value="<?php echo $macarray[1]; ?>" DISABLED><span style="top: -6px;position:relative;">.</span><input type="text" name="mac3" id="mac3" size="4" maxlength="4" onkeydown="keynext(event.keyCode,'mac4');if (event.keyCode==190) return false;" value="<?php echo $macarray[2]; ?>" DISABLED><br>
<label style="clear:left;"><?php echo TXT_STATUS; ?></label>
<select name="status" size="1" disabled>
<?php
switch ($tmp_request['status'])
{
case '0':
echo "<option value=\"0\" selected>".TXT_ASSIGNED."</option>
<option value=\"1\">".TXT_UNUSED."</option>
<option value=\"2\">".TXT_RESERVED."</option>";
break;
case '1':
echo "<option value=\"0\">".TXT_ASSIGNED."</option>
<option value=\"1\" selected>".TXT_UNUSED."</option>
<option value=\"2\">".TXT_RESERVED."</option>";
break;
case '2':
echo "<option value=\"0\">".TXT_ASSIGNED."</option>
<option value=\"1\">".TXT_UNUSED."</option>
<option value=\"2\" selected>".TXT_RESERVED."</option>";
break;
}
?>
</select>
<label><?php echo TXT_DESCRIPTION; ?></label>
<textarea name="description" rows="10" cols="50" READONLY DISABLED><?php echo $tmp_request['description']; ?></textarea><br>
<input type="submit" name="submit" value="<?php echo TXT_DELETE_IT_ALL_ASSOCIATED_ITEMS; ?>" onClick="return confirmDelete();"> <input type="button" value="<?php echo TXT_BACK; ?>" onClick="javascript:history.go(-1);">
</fieldset>
</form>
<script language="JavaScript" type="text/javascript">
var frmvalidator = new Validator("delete_ip_address");
frmvalidator.addValidation("name","req","Please enter the name of the ip_address");
frmvalidator.addValidation("name","maxlen=255",
"Max length for Name is 255");
</script>
<?php
}
}
else if ($delete=="ok")
{
$request=mysql_query("SELECT ip FROM $name_table_ip_address WHERE id=\"$id\"") or die ("ERROR!");
while($tmp_request=mysql_fetch_array($request))
{
$address=$tmp_request['ip'];
}
$query7=mysql_query("DELETE FROM $name_table_link_device_ip_address WHERE ip_address_id=$id");
$query_update=mysql_query("UPDATE $name_table_device SET ip_address_id=\"\" WHERE ip_address_id=\"$id\"") or die ("ERROR!");
$query=mysql_query("DELETE FROM $name_table_ip_address WHERE id=$id");
if(!$query)
{
echo "<center><div id=\"status\" style=\"color:red\"><img src=\"images/warning.png\" alt=\"WARNING\"><br><br>";
echo TXT_DATABASE_ERROR;
echo "</div><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
else
{
$currentdate = date('Y-m-d');
$currenttime = date("H:i:s");
user_log ($_SESSION['login'],$name_table_users,$name_table_users_log,"delete","ip address","$address ($id)",$mysql_hostname,$mysql_username,$mysql_password,$mysql_database);
foreach ($syslog_server as $arrayvalue)
{
$syslog = new Syslog();
$syslog->SetFacility(13);
$syslog->SetSeverity(5);
$syslog->SetProcess('odcnms');
$syslog->SetHostname('');
$syslog->SetFqdn('');
$syslog->SetIpFrom('');
$syslog->SetContent($currentdate.' '.$currenttime.' user: '.$_SESSION['login'].' - delete ip address '.$address.'('.$id.')');
$syslog->SetServer($arrayvalue);
$syslog->Send();
}
echo "<center><div id=\"status\" style=\"color:green\"><img src=\"images/info.png\" alt=\"INFO\"><br><br>";
echo TXT_SUCCESSFULLY_DELETE_IP_ADDRESS;
echo "</div><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
}
else if ($delete=="multiple")
{
foreach ($_POST['delAnn'] as $id)
{
$request=mysql_query("SELECT ip FROM $name_table_ip_address WHERE id=\"$id\"") or die ("ERROR!");
while($tmp_request=mysql_fetch_array($request))
{
$address=$tmp_request['ip'];
}
$query7=mysql_query("DELETE FROM $name_table_link_device_ip_address WHERE ip_address_id=$id");
$query_update=mysql_query("UPDATE $name_table_device SET ip_address_id=\"\" WHERE ip_address_id=\"$id\"") or die ("ERROR!");
$query=mysql_query("DELETE FROM $name_table_ip_address WHERE id=$id");
$currentdate = date('Y-m-d');
$currenttime = date("H:i:s");
user_log ($_SESSION['login'],$name_table_users,$name_table_users_log,"delete","ip address","$address ($id)",$mysql_hostname,$mysql_username,$mysql_password,$mysql_database);
foreach ($syslog_server as $arrayvalue)
{
$syslog = new Syslog();
$syslog->SetFacility(13);
$syslog->SetSeverity(5);
$syslog->SetProcess('odcnms');
$syslog->SetHostname('');
$syslog->SetFqdn('');
$syslog->SetIpFrom('');
$syslog->SetContent($currentdate.' '.$currenttime.' user: '.$_SESSION['login'].' - delete ip address '.$address.'('.$id.')');
$syslog->SetServer($arrayvalue);
$syslog->Send();
}
}
if(!$query)
{
echo "<center><div id=\"status\" style=\"color:red\"><img src=\"images/warning.png\" alt=\"WARNING\"><br><br>";
echo TXT_DATABASE_ERROR;
echo "</div><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
else
{
echo "<center><div id=\"status\" style=\"color:green\"><img src=\"images/info.png\" alt=\"INFO\"><br><br>";
echo TXT_SUCCESSFULLY_DELETE_IP_ADDRESS;
echo "</div><br><a href=\"javascript:history.go(-2);\">";
echo TXT_BACK;
echo "</a></center>";
}
}
?>