We will be off on April 7th (Monday) for public holiday in our country

AdyenInitiateTerminalApi.php 10.6 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
 *
 * Copyright (c) 2018 Adyen B.V.
 * This file is open source and available under the MIT license.
 * See the LICENSE file for more info.
 *
 * Author: Adyen <magento@adyen.com>
 */

namespace Adyen\Payment\Model;

use Adyen\Payment\Api\AdyenInitiateTerminalApiInterface;
28
use Adyen\Payment\Helper\ChargedCurrency;
29
use Adyen\Payment\Model\Ui\AdyenPosCloudConfigProvider;
30
use Magento\Quote\Model\Quote;
31 32 33

class AdyenInitiateTerminalApi implements AdyenInitiateTerminalApiInterface
{
34 35 36
    /**
     * @var \Adyen\Payment\Helper\Data
     */
37
    private $adyenHelper;
38

39 40 41
    /**
     * @var \Adyen\Payment\Logger\AdyenLogger
     */
42 43
    private $adyenLogger;

44 45 46 47
    /**
     * @var \Adyen\Client
     */
    protected $client;
48

49 50 51 52 53 54 55 56
    /**
     * @var int
     */
    protected $storeId;

    /**
     * @var \Magento\Checkout\Model\Session
     */
57
    protected $checkoutSession;
58

59 60 61 62 63
    /**
     * @var \Magento\Framework\App\ProductMetadataInterface
     */
    protected $productMetadata;

64 65 66 67 68
    /**
     * @var ChargedCurrency
     */
    private $chargedCurrency;

69 70
    /**
     * AdyenInitiateTerminalApi constructor.
71
     *
72 73
     * @param \Adyen\Payment\Helper\Data $adyenHelper
     * @param \Adyen\Payment\Logger\AdyenLogger $adyenLogger
74 75 76
     * @param \Magento\Checkout\Model\Session $checkoutSession
     * @param \Magento\Store\Model\StoreManagerInterface $storeManager
     * @param \Magento\Framework\App\ProductMetadataInterface $productMetadata
77
     * @param array $data
78
     * @param ChargedCurrency $chargedCurrency
79
     * @throws \Adyen\AdyenException
80 81 82 83
     */
    public function __construct(
        \Adyen\Payment\Helper\Data $adyenHelper,
        \Adyen\Payment\Logger\AdyenLogger $adyenLogger,
84
        \Magento\Checkout\Model\Session $checkoutSession,
85
        \Magento\Store\Model\StoreManagerInterface $storeManager,
86
        \Magento\Framework\App\ProductMetadataInterface $productMetadata,
87
        ChargedCurrency $chargedCurrency,
88
        array $data = []
89
    ) {
90 91 92
        $this->adyenHelper = $adyenHelper;
        $this->adyenLogger = $adyenLogger;
        $this->checkoutSession = $checkoutSession;
93
        $this->productMetadata = $productMetadata;
94
        $this->chargedCurrency = $chargedCurrency;
95
        $this->storeId = $storeManager->getStore()->getId();
96 97

        // initialize client
98
        $apiKey = $this->adyenHelper->getPosApiKey($this->storeId);
99
        $client = $this->adyenHelper->initializeAdyenClient($this->storeId, $apiKey);
100 101

        //Set configurable option in M2
102
        $posTimeout = $this->adyenHelper->getAdyenPosCloudConfigData('pos_timeout', $this->storeId);
103 104 105 106
        if (!empty($posTimeout)) {
            $client->setTimeout($posTimeout);
        }

107
        $this->client = $client;
108 109 110 111
    }

    /**
     * Trigger sync call on terminal
112
     *
113
     * @return mixed
Aleffio's avatar
Aleffio committed
114
     * @throws \Exception
115
     */
116
    public function initiate($payload)
117
    {
118 119 120 121 122
        // Decode payload from frontend
        $payload = json_decode($payload, true);

        // Validate JSON that has just been parsed if it was in a valid format
        if (json_last_error() !== JSON_ERROR_NONE) {
123 124 125
            throw new \Magento\Framework\Exception\LocalizedException(
                __('Terminal API initiate request was not a valid JSON')
            );
126 127 128 129 130 131 132 133
        }

        if (empty($payload['terminal_id'])) {
            throw new \Adyen\AdyenException("Terminal ID is empty in initiate request");
        }

        $poiId = $payload['terminal_id'];

134
        $quote = $this->checkoutSession->getQuote();
135
        $payment = $quote->getPayment();
136
        $adyenAmountCurrency = $this->chargedCurrency->getQuoteAmountCurrency($quote);
137 138 139
        $payment->setMethod(AdyenPosCloudConfigProvider::CODE);
        $reference = $quote->reserveOrderId()->getReservedOrderId();

140
        $service = $this->adyenHelper->createAdyenPosPaymentService($this->client);
141
        $transactionType = \Adyen\TransactionType::NORMAL;
attilak's avatar
attilak committed
142

143 144
        $serviceID = date("dHis");
        $initiateDate = date("U");
145
        $timeStamper = date("Y-m-d") . "T" . date("H:i:s+00:00");
146

Rik ter Beek's avatar
Rik ter Beek committed
147 148 149 150 151 152 153 154 155 156 157
        $request = [
            'SaleToPOIRequest' =>
                [
                    'MessageHeader' =>
                        [
                            'MessageType' => 'Request',
                            'MessageClass' => 'Service',
                            'MessageCategory' => 'Payment',
                            'SaleID' => 'Magento2Cloud',
                            'POIID' => $poiId,
                            'ProtocolVersion' => '3.0',
158
                            'ServiceID' => $serviceID
Rik ter Beek's avatar
Rik ter Beek committed
159 160 161 162 163 164 165 166 167
                        ],
                    'PaymentRequest' =>
                        [
                            'SaleData' =>
                                [
                                    'TokenRequestedType' => 'Customer',
                                    'SaleTransactionID' =>
                                        [
                                            'TransactionID' => $reference,
168 169
                                            'TimeStamp' => $timeStamper
                                        ]
Rik ter Beek's avatar
Rik ter Beek committed
170 171 172 173 174
                                ],
                            'PaymentTransaction' =>
                                [
                                    'AmountsReq' =>
                                        [
175 176
                                            'Currency' => $adyenAmountCurrency->getCurrencyCode(),
                                            'RequestedAmount' => doubleval($adyenAmountCurrency->getAmount())
177 178 179 180
                                        ]
                                ]
                        ]
                ]
Rik ter Beek's avatar
Rik ter Beek committed
181 182
        ];

183
        if (!empty($payload['number_of_installments'])) {
attilak's avatar
attilak committed
184
            $request['SaleToPOIRequest']['PaymentRequest']['PaymentData'] = [
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
                "PaymentType" => "Instalment",
                "Instalment" => [
                    "InstalmentType" => "EqualInstalments",
                    "SequenceNumber" => 1,
                    "Period" => 1,
                    "PeriodUnit" => "Monthly",
                    "TotalNbOfPayments" => (int)$payload['number_of_installments']
                ]
            ];

            $request['SaleToPOIRequest']['PaymentRequest']['PaymentTransaction']['TransactionConditions'] = [
                "DebitPreferredFlag" => false
            ];
        } else {
            $request['SaleToPOIRequest']['PaymentData'] = [
                'PaymentType' => $transactionType,
            ];
        }

alessio's avatar
alessio committed
204
        $request = $this->addSaleToAcquirerData($request, $quote);
205

206 207 208 209 210 211 212 213
        $quote->getPayment()->getMethodInstance()->getInfoInstance()->setAdditionalInformation(
            'serviceID',
            $serviceID
        );
        $quote->getPayment()->getMethodInstance()->getInfoInstance()->setAdditionalInformation(
            'initiateDate',
            $initiateDate
        );
214 215

        try {
Rik ter Beek's avatar
Rik ter Beek committed
216
            $response = $service->runTenderSync($request);
217 218
        } catch (\Adyen\AdyenException $e) {
            //Not able to perform a payment
219
            $this->adyenLogger->addAdyenDebug("adyenexception");
220 221 222
            $response['error'] = $e->getMessage();
        } catch (\Exception $e) {
            //Probably timeout
223 224 225 226
            $quote->getPayment()->getMethodInstance()->getInfoInstance()->setAdditionalInformation(
                'terminalResponse',
                null
            );
227 228 229 230
            $quote->save();
            $response['error'] = $e->getMessage();
            throw $e;
        }
231 232 233 234
        $quote->getPayment()->getMethodInstance()->getInfoInstance()->setAdditionalInformation(
            'terminalResponse',
            $response
        );
235 236 237 238

        $quote->save();
        return $response;
    }
239 240

    /**
241 242 243
     * This getter makes it possible to overwrite the customer id from other plugins
     * Use this function to get the customer id so we can keep using this plugin in the UCD
     *
244 245 246 247 248 249 250
     * @param Quote $quote
     * @return mixed
     */
    public function getCustomerId(Quote $quote)
    {
        return $quote->getCustomerId();
    }
251 252

    /**
alessio's avatar
alessio committed
253
     * Add SaleToAcquirerData for storing for recurring transactions and able to track platform and version
254
     * When upgrading to new version of library we can use the client methods
255
     *
256 257 258 259
     * @param $request
     * @param $quote
     * @return mixed
     */
alessio's avatar
alessio committed
260
    public function addSaleToAcquirerData($request, $quote)
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
    {
        $customerId = $this->getCustomerId($quote);

        $saleToAcquirerData = [];

        // If customer exists add it into the request to store request
        if (!empty($customerId)) {
            $shopperEmail = $quote->getCustomerEmail();
            $recurringContract = $this->adyenHelper->getAdyenPosCloudConfigData('recurring_type', $this->storeId);

            if (!empty($recurringContract) && !empty($shopperEmail)) {
                $saleToAcquirerData['shopperEmail'] = $shopperEmail;
                $saleToAcquirerData['shopperReference'] = (string)$customerId;
                $saleToAcquirerData['recurringContract'] = $recurringContract;
            }
        }

278
        $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION]
attilak's avatar
attilak committed
279
        [ApplicationInfo::VERSION] = $this->adyenHelper->getModuleVersion();
280
        $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::MERCHANT_APPLICATION]
attilak's avatar
attilak committed
281
        [ApplicationInfo::NAME] = $this->adyenHelper->getModuleName();
282
        $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM]
attilak's avatar
attilak committed
283
        [ApplicationInfo::VERSION] = $this->productMetadata->getVersion();
284
        $saleToAcquirerData[ApplicationInfo::APPLICATION_INFO][ApplicationInfo::EXTERNAL_PLATFORM]
attilak's avatar
attilak committed
285
        [ApplicationInfo::NAME] = $this->productMetadata->getName();
286 287 288 289
        $saleToAcquirerDataBase64 = base64_encode(json_encode($saleToAcquirerData));
        $request['SaleToPOIRequest']['PaymentRequest']['SaleData']['SaleToAcquirerData'] = $saleToAcquirerDataBase64;
        return $request;
    }
Aleffio's avatar
Aleffio committed
290
}