Added gtld handler for OVH
This commit is contained in:
parent
2913389bf4
commit
d6cc3c8dd5
4 changed files with 69 additions and 1 deletions
|
@ -6,7 +6,9 @@
|
||||||
whois.gtl.php
|
whois.gtl.php
|
||||||
- removed whois.gtld.chdom handler
|
- removed whois.gtld.chdom handler
|
||||||
- allow easy plugin for new country handlers
|
- allow easy plugin for new country handlers
|
||||||
- minor improvment in whois.gtld.php
|
- minor improvement to whois.client.php and
|
||||||
|
whois.parser.php
|
||||||
|
- added gtld handler for OVH
|
||||||
|
|
||||||
2007/04/06
|
2007/04/06
|
||||||
- fixed error in whois.ip.php
|
- fixed error in whois.ip.php
|
||||||
|
|
64
src/whois.gtld.ovh.php
Normal file
64
src/whois.gtld.ovh.php
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
<?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('__OVH_HANDLER__'))
|
||||||
|
define('__OVH_HANDLER__', 1);
|
||||||
|
|
||||||
|
require_once('whois.parser.php');
|
||||||
|
|
||||||
|
class ovh_handler
|
||||||
|
{
|
||||||
|
|
||||||
|
function parse($data_str, $query)
|
||||||
|
{
|
||||||
|
$translate = array(
|
||||||
|
'nic-hdl' => 'handle',
|
||||||
|
'person' => 'name',
|
||||||
|
'adresse' => 'address'
|
||||||
|
);
|
||||||
|
|
||||||
|
$contacts = array(
|
||||||
|
'tech-c' => 'tech',
|
||||||
|
'admin-c' => 'admin',
|
||||||
|
'bill-c' => 'billing'
|
||||||
|
);
|
||||||
|
|
||||||
|
$r = generic_parser_a($data_str, $translate, $contacts, 'owner', 'ymd');
|
||||||
|
|
||||||
|
if (isset($r['owner']['domain']))
|
||||||
|
{
|
||||||
|
unset($r['owner']['domain']);
|
||||||
|
unset($r['owner']['nserver']);
|
||||||
|
unset($r['owner']['created']);
|
||||||
|
unset($r['owner']['expires']);
|
||||||
|
unset($r['owner']['changed']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return ($r);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
|
@ -116,6 +116,7 @@ $this->WHOIS_HANDLER = array(
|
||||||
'whois.nicline.com' => 'nicline',
|
'whois.nicline.com' => 'nicline',
|
||||||
'whois.nominalia.com' => 'nominalia',
|
'whois.nominalia.com' => 'nominalia',
|
||||||
'whois.opensrs.net' => 'opensrsnet',
|
'whois.opensrs.net' => 'opensrsnet',
|
||||||
|
'whois.ovh.com' => 'ovh',
|
||||||
'whois.publicdomainregistry.com' => 'directi',
|
'whois.publicdomainregistry.com' => 'directi',
|
||||||
'whois.psi-usa.info' => 'psiusa',
|
'whois.psi-usa.info' => 'psiusa',
|
||||||
'whois.register.com' => 'registercom',
|
'whois.register.com' => 'registercom',
|
||||||
|
|
1
test.txt
1
test.txt
|
@ -59,6 +59,7 @@ netsol networksolutions.com
|
||||||
nicline nicline.com
|
nicline nicline.com
|
||||||
nominalia nominalia.com
|
nominalia nominalia.com
|
||||||
opensrsnet tucows.com
|
opensrsnet tucows.com
|
||||||
|
ovh ovh.com
|
||||||
psiusa urllog.net
|
psiusa urllog.net
|
||||||
registercom register.com
|
registercom register.com
|
||||||
schlund schlund.com
|
schlund schlund.com
|
||||||
|
|
Loading…
Reference in a new issue