| 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/Paypal/Model/ |
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_Paypal
* @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)
*/
/**
*
* PayPal Express Module
*/
class Mage_Paypal_Model_Express extends Mage_Payment_Model_Method_Abstract
implements Mage_Payment_Model_Recurring_Profile_MethodInterface
{
protected $_code = Mage_Paypal_Model_Config::METHOD_WPP_EXPRESS;
protected $_formBlockType = 'paypal/express_form';
protected $_infoBlockType = 'paypal/payment_info';
/**
* Website Payments Pro instance type
*
* @var $_proType string
*/
protected $_proType = 'paypal/pro';
/**
* Availability options
*/
protected $_isGateway = false;
protected $_canAuthorize = true;
protected $_canCapture = true;
protected $_canCapturePartial = true;
protected $_canRefund = true;
protected $_canRefundInvoicePartial = true;
protected $_canVoid = true;
protected $_canUseInternal = false;
protected $_canUseCheckout = true;
protected $_canUseForMultishipping = false;
protected $_canFetchTransactionInfo = true;
protected $_canCreateBillingAgreement = true;
protected $_canReviewPayment = true;
/**
* Website Payments Pro instance
*
* @var Mage_Paypal_Model_Pro
*/
protected $_pro = null;
public function __construct($params = array())
{
$proInstance = array_shift($params);
if ($proInstance && ($proInstance instanceof Mage_Paypal_Model_Pro)) {
$this->_pro = $proInstance;
} else {
$this->_pro = Mage::getModel($this->_proType);
}
$this->_pro->setMethod($this->_code);
}
/**
* Store setter
* Also updates store ID in config object
*
* @param Mage_Core_Model_Store|int $store
*/
public function setStore($store)
{
$this->setData('store', $store);
if (null === $store) {
$store = Mage::app()->getStore()->getId();
}
$this->_pro->getConfig()->setStoreId(is_object($store) ? $store->getId() : $store);
return $this;
}
/**
* Whether method is available for specified currency
*
* @param string $currencyCode
* @return bool
*/
public function canUseForCurrency($currencyCode)
{
return $this->_pro->getConfig()->isCurrencyCodeSupported($currencyCode);
}
/**
* Payment action getter compatible with payment model
*
* @see Mage_Sales_Model_Payment::place()
* @return string
*/
public function getConfigPaymentAction()
{
return $this->_pro->getConfig()->getPaymentAction();
}
/**
* Check whether payment method can be used
* @param Mage_Sales_Model_Quote
* @return bool
*/
public function isAvailable($quote = null)
{
if ($this->_pro->getConfig()->isMethodAvailable() && parent::isAvailable($quote)) {
return true;
}
return false;
}
/**
* Custom getter for payment configuration
*
* @param string $field
* @param int $storeId
* @return mixed
*/
public function getConfigData($field, $storeId = null)
{
return $this->_pro->getConfig()->$field;
}
/**
* Authorize payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return Mage_Paypal_Model_Express
*/
public function authorize(Varien_Object $payment, $amount)
{
return $this->_placeOrder($payment, $amount);
}
/**
* Void payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return Mage_Paypal_Model_Express
*/
public function void(Varien_Object $payment)
{
$this->_pro->void($payment);
return $this;
}
/**
* Capture payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return Mage_Paypal_Model_Express
*/
public function capture(Varien_Object $payment, $amount)
{
if (false === $this->_pro->capture($payment, $amount)) {
$this->_placeOrder($payment, $amount);
}
return $this;
}
/**
* Refund capture
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return Mage_Paypal_Model_Express
*/
public function refund(Varien_Object $payment, $amount)
{
$this->_pro->refund($payment, $amount);
return $this;
}
/**
* Cancel payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return Mage_Paypal_Model_Express
*/
public function cancel(Varien_Object $payment)
{
$this->_pro->cancel($payment);
return $this;
}
/**
* Whether payment can be reviewed
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return bool
*/
public function canReviewPayment(Mage_Payment_Model_Info $payment)
{
return parent::canReviewPayment($payment) && $this->_pro->canReviewPayment($payment);
}
/**
* Attempt to accept a pending payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return bool
*/
public function acceptPayment(Mage_Payment_Model_Info $payment)
{
parent::acceptPayment($payment);
return $this->_pro->reviewPayment($payment, Mage_Paypal_Model_Pro::PAYMENT_REVIEW_ACCEPT);
}
/**
* Attempt to deny a pending payment
*
* @param Mage_Sales_Model_Order_Payment $payment
* @return bool
*/
public function denyPayment(Mage_Payment_Model_Info $payment)
{
parent::denyPayment($payment);
return $this->_pro->reviewPayment($payment, Mage_Paypal_Model_Pro::PAYMENT_REVIEW_DENY);
}
/**
* Checkout redirect URL getter for onepage checkout (hardcode)
*
* @see Mage_Checkout_OnepageController::savePaymentAction()
* @see Mage_Sales_Model_Quote_Payment::getCheckoutRedirectUrl()
* @return string
*/
public function getCheckoutRedirectUrl()
{
return Mage::getUrl('paypal/express/start');
}
/**
* Fetch transaction details info
*
* @param Mage_Payment_Model_Info $payment
* @param string $transactionId
* @return array
*/
public function fetchTransactionInfo(Mage_Payment_Model_Info $payment, $transactionId)
{
return $this->_pro->fetchTransactionInfo($payment, $transactionId);
}
/**
* Validate RP data
*
* @param Mage_Payment_Model_Recurring_Profile $profile
*/
public function validateRecurringProfile(Mage_Payment_Model_Recurring_Profile $profile)
{
return $this->_pro->validateRecurringProfile($profile);
}
/**
* Submit RP to the gateway
*
* @param Mage_Payment_Model_Recurring_Profile $profile
* @param Mage_Payment_Model_Info $paymentInfo
*/
public function submitRecurringProfile(Mage_Payment_Model_Recurring_Profile $profile, Mage_Payment_Model_Info $paymentInfo)
{
$token = $paymentInfo->getAdditionalInformation(Mage_Paypal_Model_Express_Checkout::PAYMENT_INFO_TRANSPORT_TOKEN);
$profile->setToken($token);
$this->_pro->submitRecurringProfile($profile, $paymentInfo);
}
/**
* Fetch RP details
*
* @param string $referenceId
* @param Varien_Object $result
*/
public function getRecurringProfileDetails($referenceId, Varien_Object $result)
{
return $this->_pro->getRecurringProfileDetails($referenceId, $result);
}
/**
* Whether can get recurring profile details
*/
public function canGetRecurringProfileDetails()
{
return true;
}
/**
* Update RP data
*
* @param Mage_Payment_Model_Recurring_Profile $profile
*/
public function updateRecurringProfile(Mage_Payment_Model_Recurring_Profile $profile)
{
return $this->_pro->updateRecurringProfile($profile);
}
/**
* Manage status
*
* @param Mage_Payment_Model_Recurring_Profile $profile
*/
public function updateRecurringProfileStatus(Mage_Payment_Model_Recurring_Profile $profile)
{
return $this->_pro->updateRecurringProfile($profile);
}
/**
* Assign data to info model instance
*
* @param mixed $data
* @return Mage_Payment_Model_Info
*/
public function assignData($data)
{
$result = parent::assignData($data);
$key = Mage_Paypal_Model_Express_Checkout::PAYMENT_INFO_TRANSPORT_BILLING_AGREEMENT;
if (is_array($data)) {
$this->getInfoInstance()->setAdditionalInformation($key, isset($data[$key]) ? $data[$key] : null);
}
elseif ($data instanceof Varien_Object) {
$this->getInfoInstance()->setAdditionalInformation($key, $data->getData($key));
}
return $result;
}
/**
* Place an order with authorization or capture action
*
* @param Mage_Sales_Model_Order_Payment $payment
* @param float $amount
* @return Mage_Paypal_Model_Express
*/
protected function _placeOrder(Mage_Sales_Model_Order_Payment $payment, $amount)
{
$order = $payment->getOrder();
// prepare api call
$token = $payment->getAdditionalInformation(Mage_Paypal_Model_Express_Checkout::PAYMENT_INFO_TRANSPORT_TOKEN);
$api = $this->_pro->getApi()
->setToken($token)
->setPayerId($payment->getAdditionalInformation(Mage_Paypal_Model_Express_Checkout::PAYMENT_INFO_TRANSPORT_PAYER_ID))
->setAmount($amount)
->setPaymentAction($this->_pro->getConfig()->paymentAction)
->setNotifyUrl(Mage::getUrl('paypal/ipn/'))
->setInvNum($order->getIncrementId())
->setCurrencyCode($order->getBaseCurrencyCode())
;
// add line items
if ($this->_pro->getConfig()->lineItemsEnabled) {
list($items, $totals) = Mage::helper('paypal')->prepareLineItems($order);
if (Mage::helper('paypal')->areCartLineItemsValid($items, $totals, $amount)) {
$api->setLineItems($items)->setLineItemTotals($totals);
}
}
// call api and get details from it
$api->callDoExpressCheckoutPayment();
$this->_importToPayment($api, $payment);
return $this;
}
/**
* Import payment info to payment
*
* @param Mage_Paypal_Model_Api_Nvp
* @param Mage_Sales_Model_Order_Payment
*/
protected function _importToPayment($api, $payment)
{
$payment->setTransactionId($api->getTransactionId())->setIsTransactionClosed(0)
->setAdditionalInformation(Mage_Paypal_Model_Express_Checkout::PAYMENT_INFO_TRANSPORT_REDIRECT,
$api->getRedirectRequired() || $api->getRedirectRequested()
);
if ($api->getBillingAgreementId()) {
$payment->setBillingAgreementData(array(
'billing_agreement_id' => $api->getBillingAgreementId(),
'method_code' => Mage_Paypal_Model_Config::METHOD_BILLING_AGREEMENT
));
}
$this->_pro->importPaymentInfo($api, $payment);
}
}