<?php
$_pluginInfo=array(
'name'=>'Mail.com',
'version'=>'1.0.7',
'description'=>"Get the contacts from a Mail.com account",
'base_version'=>'1.6.0',
'type'=>'email',
'check_url'=>'http://www.mail.com'
);
/**
* Mail.com
*
* Import user's contacts from Mail.com's AddressBook.
*
* @author OpenInviter
* @version 1.0.7
*/
class mail_com extends OpenInviter_Base
{
private $login_ok=false;
public $showContacts=true;
public $requirement='email';
public $internalError=false;
public $allowed_domains=false;
public $debug_array=array(
'initial_get'=>'name="mailcom"',
'login_post'=>'mailcomframe',
'inbox'=>'outblaze',
'export_page'=>'addrURL',
'post_contacts'=>'csv',
'file_contacts'=>'Title'
);
/**
* Login function
*
* Makes all the necessary requests to authenticate
* the current user to the server.
*
* @param string $user The current user.
* @param string $pass The password for the current user.
* @return bool TRUE if the current user was authenticated successfully, FALSE otherwise.
*/
public function login($user,$pass)
{
$this->resetDebugger();
$this->service='mail_com';
$this->service_user=$user;
$this->service_password=$pass;
$this->curl=$this->init();
//go to mail.com
$res=$this->get("http://www.mail.com/",true);
if ($this->checkResponse('initial_get',$res))
$this->updateDebugBuffer('initial_get',"http://www.mail.com/",'GET');
else
{
$this->updateDebugBuffer('initial_get',"http://www.mail.com/",'GET',false);
$this->debugRequest();
$this->stopPlugin();
return false;
}
//get form action and post elements and post to post action
$form_action=$this->getElementString($res,'name="mailcom" action="','"');
$post_elements=array("login"=>"{$user}","password"=>"{$pass}","redirlogin"=>1,"siteselected"=>"normal");
$res=$this->post($form_action,$post_elements,true);
if ($this->checkResponse('login_post',$res))
$this->updateDebugBuffer('login_post',"{$form_action}",'POST',true,$post_elements);
else
{
$this->updateDebugBuffer('login_post',"{$form_action}",'POST',false,$post_elements);
$this->debugRequest();
$this->stopPlugin();
return false;
}
//get the redirect
$url_redirect=$this->getElementDOM($res,"//frame[@name='mailcomframe']",'attribute','src');
$res=$this->get($url_redirect[0],true);
$this->login_ok=$url_redirect[0];
return true;
}
/**
* Get the current user's contacts
*
* Makes all the necesarry requests to import
* the current user's contacts
*
* @return mixed The array if contacts if importing was successful, FALSE otherwise.
*/
public function getMyContacts()
{
if (!$this->login_ok)
{
$this->debugRequest();
$this->stopPlugin();
return false;
}
else $url=$this->login_ok;
//go to frame url
$res=$this->get($url,true);
if ($this->checkResponse('inbox',$res))
$this->updateDebugBuffer('login_post',"{$url}",'GET');
else
{
$this->updateDebugBuffer('login_post',"{$url}",'GET',false);
$this->debugRequest();
$this->stopPlugin();
return false;
}
$url_contacts=$this->getElementDOM($res,"//a[@id='addrURL']",'attribute','href');
//get the url contacts and go to this url
$res=$this->get($url_contacts[0],true);
if ($this->checkResponse("export_page",$res))
{
$url_export="";
$doc=new DOMDocument();libxml_use_internal_errors(true);if (!empty($res)) $doc->loadHTML($res);libxml_use_internal_errors(false);
$xpath=new DOMXPath($doc);$query="//a[@href]";$data=$xpath->query($query);
foreach($data as $val)
if (strstr($val->nodeValue,"Import/Export")) $url_export=$val->getAttribute('href')."&gab=1";
$this->updateDebugBuffer('post_contacts',"{$url_contacts[0]}",'GET');
}
else
{
$this->updateDebugBuffer('post_contacts',"{$url_contacts[0]}",'GET',false);
$this->debugRequest();
$this->stopPlugin();
return false;
}
$post_elements=array("showexport"=>"showexport","action"=>"export","format"=>"csv");
//get the post varibles and send post to file export/import url
$res=$this->post($url_export,$post_elements);
if ($this->checkResponse('file_contacts',$res))
{
$temp=$this->parseCSV($res);
$contacts=array();
foreach ($temp as $values)
{
$name=$values['0'].(empty($values['1'])?'':(empty($values['0'])?'':'-')."{$values['1']}").(empty($values['3'])?'':" \"{$values['3']}\"").(empty($values['2'])?'':' '.$values['2']);
if (!empty($values['4']))
$contacts[$values['4']]=(empty($name)?$values['4']:$name);
if (!empty($values['12']))
$contacts[$values['12']]=(empty($name)?$values['12']:$name);
if (!empty($values['13']))
$contacts[$values['13']]=(empty($name)?$values['13']:$name);
}
$this->updateDebugBuffer('login_post',"{$url_export}",'POST',true,$post_elements);
}
else
{
$this->updateDebugBuffer('login_post',"{$url_export}",'POST',false,$post_elements);
$this->debugRequest();
$this->stopPlugin();
return false;
}
return $contacts;
}
/**
* Terminate session
*
* Terminates the current user's session,
* debugs the request and reset's the internal
* debudder.
*
* @return bool TRUE if the session was terminated successfully, FALSE otherwise.
*/
public function logout()
{
//go to logout url
$res=$this->get("http://www.mail.com/logout.aspx");
$this->debugRequest();
$this->resetDebugger();
$this->stopPlugin();
return true;
}
}
?>