|
<?php
|
|
/*
|
|
Whois.php PHP classes to conduct whois queries
|
|
|
|
Copyright (C)1999,2005 easyDNS Technologies Inc. & Mark Jeftovic
|
|
|
|
Maintained by David Saez (david@ols.es)
|
|
|
|
For the most recent version of this package visit:
|
|
|
|
http://www.phpwhois.org
|
|
|
|
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.
|
|
*/
|
|
|
|
if (!defined('__NZ_HANDLER__'))
|
|
define('__NZ_HANDLER__', 1);
|
|
|
|
require_once('whois.parser.php');
|
|
|
|
class nz_handler
|
|
{
|
|
|
|
function parse($data_str, $query)
|
|
{
|
|
$items = array(
|
|
'domain_name:' => 'domain.name',
|
|
'query_status:' => 'domain.status',
|
|
'ns_name_01:' => 'domain.nserver.0',
|
|
'ns_name_02:' => 'domain.nserver.1',
|
|
'ns_name_03:' => 'domain.nserver.2',
|
|
'domain_dateregistered:' => 'domain.created',
|
|
'domain_datelastmodified:' => 'domain.changed',
|
|
'domain_datebilleduntil:' => 'domain.expires',
|
|
'registrar_name:' => 'domain.sponsor',
|
|
'registrant_contact_name:' => 'owner.name',
|
|
'registrant_contact_address1:' => 'owner.address.address.0',
|
|
'registrant_contact_address2:' => 'owner.address.address.1',
|
|
'registrant_contact_address3:' => 'owner.address.address.2',
|
|
'registrant_contact_postalcode:'=> 'owner.address.pcode',
|
|
'registrant_contact_city:' => 'owner.address.city',
|
|
'Registrant State/Province:' => 'owner.address.state',
|
|
'registrant_contact_country:' => 'owner.address.country',
|
|
'registrant_contact_phone:' => 'owner.phone',
|
|
'registrant_contact_fax:' => 'owner.fax',
|
|
'registrant_contact_email:' => 'owner.email',
|
|
'admin_contact_name:' => 'admin.name',
|
|
'admin_contact_address1:' => 'admin.address.address.0',
|
|
'admin_contact_address2:' => 'admin.address.address.1',
|
|
'admin_contact_address3:' => 'admin.address.address.2',
|
|
'admin_contact_postalcode:' => 'admin.address.pcode',
|
|
'admin_contact_city:' => 'admin.address.city',
|
|
'admin_contact_country:' => 'admin.address.country',
|
|
'admin_contact_phone:' => 'admin.phone',
|
|
'admin_contact_fax:' => 'admin.fax',
|
|
'admin_contact_email:' => 'admin.email',
|
|
'technical_contact_name:' => 'tech.name',
|
|
'technical_contact_address1:' => 'tech.address.address.0',
|
|
'technical_contact_address1:' => 'tech.address.address.1',
|
|
'technical_contact_address1:' => 'tech.address.address.2',
|
|
'technical_contact_postalcode:' => 'tech.address.pcode',
|
|
'technical_contact_city:' => 'tech.address.city',
|
|
'technical_contact_country:' => 'tech.address.country',
|
|
'technical_contact_phone:' => 'tech.phone',
|
|
'technical_contact_fax:' => 'tech.fax',
|
|
'technical_contact_email:' => 'tech.email'
|
|
);
|
|
|
|
$r['regrinfo'] = generic_parser_b($data_str['rawdata'], $items);
|
|
|
|
if (!empty($r['regrinfo']['domain']['status']))
|
|
$domain_status = substr($r['regrinfo']['domain']['status'],0,3);
|
|
else
|
|
$domain_status = '';
|
|
|
|
if ($domain_status=='200')
|
|
$r['regrinfo']['registered']='yes';
|
|
elseif ($domain_status=='220')
|
|
$r['regrinfo']['registered']='no';
|
|
else
|
|
$r['regrinfo']['registered']='unknown';
|
|
|
|
if (!strncmp($data_str['rawdata'][0], 'WHOIS LIMIT EXCEEDED', 20))
|
|
$r['regrinfo']['registered'] = 'unknown';
|
|
|
|
$r['regyinfo']['referrer'] = 'http://www.dnc.org.nz';
|
|
$r['regyinfo']['registrar'] = 'New Zealand Domain Name Registry Limited';
|
|
return ($r);
|
|
}
|
|
}
|
|
|
|
?>
|