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
|
<?php
// IPplan v4.92a
// Aug 24, 2001
//
// Modified by Tony D. Koehn Feburary 2003
//
// This program 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.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
require_once("../ipplanlib.php");
require_once("../adodb/adodb.inc.php");
require_once("../class.dbflib.php");
require_once("../layout/class.layout");
require_once("../auth.php");
require_once("../class.xptlib.php");
$auth = new SQLAuthenticator(REALM, REALMERROR);
// And now perform the authentication
$grps=$auth->authenticate();
// save the last customer used
// must set path else Netscape gets confused!
setcookie("ipplanCustomer","$cust",time() + 10000000, "/");
// set language
isset($_COOKIE["ipplanLanguage"]) && myLanguage($_COOKIE['ipplanLanguage']);
//setdefault("window",array("bgcolor"=>"white"));
//setdefault("table",array("cellpadding"=>"0"));
//setdefault("text",array("size"=>"2"));
$title=my_("Add / Edit DNS Host");
newhtml($p);
insert($p, $h = wheader("IPPlan - $title"));
insert($h, script("", array("type"=>"text/javascript", "src"=>"../cookies.js")));
insert($h, script("", array("type"=>"text/javascript", "src"=>"../phpserializer.js")));
insert($h, script("", array("type"=>"text/javascript", "src"=>"../ipplanlib.js")));
$w=myheading($p, $title, true);
// explicitly cast variables as security measure against SQL injection
list($cust, $dataid, $zoneid, $action, $domain, $sortorder, $host, $recordtype, $iphostname) = myRegister("I:cust I:dataid I:zoneid S:action S:domain I:sortorder S:host S:recordtype S:iphostname");
if (!$_GET) {
myError($w,$p, my_("You cannot reload or bookmark this page!"));
}
// basic sequence is connect, search, interpret search
// result, close connection
$ds=new IPplanDbf() or myError($w,$p, my_("Could not connect to database"));
insert($w,heading(3, my_("Host Record for domain: ").$domain));
insert($w, $f = form(array("name"=>"ENTRY",
"method"=>"post",
"action"=>"modifydnsrecord.php")));
insert($f, $con=container("fieldset",array("class"=>"fieldset")));
insert($con, $legend=container("legend",array("class"=>"legend")));
insert($legend, text(my_("DNS record")));
// Use the same form for adding or editing. Setup page & variables based on action.
if ($action=='add') {
$host="";
$RecordType="A";
$iphostname="";
insert($con,hidden(array("name"=>"action", "value"=>"add")));
insert($con,hidden(array("name"=>"zoneid", "value"=>"$zoneid")));
$myTitle="Add";
}
else {
insert($con,hidden(array("name"=>"action", "value"=>"edit")));
insert($con,hidden(array("name"=>"zoneid", "value"=>"$zoneid")));
insert($con,hidden(array("name"=>"dataid", "value"=>"$dataid")));
$myTitle="Edit";
}
insert($con,hidden(array("name"=>"domain", "value"=>"$domain")));
insert($con,hidden(array("name"=>"cust", "value"=>"$cust")));
myFocus($p, "ENTRY", "host");
insert($con,textbr(my_("Host Name")));
insert($con,block("<small><i>"));
insert($con,textbr(my_("Terminate Fully Qualified Domand Name's (FQDN) with a . eg. mywwwserver.com. to signify 'This domain'")));
insert($con,block("</small></i>"));
insert($con,input_text(array("name"=>"host",
"value"=>"$host",
"size"=>"40",
"maxlength"=>"253")));
insert($con,anchor("JavaScript:thisdomain()",
my_("This domain")));
// add some javascript magic to follow a link if field is completed
insert($p, script('
function thisdomain() {
document.ENTRY.host.value="'.$domain.'.";
} ', array("language"=>"JavaScript", "type"=>"text/javascript")));
insert($con,textbrbr(my_("Record Type")));
insert($con,selectbox(array("A"=>"A",
"CNAME"=>"CNAME",
"MX"=>"MX",
"TXT"=>"TXT",
"KEY"=>"KEY",
"SRV"=>"SRV",
"NS"=>"NS",
"AFSDB"=>"AFSDB"),
array("name"=>"recordtype"), $recordtype));
insert($con,textbrbr(my_("IP / Hostname")));
insert($con,block("<small><i>"));
insert($con,textbr(my_("For MX records, format is \"preference hostname\", eg. \"10 mymailserver.com.\"")));
insert($con,block("</small></i>"));
insert($con,input_text(array("name"=>"iphostname",
"value"=>"$iphostname",
"size"=>"40",
"maxlength"=>"250")));
insert($con,textbrbr(my_("Sort Order")));
insert($con,input_text(array("name"=>"sortorder",
"value"=>"$sortorder",
"size"=>"6",
"maxlength"=>"6")));
insert($f,submit(array("value"=>my_("Save"))));
insert($f,freset(array("value"=>my_("Clear"))));
myCopyPaste($f, "ipplanCPdnsrecord", "ENTRY");
// create the export view form
$export = new exportForm();
$export->setInfo(array(array("customer_ID", "customer_description", "data_ID", "domain", "sort_order", "host", "record_type", "ip_hostname"),
array($cust, $ds->getCustomerDescrip($cust), $dataid, $domain, $sortorder, $host, $recordtype, $iphostname)));
$export->createExportForm($w, NULL);
printhtml($p);
?>
|