| 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/Sales/controllers/Billing/ |
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_Sales
* @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)
*/
/**
* Billing agreements controller
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Sales_Billing_AgreementController extends Mage_Core_Controller_Front_Action
{
/**
* View billing agreements
*
*/
public function indexAction()
{
$this->_title($this->__('Billing Agreements'));
$this->loadLayout();
$this->_initLayoutMessages('customer/session');
$this->renderLayout();
}
/**
* Action predispatch
*
* Check customer authentication
*/
public function preDispatch()
{
parent::preDispatch();
if (!$this->getRequest()->isDispatched()) {
return;
}
if (!$this->_getSession()->authenticate($this)) {
$this->setFlag('', 'no-dispatch', true);
}
}
/**
* View billing agreement
*
*/
public function viewAction()
{
if (!$agreement = $this->_initAgreement()) {
return;
}
$this->_title($this->__('Billing Agreements'))
->_title($this->__('Billing Agreement # %s', $agreement->getReferenceId()));
$this->loadLayout();
$this->_initLayoutMessages('customer/session');
$navigationBlock = $this->getLayout()->getBlock('customer_account_navigation');
if ($navigationBlock) {
$navigationBlock->setActive('sales/billing_agreement/');
}
$this->renderLayout();
}
/**
* Wizard start action
*
*/
public function startWizardAction()
{
$agreement = Mage::getModel('sales/billing_agreement');
$paymentCode = $this->getRequest()->getParam('payment_method');
if ($paymentCode) {
try {
$agreement->setStoreId(Mage::app()->getStore()->getId())
->setMethodCode($paymentCode)
->setReturnUrl(Mage::getUrl('*/*/returnWizard', array('payment_method' => $paymentCode)))
->setCancelUrl(Mage::getUrl('*/*/cancelWizard', array('payment_method' => $paymentCode)));
$this->_redirectUrl($agreement->initToken());
return $this;
} catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
} catch (Exception $e) {
Mage::logException($e);
$this->_getSession()->addError($this->__('Failed to start billing agreement wizard.'));
}
}
$this->_redirect('*/*/');
}
/**
* Wizard return action
*
*/
public function returnWizardAction()
{
$agreement = Mage::getModel('sales/billing_agreement');
$paymentCode = $this->getRequest()->getParam('payment_method');
$token = $this->getRequest()->getParam('token');
if ($token && $paymentCode) {
try {
$agreement->setStoreId(Mage::app()->getStore()->getId())
->setToken($token)
->setMethodCode($paymentCode)
->setCustomer(Mage::getSingleton('customer/session')->getCustomer())
->place();
$this->_getSession()->addSuccess(
$this->__('The billing agreement "%s" has been created.', $agreement->getReferenceId())
);
$this->_redirect('*/*/view', array('agreement' => $agreement->getId()));
return;
} catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
} catch (Exception $e) {
Mage::logException($e);
$this->_getSession()->addError($this->__('Failed to finish billing agreement wizard.'));
}
$this->_redirect('*/*/index');
}
}
/**
* Wizard cancel action
*
*/
public function cancelWizardAction()
{
$this->_redirect('*/*/index');
}
/**
* Cancel action
* Set billing agreement status to 'Canceled'
*
*/
public function cancelAction()
{
$agreement = $this->_initAgreement();
if ($agreement && $agreement->canCancel()) {
try {
$agreement->cancel();
$this->_getSession()->addNotice($this->__('The billing agreement "%s" has been canceled.', $agreement->getReferenceId()));
} catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
} catch (Exception $e) {
Mage::logException($e);
$this->_getSession()->addError($this->__('Failed to cancel the billing agreement.'));
}
}
$this->_redirect('*/*/view', array('_current' => true));
}
/**
* Init billing agreement model from request
*
* @return Mage_Sales_Model_Billing_Agreement
*/
protected function _initAgreement()
{
$agreementId = $this->getRequest()->getParam('agreement');
if ($agreementId) {
$billingAgreement = Mage::getModel('sales/billing_agreement')->load($agreementId);
if (!$billingAgreement->getAgreementId()) {
$this->_getSession()->addError($this->__('Wrong billing agreement ID specified.'));
$this->_redirect('*/*/');
return false;
}
}
Mage::register('current_billing_agreement', $billingAgreement);
return $billingAgreement;
}
/**
* Retrieve customer session model
*
* @return Mage_Customer_Model_Session
*/
protected function _getSession()
{
return Mage::getSingleton('customer/session');
}
}