*/ 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'); } }