<?
/*
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.
*/

/* cira.whois        1.0        by Mark Jeftovic <markjr@easydns.com>  */
/*		     2.0	David Saez <david@ols.es> */
/*				standarized object model */

if(!defined("__CIRA_HANDLER__")) define("__CIRA_HANDLER__",1);

include_once("generic2.whois");

class cira extends Whois {

function cira($data) {
   $this->result=$this->parse($data);
}

function parse ($data_str) {

$items=array( "owner.organization"  => "Organization:",
              "domain.name"  => "Subdomain:",
              "registrar" => "Registrar:",
              "domain.created" => "Date-Approved:",
              "domain.changed" => "Date-Modified:",
	      "domain.expires" => "Renewal-Date:",
              "domain.desc" => "Description:",
              "admin.name" => "Admin-Name:",
              "admin.address." => "Admin-Postal:",
              "admin.phone" => "Admin-Phone:",
              "admin.email" => "Admin-Mailbox:",
	      "admin.fax" => "Admin-Fax:",	
              "tech.name" => "Tech-Name:",
              "tech.address." => "Tech-Postal:",
              "tech.phone" => "Tech-Phone:",
              "tech.email" => "Tech-Mailbox:",
	      "tech.fax" => "Tech-Fax:",
	      "domain.nserver.0" => "NS1-Hostname:",
	      "domain.nserver.1" => "NS2-Hostname:",
	      "domain.nserver.2" => "NS3-Hostname:",
	      "domain.nserver.3" => "NS4-Hostname:",
	      "domain.nserver.4" => "NS5-Hostname:",
	      "domain.nserver.5" => "NS6-Hostname:",
              "domain.status" => "Status:"
              );

$r["rawdata"]=$data_str["rawdata"];        

$r["regrinfo"]=generic_whois($data_str["rawdata"],$items);

$r["regyinfo"]=array( "whois"=>"whois.cira.ca",
                      "referrer"=>"http://www.easydns.ca" );

$r["regyinfo"]["registrar"]=$r["regrinfo"]["registrar"];
unset($r["regrinfo"]["registrar"]);

return($r);
}

}
