<?php
//
//    ddns update by GET method
//
include "../ddnscommon.php";

$username  $_SERVER['PHP_AUTH_USER'];
$domain    $_GET['domain'];
$subdomain $_GET['subdomain'];
$hostname  $_GET['hostname'];
$ipaddress $_GET['ipaddress'];
$ipaddress2$_GET['myip'];

if (
$ipaddresss2){
    
$ipaddress $ipaddress2;
}

if(!
$ipaddress){
    
$ipaddress $_SERVER['REMOTE_ADDR'];
}

if(!(
$username && $ipaddress && (($subdomain && $domain) || $hostname))){
    if(
$username || $ipaddress || $subdomain || $domain || $hostname){
        if(!
$username){
            
$msg .= "User ID is missing.";
        }
        if(!
$ipaddress){
            
$msg .= "IP address is missing.";
        }
        if(!
$hostname){

            if(!
$subdomain && $domain){
                
$msg .= "Subdomain is missing.";
            }
            if(
$subdomain && !$domain){
                
$msg .= "Domain name is missing.";
            }
            if(!
$subdomain && !$domain){
//                $msg .= "Hostname is missing.";
                
$msg .= "notfqdn";
            }
        }
    }else{
        
$msg .= "No Data.";
    }
    echo 
"$msg";

}else{
    
$link mysql_connect($db_host$db_user$db_pass) OR die(mysql_error());
    
mysql_select_db($db_name$link);
    if(!
$hostname){
        
$hostname=$subdomain.".".$domain;
    }
    
$sql sprintf("SELECT * FROM hostdata WHERE hostname='%s' AND username='%s'",
        
mysql_real_escape_string($hostname),
        
mysql_real_escape_string($username));
    
$rs mysql_query($sql,$link);
    
$item mysql_fetch_array($rs);
    if(
$item){
        
$timestamp date('Y-m-d H:i:s');
        if(
$ipaddress != $item['current_ip']){
            if(
$item['current_ip'] == "0.0.0.0"){
                
$dat[0] = "update add $hostname 300 A $ipaddress\n";
                
$dat[1] = "\n";
            }else{
                
$dat[0] = "update delete $hostname\n";
                
$dat[1] = "update add $hostname 300 A $ipaddress\n";
                
$dat[2] = "\n";
            }
            
$update_file "./temporary/$hostname.txt";
            
touch($update_file);
            
$fp fopen($update_file,'w');
            for(
$i=0;$dat[$i];$i++){
                
fputs($fp,$dat[$i]);
            }
            
fclose($fp);
            
$status shell_exec($sudo_cmd." ".$nsupdate_cmd." -k ".$nsupdate_key." ".$update_file);
            
unlink($update_file);
//            echo "Updated.";
            
echo "good ";
            
$sql sprintf("UPDATE hostdata SET current_ip='%s' , last_access='$timestamp' , last_update='$timestamp' WHERE hostname='%s'",
                
mysql_real_escape_string($ipaddress),
                
mysql_real_escape_string($hostname));
            
$rs mysql_query($sql,$link);
        }else{
//            echo "IP Address has not been changed.";
            
echo "nochg";
            
$sql sprintf("UPDATE hostdata SET current_ip='%s' , last_access='$timestamp'  WHERE hostname='%s'",
                
mysql_real_escape_string($ipaddress),
                
mysql_real_escape_string($hostname));
            
$rs mysql_query($sql,$link);
        }
    }else{
//        echo "Invalid Login.";
        
echo "nohost";
    }
    
mysql_close($link);
}
?>