We will work on Apr 26th (Saturday) and will be off from Apr 30th (Wednesday) until May 2nd (Friday) for public holiday in our country

CheckoutDataBuilder.php 9.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?php
/**
 *                       ######
 *                       ######
 * ############    ####( ######  #####. ######  ############   ############
 * #############  #####( ######  #####. ######  #############  #############
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
 * #############  #############  #############  #############  #####  ######
 *  ############   ############  #############   ############  #####  ######
 *                                      ######
 *                               #############
 *                               ############
 *
 * Adyen Payment module (https://www.adyen.com/)
 *
 * Copyright (c) 2015 Adyen BV (https://www.adyen.com/)
 * See LICENSE.txt for license details.
 *
 * Author: Adyen <magento@adyen.com>
 */

namespace Adyen\Payment\Gateway\Request;

use Magento\Payment\Gateway\Request\BuilderInterface;
use Adyen\Payment\Observer\AdyenHppDataAssignObserver;
28
use Adyen\Payment\Observer\AdyenBoletoDataAssignObserver;
29 30 31

class CheckoutDataBuilder implements BuilderInterface
{
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    /**
     * @var \Adyen\Payment\Helper\Data
     */
    private $adyenHelper;

    /**
     * @var \Magento\Store\Model\StoreManagerInterface
     */
    private $storeManager;

    /**
     * @var \Magento\Checkout\Model\Session
     */
    private $checkoutSession;

    /**
     * @var \Magento\Quote\Model\Quote
     */
    private $quote;
51 52 53 54 55 56

	/**
	 * @var \Magento\Tax\Model\Config
	 */
	protected $taxConfig;

57 58 59 60 61 62 63 64 65

	/**
	 * CheckoutDataBuilder constructor.
	 *
	 * @param \Adyen\Payment\Helper\Data $adyenHelper
	 * @param \Magento\Store\Model\StoreManagerInterface $storeManager
	 * @param \Magento\Checkout\Model\Session $checkoutSession
	 * @param \Magento\Tax\Model\Config $taxConfig
	 */
66 67 68 69 70
	public function __construct(
		\Adyen\Payment\Helper\Data $adyenHelper,
		\Magento\Store\Model\StoreManagerInterface $storeManager,
		\Magento\Checkout\Model\Session $checkoutSession,
		\Magento\Tax\Model\Config $taxConfig
71 72 73 74 75 76 77 78
	)
	{
		$this->adyenHelper = $adyenHelper;
		$this->storeManager = $storeManager;
		$this->checkoutSession = $checkoutSession;
		$this->quote = $checkoutSession->getQuote();
		$this->taxConfig = $taxConfig;
	}
79 80 81 82 83 84 85 86 87 88 89

	/**
	 * @param array $buildSubject
	 * @return mixed
	 */
	public function build(array $buildSubject)
	{
		/** @var \Magento\Payment\Gateway\Data\PaymentDataObject $paymentDataObject */
		$paymentDataObject =\Magento\Payment\Gateway\Helper\SubjectReader::readPayment($buildSubject);
		$payment = $paymentDataObject->getPayment();
		$order = $payment->getOrder();
alexandros's avatar
alexandros committed
90
		$storeId = $order->getStoreId();
91 92
		$request = [];

93 94
        // do not send email
        $order->setCanSendNewEmailFlag(false);
95

96
        $request['paymentMethod']['type'] = $payment->getAdditionalInformation(AdyenHppDataAssignObserver::BRAND_CODE);
97

98 99 100 101
        // Additional data for payment methods with issuer list
        if ($payment->getAdditionalInformation(AdyenHppDataAssignObserver::ISSUER_ID)) {
            $request['paymentMethod']['issuer'] = $payment->getAdditionalInformation(AdyenHppDataAssignObserver::ISSUER_ID);
        }
102

103
        $request['returnUrl'] = $this->storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_LINK) . 'adyen/process/result';
104 105 106 107 108 109

		// Additional data for open invoice payment
		if ($payment->getAdditionalInformation("gender")) {
			$order->setCustomerGender(\Adyen\Payment\Model\Gender::getMagentoGenderFromAdyenGender(
				$payment->getAdditionalInformation("gender"))
			);
110
			$request['paymentMethod']['personalDetails']['gender'] = $payment->getAdditionalInformation("gender");
111 112
		}

113 114
        if ($payment->getAdditionalInformation("dob")) {
            $order->setCustomerDob($payment->getAdditionalInformation("dob"));
115

116
			$request['paymentMethod']['personalDetails']['dateOfBirth']= $this->adyenHelper->formatDate($payment->getAdditionalInformation("dob"), 'Y-m-d') ;
117 118 119 120
		}

		if ($payment->getAdditionalInformation("telephone")) {
			$order->getBillingAddress()->setTelephone($payment->getAdditionalInformation("telephone"));
121
			$request['paymentMethod']['personalDetails']['telephoneNumber']= $payment->getAdditionalInformation("telephone");
122 123
		}

124 125 126 127
        // Additional data for sepa direct debit
        if ($payment->getAdditionalInformation("ownerName")) {
            $request['paymentMethod']['sepa.ownerName'] = $payment->getAdditionalInformation("ownerName");
        }
128

129 130 131
        if ($payment->getAdditionalInformation("ibanNumber")) {
            $request['paymentMethod']['sepa.ibanNumber'] = $payment->getAdditionalInformation("ibanNumber");
        }
132 133

		if ($this->adyenHelper->isPaymentMethodOpenInvoiceMethod(
134
			$payment->getAdditionalInformation(AdyenHppDataAssignObserver::BRAND_CODE)
135 136 137
		) || $this->adyenHelper->isPaymentMethodAfterpayTouchMethod(
				$payment->getAdditionalInformation(AdyenHppDataAssignObserver::BRAND_CODE)
			)) {
138 139 140 141
			$openInvoiceFields = $this->getOpenInvoiceData($order);
			$request = array_merge($request, $openInvoiceFields);
		}

alexandros's avatar
alexandros committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
        //Boleto data
        if ($payment->getAdditionalInformation("social_security_number")) {
            $request['socialSecurityNumber'] = $payment->getAdditionalInformation("social_security_number");
        }

        if ($payment->getAdditionalInformation("firstname")) {
            $request['shopperName']['firstName'] = $payment->getAdditionalInformation("firstname");
        }

        if ($payment->getAdditionalInformation("lastName")) {
            $request['shopperName']['lastName'] = $payment->getAdditionalInformation("lastName");
        }

        if ($payment->getAdditionalInformation(AdyenBoletoDataAssignObserver::BOLETO_TYPE)) {
            $boletoTypes = $this->adyenHelper->getAdyenBoletoConfigData('boletotypes');
            $boletoTypes = explode(',', $boletoTypes);

            if (count($boletoTypes) == 1) {
                $request['selectedBrand'] = $boletoTypes[0];
                $request['paymentMethod']['type'] = $boletoTypes[0];
            } else {
                $request['selectedBrand'] = $payment->getAdditionalInformation("boleto_type");
                $request['paymentMethod']['type'] = $payment->getAdditionalInformation("boleto_type");
            }

            $deliveryDays = (int)$this->adyenHelper->getAdyenBoletoConfigData("delivery_days", $storeId);
            $deliveryDays = (!empty($deliveryDays)) ? $deliveryDays : 5;
            $deliveryDate = date(
                "Y-m-d\TH:i:s ",
                mktime(
                    date("H"),
                    date("i"),
                    date("s"),
                    date("m"),
                    date("j") + $deliveryDays,
                    date("Y")
                )
            );

            $request['deliveryDate'] = $deliveryDate;

183 184
            $order->setCanSendNewEmailFlag(true);
        }
alexandros's avatar
alexandros committed
185 186
        return $request;
    }
187

188 189 190 191 192 193 194 195 196
    /**
     * @param $formFields
     * @return mixed
     */
    protected function getOpenInvoiceData($order)
    {
        $formFields = [
            'lineItems' => []
        ];
197

198
        $currency = $this->quote->getCurrency();
199

200
        $discountAmount = 0;
201

202
        foreach ($this->quote->getAllVisibleItems() as $item) {
203

204
            $numberOfItems = (int)$item->getQtyOrdered();
205

206 207
            // Summarize the discount amount item by item
            $discountAmount += $item->getDiscountAmount();
208

209
            $priceExcludingTax = $item->getPriceInclTax() - $item->getTaxAmount();
210

211 212 213 214 215 216 217 218 219 220
            $formFields['lineItems'][] = [
                'amountExcludingTax' => $priceExcludingTax,
                'taxAmount' => $item->getTaxAmount(),
                'description' => $item->getName(),
                'id' => $item->getId(),
                'quantity' => $item->getQty(),
                'taxCategory' => $item->getProduct()->getAttributeText('tax_class_id'),
                'taxPercentage' => $item->getTaxPercent()
            ];
        }
221

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
        // Discount cost
        if ($discountAmount != 0) {

            $description = __('Total Discount');
            $itemAmount = $this->adyenHelper->formatAmount($discountAmount, $currency);
            $itemVatAmount = "0";
            $itemVatPercentage = "0";
            $numberOfItems = 1;

            $formFields['lineItems'][] = [
                'amountExcludingTax' => $itemAmount,
                'taxAmount' => $itemVatAmount,
                'description' => $description,
                'quantity' => $numberOfItems,
                'taxCategory' => 'None',
                'taxPercentage' => $itemVatPercentage
            ];
        }
240

241 242
        // Shipping cost
        if ($this->quote->getShippingAddress()->getShippingAmount() > 0 || $this->quote->getShippingAddress()->getShippingTaxAmount() > 0) {
243

244
            $priceExcludingTax = $this->quote->getShippingAddress()->getShippingAmount() - $this->quote->getShippingAddress()->getShippingTaxAmount();
245

246
            $taxClassId = $this->taxConfig->getShippingTaxClass($this->storeManager->getStore()->getId());
247

248 249 250 251 252 253 254 255
            $formFields['lineItems'][] = [
                'amountExcludingTax' => $priceExcludingTax,
                'taxAmount' => $this->quote->getShippingAddress()->getShippingTaxAmount(),
                'description' => $order->getShippingDescription(),
                'quantity' => 1,
                'taxPercentage' => $this->quote->getShippingAddress()->getShippingTaxAmount()
            ];
        }
256

257 258
        return $formFields;
    }
259
}