0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Paypal
/
Block
/
[
Home
]
File: Iframe.php
<?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_Paypal * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * HSS iframe block * * @category Mage * @package Mage_Paypal * @author Magento Core Team <core@magentocommerce.com> */ class Mage_Paypal_Block_Iframe extends Mage_Payment_Block_Form { /** * Whether the block should be eventually rendered * * @var bool */ protected $_shouldRender = false; /** * Order object * * @var Mage_Sales_Model_Order */ protected $_order; /** * Payment method code * * @var string */ protected $_paymentMethodCode; /** * Current iframe block instance * * @var Mage_Payment_Block_Form */ protected $_block; /** * Internal constructor * Set info template for payment step * */ protected function _construct() { parent::_construct(); $paymentCode = $this->_getCheckout() ->getQuote() ->getPayment() ->getMethod(); if (in_array($paymentCode, $this->helper('paypal/hss')->getHssMethods())) { $this->_paymentMethodCode = $paymentCode; $templatePath = str_replace('_', '', $paymentCode); $templateFile = "paypal/{$templatePath}/iframe.phtml"; if (file_exists(Mage::getDesign()->getTemplateFilename($templateFile))) { $this->setTemplate($templateFile); } else { $this->setTemplate('paypal/hss/iframe.phtml'); } } } /** * Get current block instance * * @return Mage_Paypal_Block_Iframe */ protected function _getBlock() { if (!$this->_block) { $this->_block = $this->getAction() ->getLayout() ->createBlock('paypal/'.$this->_paymentMethodCode.'_iframe'); if (!$this->_block instanceof Mage_Paypal_Block_Iframe) { Mage::throwException('Invalid block type'); } } return $this->_block; } /** * Get order object * * @return Mage_Sales_Model_Order */ protected function _getOrder() { if (!$this->_order) { $incrementId = $this->_getCheckout()->getLastRealOrderId(); $this->_order = Mage::getModel('sales/order') ->loadByIncrementId($incrementId); } return $this->_order; } /** * Get frontend checkout session object * * @return Mage_Checkout_Model_Session */ protected function _getCheckout() { return Mage::getSingleton('checkout/session'); } /** * Before rendering html, check if is block rendering needed * * @return Mage_Core_Block_Abstract */ protected function _beforeToHtml() { if ($this->_getOrder()->getId() && $this->_getOrder()->getQuoteId() == $this->_getCheckout()->getLastQuoteId() && $this->_paymentMethodCode) { $this->_shouldRender = true; } if ($this->getGotoSection() || $this->getGotoSuccessPage()) { $this->_shouldRender = true; } return parent::_beforeToHtml(); } /** * Render the block if needed * * @return string */ protected function _toHtml() { if ($this->_isAfterPaymentSave()) { $this->setTemplate('paypal/hss/js.phtml'); return parent::_toHtml(); } if (!$this->_shouldRender) { return ''; } return parent::_toHtml(); } /** * Check whether block is rendering after save payment * * @return bool */ protected function _isAfterPaymentSave() { $quote = $this->_getCheckout()->getQuote(); if ($quote->getPayment()->getMethod() == $this->_paymentMethodCode && $quote->getIsActive() && $this->getTemplate() && $this->getRequest()->getActionName() == 'savePayment') { return true; } return false; } /** * Get iframe action URL * * @return string */ public function getFrameActionUrl() { return $this->_getBlock()->getFrameActionUrl(); } /** * Get secure token * * @return string */ public function getSecureToken() { return $this->_getBlock()->getSecureToken(); } /** * Get secure token ID * * @return string */ public function getSecureTokenId() { return $this->_getBlock()->getSecureTokenId(); } /** * Get payflow transaction URL * * @return string */ public function getTransactionUrl() { return $this->_getBlock()->getTransactionUrl(); } /** * Check sandbox mode * * @return bool */ public function isTestMode() { return $this->_getBlock()->isTestMode(); } }