changed the way gTLD handlers are detected

This commit is contained in:
sparc 2007-02-06 10:54:49 +00:00
parent 04f9d1cacd
commit e669872f13
3 changed files with 99 additions and 99 deletions

View file

@ -395,4 +395,62 @@ class WhoisClient {
// Return the result
return $handler->parse($result,$this->Query['string']);
}
/*
* Does more (deeper) whois ...
*/
function DeepWhois ($query) {
if (isset($this->result['regyinfo']['whois']))
$this->Query['server'] = $this->result['regyinfo']['whois'];
$subresult = $this->GetData($query);
if (isset($subresult['rawdata']))
{
$this->result['rawdata'] = $subresult['rawdata'];
@$this->Query['handler'] = $this->WHOIS_HANDLER[$this->result['regyinfo']['whois']];
if (!empty($this->Query['handler']))
{
$this->Query['file'] = sprintf('whois.gtld.%s.php', $this->Query['handler']);
$regrinfo = $this->Process($this->result['rawdata']);
$this->result['regrinfo'] = $this->merge_results($this->result['regrinfo'], $regrinfo);
}
}
return $this->result;
}
/*
* Merge results
*/
function merge_results($a1, $a2) {
reset($a2);
while (list($key, $val) = each($a2))
{
if (isset($a1[$key]))
{
if (is_array($val))
{
if ($key != 'nserver')
$a1[$key] = $this->merge_results($a1[$key], $val);
}
else
{
$val = trim($val);
if ($val != '')
$a1[$key] = $val;
}
}
else
$a1[$key] = $val;
}
return $a1;
}
}

View file

@ -37,7 +37,7 @@ require_once('whois.parser.php');
class gtld_handler extends WhoisClient
{
// Deep whois ?
var $deep_whois = true;
//var $deep_whois = true;
var $HANDLER_VERSION = '1.1';
@ -58,58 +58,12 @@ class gtld_handler extends WhoisClient
'No match for ' => 'nodomain'
);
var $REGISTRARS = array(
'ALABANZA, INC.' => 'bulkr',
'ALLINDOMAINS, LLC' => 'alldomains',
'ARSYS INTERNET, S.L. D/B/A NICLINE.COM' => 'nicline',
'ASCIO TECHNOLOGIES, INC.' => 'ascio',
'BRANDON GRAY INTERNET SERVICES, INC. DBA NAMEJUICE.COM' => 'namejuice',
'BULKREGISTER.COM, INC.' => 'enom',
'BULKREGISTER, LLC.' => 'enom',
'CHINESEDOMAINS, LLC' => 'chdom',
'COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM' => 'joker',
'CORE INTERNET COUNCIL OF REGISTRARS' => 'core',
'CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG' => 'cronon',
'DIRECT INFORMATION PVT. LTD., DBA DIRECTI.COM' => 'directi',
'DIRECT INFORMATION PVT LTD D/B/A PUBLICDOMAINREGISTRY.COM' => 'directi',
'DOMAIN BANK, INC.' => 'domainbank',
'DOMAIN CONTENDER, LLC' => 'contender',
'DOMAINDISCOVER' => 'buydomains',
'DOTSTER, INC.' => 'dotster',
'DSTR ACQUISITION PA I, LLC DBA DOMAINBANK.COM' => 'domainbank',
'DSTR ACQUISITION VII, LLC' => 'dotregistrar',
'ENCIRCA INC' => 'encirca',
'ENOM, INC.' => 'enom',
'GO DADDY SOFTWARE, INC.' => 'godaddy',
'IHOLDINGS.COM, INC. D/B/A DOTREGISTRAR.COM' => 'dotregistrar',
'INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM' => 'innerwise',
'INTERCOSMOS MEDIA GROUP, INC. D/B/A DIRECTNIC.COM' => 'directnic',
'INTERDOMAIN, S.A.' => 'interdomain',
'MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE' => 'inwwcom',
'MONIKER ONLINE SERVICES, INC.' => 'moniker',
'NAMESDIRECT.COM, INC.' => 'ndirect',
'NETWORK SOLUTIONS, INC.' => 'netsol',
'NETWORK SOLUTIONS, LLC.' => 'netsol',
'NOMINALIA INTERNET S.L.' => 'nominalia',
'REGISTER.COM, INC.' => 'registercom',
'RESERVED-INTERNET ASSIGNED NUMBERS AUTHORITY' => 'iana',
'PSI-USA, INC. DBA DOMAIN ROBOT' => 'psiusa',
'SCHLUND+PARTNER AG' => 'schlund',
'STARGATE HOLDINGS CORP.' => 'stargate',
'TLDS, INC. DBA SRSPLUS' => 'srsplus',
'TLDS, LLC DBA SRSPLUS' => 'srsplus',
'TUCOWS, INC.' => 'opensrsnet',
'TUCOWS INC.' => 'opensrsnet',
'TV CORPORATION' => 'tvcorp',
'WILD WEST DOMAINS, INC.' => 'godaddy'
);
function parse($data, $query)
{
$this->Query = array();
$this->SUBVERSION = sprintf('%s-%s', $query['handler'], $this->HANDLER_VERSION);
$this->result = generic_parser_b($data['rawdata'], $this->REG_FIELDS, 'dmy');
unset($this->result['registered']);
if (isset($this->result['nodomain']))
@ -121,59 +75,9 @@ class gtld_handler extends WhoisClient
$this->result['regrinfo']['registered'] = 'yes';
if (!$this->deep_whois) return $this->result;
unset($this->Query['handler']);
if (isset($this->result['regyinfo']['whois']))
$this->Query['server'] = $this->result['regyinfo']['whois'];
$subresult = $this->GetData($query);
if ($this->deep_whois) $this->DeepWhois($query);
if (isset($subresult['rawdata']))
{
$this->result['rawdata'] = $subresult['rawdata'];
@$this->Query['handler'] = $this->REGISTRARS[$this->result['regyinfo']['registrar']];
if (!empty($this->Query['handler']))
{
$this->Query['file'] = sprintf('whois.gtld.%s.php', $this->Query['handler']);
$regrinfo = $this->Process($this->result['rawdata']);
$this->result['regrinfo'] = merge_results($this->result['regrinfo'], $regrinfo);
}
}
return $this->result;
}
}
function merge_results($a1, $a2)
{
reset($a2);
while (list($key, $val) = each($a2))
{
if (isset($a1[$key]))
{
if (is_array($val))
{
if ($key != 'nserver')
$a1[$key] = merge_results($a1[$key], $val);
}
else
{
$val = trim($val);
if ($val != '')
$a1[$key] = $val;
}
}
else
$a1[$key] = $val;
}
return $a1;
}
?>

View file

@ -128,6 +128,44 @@ $this->WHOIS_SPECIAL = array(
'za.org' => 'whois.za.net'
);
/* handled gTLD whois servers */
$this->WHOIS_HANDLER = array(
'rs.domainbank.net' => 'domainbank',
'whois.allindomains.com' => 'alldomains',
'whois.ascio.com' => 'ascio',
'whois.bulkregister.com' => 'enom',
'whois.corenic.net' => 'core',
'whois.directnic.com' => 'directnic',
'whois.domaincontender.com' => 'contender',
'whois.domaindiscover.com' => 'buydomains',
'whois.dotregistrar.com' => 'dotregistrar',
'whois.dotster.com' => 'dotster',
'whois.encirca.biz' => 'encirca',
'whois.enom.com' => 'enom',
'whois.godaddy.com' => 'godaddy',
'whois.iana.org' => 'iana',
'whois.interdomain.net' => 'interdomain',
'whois.itsyourdomain.com' => 'innerwise',
'whois.joker.com' => 'joker',
'whois.melbourneit.com' => 'inwwcom',
'whois.moniker.com' => 'moniker',
'whois.namejuice.com' => 'namejuice',
'whois.namesdirect.com' => 'ndirect',
'whois.networksolutions.com' => 'netsol',
'whois.nicline.com' => 'nicline',
'whois.nominalia.com' => 'nominalia',
'whois.opensrs.net' => 'opensrsnet',
'whois.publicdomainregistry.com' => 'directi',
'whois.psi-usa.info' => 'psiusa',
'whois.register.com' => 'registercom',
'whois.schlund.info' => 'schlund',
'whois.srsplus.com' => 'srsplus',
'whois.stargateinc.com' => 'stargate',
'whois.tmagnic.net' => 'cronon',
'whois.www.tv' => 'tvcorp'
);
/* Non ICANN TLD's */
$this->WHOIS_NON_ICANN = array (