%PDF- %PDF-
| Direktori : /www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/net/protocols/ |
| Current File : //www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/net/protocols/poppassd.php |
<?php
/*
* Copyright 2004-2014, AfterLogic Corp.
* Licensed under AGPLv3 license or AfterLogic license
* if commercial version of the product was purchased.
* See the LICENSE file for a full license statement.
*/
CApi::Inc('common.net.abstract');
/**
* @package Api
* @subpackage Net
*/
class CApiPoppassdProtocol extends CApiNetAbstract
{
/**
* @return bool
*/
public function Connect()
{
$bResult = false;
if (parent::Connect())
{
$bResult = $this->CheckResponse($this->GetNextLine(), 0);
}
return $bResult;
}
/**
* @param string $sLogin
* @param string $sPassword
* @return bool
*/
public function Login($sLogin, $sPassword)
{
return $this->SendCommand('user '.$sLogin, array(), 1) && $this->SendCommand('pass '.$sPassword, array($sPassword), 1);
}
/**
* @param string $sLogin
* @param string $sPassword
* @return bool
*/
public function ConnectAndLogin($sLogin, $sPassword)
{
return $this->Connect() && $this->Login($sLogin, $sPassword);
}
/**
* @return bool
*/
public function Disconnect()
{
return parent::Disconnect();
}
/**
* @return bool
*/
public function Logout()
{
return $this->SendCommand('quit', array(), 0);
}
/**
* @return bool
*/
public function LogoutAndDisconnect()
{
return $this->Logout() && $this->Disconnect();
}
/**
* @param string $sNewPassword
* @return bool
*/
public function NewPass($sNewPassword)
{
return $this->SendCommand('newpass '.$sNewPassword, array($sNewPassword), 0);
}
/**
* @param string $sCmd
* @return bool
*/
public function SendLine($sCmd)
{
return $this->WriteLine($sCmd);
}
/**
* @param string $sCmd
* @param array $aHideValues = array()
* @param int $iCheckType = 0
* @return bool
*/
public function SendCommand($sCmd, $aHideValues = array(), $iCheckType = 0)
{
if ($this->WriteLine($sCmd, $aHideValues))
{
return $this->CheckResponse($this->GetNextLine(), $iCheckType);
}
return false;
}
/**
* @return string
*/
public function GetNextLine()
{
return $this->ReadLine();
}
/**
* @param string $sResponse
* @param int $iCheckType = 0
* @return bool
*/
public function CheckResponse($sResponse, $iCheckType = 0)
{
switch ($iCheckType)
{
case 0:
return (bool) preg_match('/^2\d\d/', $sResponse);
break;
case 1:
return (bool) preg_match('/^[23]\d\d/', $sResponse);
break;
}
return false;
}
}