2003-02-16 00:26:42 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
2005-07-27 09:57:53 +00:00
|
|
|
|
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:
|
|
|
|
|
|
2005-08-31 15:26:22 +00:00
|
|
|
|
http://www.phpwhois.org
|
2005-07-27 09:57:53 +00:00
|
|
|
|
|
|
|
|
|
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.
|
2005-08-26 06:46:49 +00:00
|
|
|
|
*/
|
2003-02-16 00:26:42 +00:00
|
|
|
|
|
|
|
|
|
/* esnic.whois 1.0 David Saez Padros <david@ols.es> */
|
2003-09-09 18:13:09 +00:00
|
|
|
|
/* esnic.whois 1.1 David Saez Padros <david@ols.es> */
|
2005-08-26 06:46:49 +00:00
|
|
|
|
/*
|
2003-11-19 15:39:33 +00:00
|
|
|
|
* requires https support, please see:
|
|
|
|
|
*
|
|
|
|
|
* http://www.php.net/manual/en/ref.openssl.php
|
|
|
|
|
* http://www.php.net/manual/en/wrappers.php
|
|
|
|
|
*
|
|
|
|
|
*/
|
2003-02-16 00:26:42 +00:00
|
|
|
|
|
2005-10-11 06:33:03 +00:00
|
|
|
|
if (!defined('__ES_HANDLER__'))
|
|
|
|
|
define('__ES_HANDLER__', 1);
|
2003-02-16 00:26:42 +00:00
|
|
|
|
|
2005-07-26 19:00:06 +00:00
|
|
|
|
require_once('whois.parser.php');
|
2003-09-09 18:13:09 +00:00
|
|
|
|
|
2005-08-26 06:46:49 +00:00
|
|
|
|
class es_handler
|
|
|
|
|
{
|
2003-02-16 00:26:42 +00:00
|
|
|
|
|
2005-08-26 06:46:49 +00:00
|
|
|
|
function parse($data_str, $query)
|
2006-07-25 17:20:01 +00:00
|
|
|
|
{
|
2005-07-16 13:31:20 +00:00
|
|
|
|
$items = array(
|
2008-08-11 08:27:25 +00:00
|
|
|
|
'domain.created' => 'Fecha Creaci<63>n:',
|
|
|
|
|
'domain.expires' => 'Fecha Expiraci<63>n:',
|
|
|
|
|
'owner.name' => 'Registrante:',
|
2006-07-25 17:20:01 +00:00
|
|
|
|
'admin' => 'Contacto Administrativo:',
|
2008-08-11 08:27:25 +00:00
|
|
|
|
'tech.handle' => 'Contacto T<>cnico:',
|
|
|
|
|
'billing.handle' => 'Contacto Facturaci<63>n:',
|
2006-07-25 17:20:01 +00:00
|
|
|
|
'domain.nserver' => 'Servidores DNS:'
|
2005-08-26 06:46:49 +00:00
|
|
|
|
);
|
|
|
|
|
|
2006-07-25 17:20:01 +00:00
|
|
|
|
array_shift($data_str['rawdata']);
|
|
|
|
|
array_shift($data_str['rawdata']);
|
2006-01-20 12:32:24 +00:00
|
|
|
|
|
2006-07-25 17:20:01 +00:00
|
|
|
|
$r['regrinfo'] = get_blocks($data_str['rawdata'], $items);
|
2006-01-20 12:32:24 +00:00
|
|
|
|
|
2006-12-18 17:02:38 +00:00
|
|
|
|
if (!isset($r['regrinfo']['domain']['created']) || is_array($r['regrinfo']['domain']['created']))
|
|
|
|
|
{
|
|
|
|
|
$r['regrinfo'] = array ( 'registered' => 'no');
|
|
|
|
|
$r['rawdata'] = $data_str['rawdata'];
|
|
|
|
|
$r['rawdata'][] = 'Domain not found';
|
|
|
|
|
return $r;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-11 08:27:25 +00:00
|
|
|
|
if (isset($r['regrinfo']['admin']))
|
|
|
|
|
{
|
|
|
|
|
$handle = $r['regrinfo']['admin'];
|
|
|
|
|
$items['admin'].=' '.$r['regrinfo']['admin'];
|
|
|
|
|
}
|
|
|
|
|
|
2006-07-25 17:20:01 +00:00
|
|
|
|
$r['regrinfo'] = get_blocks($data_str['rawdata'], $items);
|
2006-01-20 12:32:24 +00:00
|
|
|
|
|
2006-07-25 17:20:01 +00:00
|
|
|
|
$r['rawdata'] = $data_str['rawdata'];
|
2006-01-20 12:32:24 +00:00
|
|
|
|
|
2008-08-11 08:27:25 +00:00
|
|
|
|
$r['regrinfo']['admin'] = get_contact($r['regrinfo']['admin']);
|
|
|
|
|
$r['regrinfo']['admin']['handle'] = $handle;
|
|
|
|
|
|
2006-12-18 17:02:38 +00:00
|
|
|
|
$r['regrinfo']['registered'] = 'yes';
|
2006-01-24 16:02:42 +00:00
|
|
|
|
|
2005-08-26 06:46:49 +00:00
|
|
|
|
$r['regyinfo'] = array(
|
|
|
|
|
'referrer' => 'http://www.nic.es',
|
|
|
|
|
'registrar' => 'ES-NIC'
|
|
|
|
|
);
|
2003-09-09 18:13:09 +00:00
|
|
|
|
|
2005-08-26 06:46:49 +00:00
|
|
|
|
format_dates($r, 'ymd');
|
|
|
|
|
return $r;
|
|
|
|
|
}
|
2003-02-16 00:26:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|