| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Centinel/Model/State/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Centinel
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Abstract Validation State Model for JCB
*/
class Mage_Centinel_Model_State_Jcb extends Mage_Centinel_Model_StateAbstract
{
/**
* Analyse lookup`s results. If lookup is successful return true and false if it failure
* Result depends from flag self::getIsModeStrict()
*
* @return bool
*/
public function isLookupSuccessful()
{
if ($this->_isLookupStrictSuccessful() || $this->_isLookupSoftSuccessful()) {
return true;
} else {
return false;
}
}
/**
* Analyse lookup`s results. If it has require params for authenticate, return true
*
* @return bool
*/
public function isAuthenticateAllowed()
{
return $this->_isLookupStrictSuccessful() && is_null($this->getAuthenticateEciFlag());
}
/**
* Analyse authenticate`s results. If authenticate is successful return true and false if it failure
* Result depends from flag self::getIsModeStrict()
*
* @return bool
*/
public function isAuthenticateSuccessful()
{
//Test cases 5-9
if ($this->_isLookupSoftSuccessful()) {
return true;
}
$paResStatus = $this->getAuthenticatePaResStatus();
$eciFlag = $this->getAuthenticateEciFlag();
$xid = $this->getAuthenticateXid();
$cavv = $this->getAuthenticateCavv();
$errorNo = $this->getAuthenticateErrorNo();
$signatureVerification = $this->getAuthenticateSignatureVerification();
//Test cases 1-4, 10-11
if ($this->_isLookupStrictSuccessful()) {
if ($paResStatus == 'Y' && $eciFlag == '05' && $xid != '' && $cavv != '' && $errorNo == '0') {
//Test case 1
if ($signatureVerification == 'Y') {
return true;
}
//Test case 2
if ($signatureVerification == 'N') {
return false;
}
}
//Test case 3
if ($paResStatus == 'N' && $signatureVerification == 'Y' && $eciFlag == '07' &&
$xid != '' && $cavv == '' && $errorNo == '0') {
return false;
}
//Test case 4
if ($paResStatus == 'U' && $signatureVerification == 'Y' && $eciFlag == '07' &&
$xid != '' && $cavv == '' && $errorNo == '0') {
if ($this->getIsModeStrict()) {
return false;
} else {
return true;
}
}
//Test case 5
if ($paResStatus == 'U' && $signatureVerification == 'Y' && $eciFlag == '07' &&
$xid != '' && $cavv == '' && $errorNo == '') {
if ($this->getIsModeStrict()) {
return false;
} else {
return true;
}
}
//Test case 10
if ($paResStatus == '' && $signatureVerification == '' && $eciFlag == '07' &&
$xid == '' && $cavv == '' && $errorNo != '') {
return false;
}
//Test case 11
if ($paResStatus == 'A' && $signatureVerification == 'Y' && $eciFlag == '06' &&
$xid != '' && $cavv != '' && $errorNo == '0') {
return true;
}
}
return false;
}
/**
* Analyse lookup`s results. If lookup is strict successful return true
*
* @return bool
*/
private function _isLookupStrictSuccessful()
{
//Test cases 1-4, 6, 10-11
if ($this->getLookupEnrolled() == 'Y' &&
$this->getLookupAcsUrl() != '' &&
$this->getLookupPayload() != '' &&
$this->getLookupErrorNo() == '0') {
return true;
}
return false;
}
/**
* Analyse lookup`s results. If lookup is soft successful return true
*
* @return bool
*/
private function _isLookupSoftSuccessful()
{
$acsUrl = $this->getLookupAcsUrl();
$payload = $this->getLookupPayload();
$errorNo = $this->getLookupErrorNo();
$enrolled = $this->getLookupEnrolled();
//Test cases 5
if ($enrolled == 'N/A' && $acsUrl == '' && $payload == '' && $errorNo == '0') {
return true;
}
//Test case 7
if ($enrolled == 'U' && $acsUrl == '' && $payload == '' && $errorNo == '0') {
return true;
}
//Test cases 8,9
if ($enrolled == '' && $acsUrl == '' && $payload == '' && $errorNo != '') {
return true;
}
return false;
}
}