addded .is handler

This commit is contained in:
sparc 2004-04-24 17:55:40 +00:00
parent 47e50418e8
commit a66dbb5bb1
2 changed files with 71 additions and 0 deletions

70
isnic.whois Normal file
View file

@ -0,0 +1,70 @@
<?
/*
Whois2.php PHP classes to conduct whois queries
Copyright (C)1999,2000 easyDNS Technologies Inc. & Mark Jeftovic
Maintained by Mark Jeftovic <markjr@easydns.com>
For the most recent version of this package:
http://www.easydns.com/~markjr/whois2/
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.
*/
/* isnic.whois 1.00 David Saez <david@ols.es> */
if(!defined("__ISNIC_HANDLER__")) define("__ISNIC_HANDLER__",1);
include_once("generic.whois");
class isnic extends Whois
{
function isnic($data) { $this->result=$this->parse($data); }
function parse ($data_str) {
$translate = array (
"fax-no" => "fax",
"e-mail" => "email",
"nic-hdl" => "handle",
"person" => "name"
);
$contacts = array (
"owner-c" => "owner",
"admin-c" => "admin",
"tech-c" => "tech",
"billing-c" => "billing",
"zone-c" => "zone"
);
$r["rawdata"]=$data_str["rawdata"];
$r["regyinfo"]=array("referrer"=>"http://www.isnic.is","registrar"=>"ISNIC");
$reg=generic_whois($data_str["rawdata"],$translate,$contacts);
if (isset($reg['domain']['descr'])) {
$reg['owner']['name'] = array_shift($reg['domain']['descr']);
$reg['owner']['address'] = $reg['domain']['descr'];
unset($reg['domain']['descr']);
}
$r["regrinfo"]=$reg;
return($r);
}
}
?>

View file

@ -45,6 +45,7 @@ $this->DATA = array(
"fm" => "dotfm", "fm" => "dotfm",
"hu" => "hunic", "hu" => "hunic",
"info" => "info", "info" => "info",
"is" => "isnic",
"li" => "chnic", "li" => "chnic",
"lu" => "lunic", "lu" => "lunic",
"mx" => "mxnic", "mx" => "mxnic",