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

  • cyattilakiss's avatar
    [PW 2022] Fix payment-information interceptor to work with other plugins (#643) · 34cfc4a6
    cyattilakiss authored
    * Remove PaymentInformationManagement plugins
    
    Delete GuestPaymentInformationManagement.php and
    PaymentInformationManagement.php
    Remove these from the interceptors list in di.xml
    
    * Add new API endpoint to retrieve order payment status
    
    * Only load 'return_path' config data if it's required. (#638)
    
    * Only load 'return_path' config data if it's required.
    
    It doesn't make sense to retrieve the configuration for failure on each request.
    It's enough to only do it on failure.
    
    * Update Controller/Process/Result.php
    Co-Authored-By: default avatarcyattilakiss <42297201+cyattilakiss@users.noreply.github.com>
    
    * Add AdyenOrderPaymentStatus class to retrieve order payment status
    
    Add getOrderPaymentStatus() to handle threeDS2 extra steps but nothing
    more
    Later this function can be used for more extensive PWA implementation
    
    * Add getOrderPaymentStatus() to consume the /payment-status API endpoint
    
    Use the new method in the placeOrder() function in the
    adyen-cc-method.js
    
    * Remove excess comma
    Co-Authored-By: default avatarAlessio Zampatti <alessio.zampatti@adyen.com>
    
    * [PW-2022] changes to get it working (#650)
    
    * Update return value to a more specific one
    
    * Remove unused variables
    
    * Improve code readability
    
    * Improve code readability
    
    * Improve code readability
    
    * Work in progress changes
    
    * removed throw exception as we are not doing anything on the front-end. Fix front-end to work with code changes as well include oneclick into the solution as this was now broken with all the changes.
    
    * remove let as this is not supported in older browsers
    
    * remove debugger statements
    Co-authored-by: default avatarFabian Hurnaus <fahu@outlook.com>
    Co-authored-by: default avatarRik ter Beek <rikterbeek@users.noreply.github.com>
    Co-authored-by: default avatarMarcos Garcia <marcos.asgarcia@gmail.com>
    Co-authored-by: default avatarAlessio Zampatti <gigendh@gmail.com>
    Unverified
    34cfc4a6
adyen-payment-service.js 2.51 KB
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
define(
    [
        'underscore',
        'Magento_Checkout/js/model/quote',
        'Adyen_Payment/js/model/adyen-method-list',
        'Magento_Customer/js/model/customer',
        'Magento_Checkout/js/model/url-builder',
        'mage/storage'
    ],
    function (_, quote, methodList, customer, urlBuilder, storage) {
        'use strict';

        return {
            /**
             * Populate the list of payment methods
             * @param {Array} methods
             */
            setPaymentMethods: function (methods) {
                methodList(methods);
            },
            /**
             * Get the list of available payment methods.
             * @returns {Array}
             */
            getAvailablePaymentMethods: function () {
                return methodList();
            },
            /**
             * Retrieve the list of available payment methods from the server
             */
            retrieveAvailablePaymentMethods: function (callback) {
                var self = this;

                // retrieve payment methods
                var serviceUrl,
                    payload;
                if (customer.isLoggedIn()) {
                    serviceUrl = urlBuilder.createUrl('/carts/mine/retrieve-adyen-payment-methods', {});
                } else {
                    serviceUrl = urlBuilder.createUrl('/guest-carts/:cartId/retrieve-adyen-payment-methods', {
                        cartId: quote.getQuoteId()
                    });
                }

                payload = {
                    cartId: quote.getQuoteId(),
                    shippingAddress: quote.shippingAddress()
                };

                storage.post(
                    serviceUrl, JSON.stringify(payload)
                ).done(
                    function (response) {
                        self.setPaymentMethods(response);
                        if (callback) {
                            callback();
                        }
                    }
                ).fail(
                    function () {
                        self.setPaymentMethods([]);
                    }
                )
            },
            getOrderPaymentStatus: function (orderId) {
                var serviceUrl = urlBuilder.createUrl('/adyen/orders/:orderId/payment-status', {
                    orderId: orderId
                });

                return storage.get(serviceUrl);
            }
        };
    }
);