You are here

class PaymentInformation in Commerce Core 8.2

Provides the payment information pane.

Disabling this pane will automatically disable the payment process pane, since they are always used together. Developers subclassing this pane should use hook_commerce_checkout_pane_info_alter(array &$panes) to point $panes['payment_information']['class'] to the new child class.

Plugin annotation


@CommerceCheckoutPane(
  id = "payment_information",
  label = @Translation("Payment information"),
  default_step = "order_information",
  wrapper_element = "fieldset",
)

Hierarchy

Expanded class hierarchy of PaymentInformation

File

modules/payment/src/Plugin/Commerce/CheckoutPane/PaymentInformation.php, line 36

Namespace

Drupal\commerce_payment\Plugin\Commerce\CheckoutPane
View source
class PaymentInformation extends CheckoutPaneBase {

  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $currentUser;

  /**
   * The inline form manager.
   *
   * @var \Drupal\commerce\InlineFormManager
   */
  protected $inlineFormManager;

  /**
   * The payment options builder.
   *
   * @var \Drupal\commerce_payment\PaymentOptionsBuilderInterface
   */
  protected $paymentOptionsBuilder;

  /**
   * Constructs a new PaymentInformation object.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\commerce_checkout\Plugin\Commerce\CheckoutFlow\CheckoutFlowInterface $checkout_flow
   *   The parent checkout flow.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Session\AccountInterface $current_user
   *   The current user.
   * @param \Drupal\commerce\InlineFormManager $inline_form_manager
   *   The inline form manager.
   * @param \Drupal\commerce_payment\PaymentOptionsBuilderInterface $payment_options_builder
   *   The payment options builder.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, CheckoutFlowInterface $checkout_flow, EntityTypeManagerInterface $entity_type_manager, AccountInterface $current_user, InlineFormManager $inline_form_manager, PaymentOptionsBuilderInterface $payment_options_builder) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $checkout_flow, $entity_type_manager);
    $this->currentUser = $current_user;
    $this->inlineFormManager = $inline_form_manager;
    $this->paymentOptionsBuilder = $payment_options_builder;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, CheckoutFlowInterface $checkout_flow = NULL) {
    return new static($configuration, $plugin_id, $plugin_definition, $checkout_flow, $container
      ->get('entity_type.manager'), $container
      ->get('current_user'), $container
      ->get('plugin.manager.commerce_inline_form'), $container
      ->get('commerce_payment.options_builder'));
  }

  /**
   * {@inheritdoc}
   */
  public function buildPaneSummary() {
    $billing_profile = $this->order
      ->getBillingProfile();
    if ($this->order
      ->isPaid() || $this->order
      ->getTotalPrice()
      ->isZero()) {
      if ($billing_profile) {

        // Only the billing information was collected.
        $view_builder = $this->entityTypeManager
          ->getViewBuilder('profile');
        $summary = [
          '#title' => $this
            ->t('Billing information'),
          'profile' => $view_builder
            ->view($billing_profile, 'default'),
        ];
        return $summary;
      }
    }
    $summary = [];

    /** @var \Drupal\commerce_payment\Entity\PaymentGatewayInterface $payment_gateway */
    $payment_gateway = $this->order
      ->get('payment_gateway')->entity;
    if (!$payment_gateway) {
      return $summary;
    }
    $payment_method = $this->order
      ->get('payment_method')->entity;
    if ($payment_method) {
      $view_builder = $this->entityTypeManager
        ->getViewBuilder('commerce_payment_method');
      $summary = $view_builder
        ->view($payment_method, 'default');
    }
    else {
      $summary = [
        'payment_gateway' => [
          '#markup' => $payment_gateway
            ->getPlugin()
            ->getDisplayLabel(),
        ],
      ];
      if ($billing_profile) {
        $view_builder = $this->entityTypeManager
          ->getViewBuilder('profile');
        $summary['profile'] = $view_builder
          ->view($billing_profile, 'default');
      }
    }
    return $summary;
  }

  /**
   * {@inheritdoc}
   */
  public function buildPaneForm(array $pane_form, FormStateInterface $form_state, array &$complete_form) {
    if (!$this->order
      ->getTotalPrice() || $this->order
      ->isPaid() || $this->order
      ->getTotalPrice()
      ->isZero()) {

      // No payment is needed if the order is free or has already been paid.
      // In that case, collect just the billing information.
      $pane_form['#title'] = $this
        ->t('Billing information');
      $pane_form = $this
        ->buildBillingProfileForm($pane_form, $form_state);
      return $pane_form;
    }

    /** @var \Drupal\commerce_payment\PaymentGatewayStorageInterface $payment_gateway_storage */
    $payment_gateway_storage = $this->entityTypeManager
      ->getStorage('commerce_payment_gateway');

    // Load the payment gateways. This fires an event for filtering the
    // available gateways, and then evaluates conditions on all remaining ones.
    $payment_gateways = $payment_gateway_storage
      ->loadMultipleForOrder($this->order);

    // Can't proceed without any payment gateways.
    if (empty($payment_gateways)) {
      $this
        ->messenger()
        ->addError($this
        ->noPaymentGatewayErrorMessage());
      return $pane_form;
    }

    // Core bug #1988968 doesn't allow the payment method add form JS to depend
    // on an external library, so the libraries need to be preloaded here.
    foreach ($payment_gateways as $payment_gateway) {
      if ($js_library = $payment_gateway
        ->getPlugin()
        ->getJsLibrary()) {
        $pane_form['#attached']['library'][] = $js_library;
      }
    }
    $options = $this->paymentOptionsBuilder
      ->buildOptions($this->order, $payment_gateways);
    $option_labels = array_map(function (PaymentOption $option) {
      return $option
        ->getLabel();
    }, $options);
    $parents = array_merge($pane_form['#parents'], [
      'payment_method',
    ]);
    $default_option_id = NestedArray::getValue($form_state
      ->getUserInput(), $parents);
    if ($default_option_id && isset($options[$default_option_id])) {
      $default_option = $options[$default_option_id];
    }
    else {
      $default_option = $this->paymentOptionsBuilder
        ->selectDefaultOption($this->order, $options);
    }
    $pane_form['#after_build'][] = [
      get_class($this),
      'clearValues',
    ];
    $pane_form['payment_method'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Payment method'),
      '#options' => $option_labels,
      '#default_value' => $default_option
        ->getId(),
      '#ajax' => [
        'callback' => [
          get_class($this),
          'ajaxRefresh',
        ],
        'wrapper' => $pane_form['#id'],
      ],
      '#access' => count($options) > 1,
    ];

    // Add a class to each individual radio, to help themers.
    foreach ($options as $option) {
      $class_name = $option
        ->getPaymentMethodId() ? 'stored' : 'new';
      $pane_form['payment_method'][$option
        ->getId()]['#attributes']['class'][] = "payment-method--{$class_name}";
    }

    // Store the options for submitPaneForm().
    $pane_form['#payment_options'] = $options;

    // If this is an existing payment method, return the pane form.
    // Editing payment methods at checkout is not supported.
    if ($default_option
      ->getPaymentMethodId()) {
      return $pane_form;
    }
    $default_payment_gateway_id = $default_option
      ->getPaymentGatewayId();
    $payment_gateway = $payment_gateways[$default_payment_gateway_id];
    $payment_gateway_plugin = $payment_gateway
      ->getPlugin();

    // If this payment gateway plugin supports creating tokenized payment
    // methods before processing payment, we build the "add-payment-method"
    // plugin form.
    if ($payment_gateway_plugin instanceof SupportsCreatingPaymentMethodsInterface) {
      $pane_form = $this
        ->buildPaymentMethodForm($pane_form, $form_state, $default_option);
    }
    elseif ($payment_gateway_plugin
      ->collectsBillingInformation()) {
      $pane_form = $this
        ->buildBillingProfileForm($pane_form, $form_state);
    }
    return $pane_form;
  }

  /**
   * Builds the payment method form for the selected payment option.
   *
   * @param array $pane_form
   *   The pane form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The form state of the parent form.
   * @param \Drupal\commerce_payment\PaymentOption $payment_option
   *   The payment option.
   *
   * @return array
   *   The modified pane form.
   */
  protected function buildPaymentMethodForm(array $pane_form, FormStateInterface $form_state, PaymentOption $payment_option) {
    $payment_method_storage = $this->entityTypeManager
      ->getStorage('commerce_payment_method');
    assert($payment_method_storage instanceof PaymentMethodStorageInterface);
    $payment_method = $payment_method_storage
      ->createForCustomer($payment_option
      ->getPaymentMethodTypeId(), $payment_option
      ->getPaymentGatewayId(), $this->order
      ->getCustomerId(), $this->order
      ->getBillingProfile());
    $inline_form = $this->inlineFormManager
      ->createInstance('payment_gateway_form', [
      'operation' => 'add-payment-method',
    ], $payment_method);
    $pane_form['add_payment_method'] = [
      '#parents' => array_merge($pane_form['#parents'], [
        'add_payment_method',
      ]),
      '#inline_form' => $inline_form,
    ];
    $pane_form['add_payment_method'] = $inline_form
      ->buildInlineForm($pane_form['add_payment_method'], $form_state);
    return $pane_form;
  }

  /**
   * Builds the billing profile form.
   *
   * @param array $pane_form
   *   The pane form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The form state of the parent form.
   *
   * @return array
   *   The modified pane form.
   */
  protected function buildBillingProfileForm(array $pane_form, FormStateInterface $form_state) {
    $billing_profile = $this->order
      ->getBillingProfile();
    if (!$billing_profile) {
      $billing_profile = $this->entityTypeManager
        ->getStorage('profile')
        ->create([
        'type' => 'customer',
        'uid' => 0,
      ]);
    }
    $inline_form = $this->inlineFormManager
      ->createInstance('customer_profile', [
      'profile_scope' => 'billing',
      'available_countries' => $this->order
        ->getStore()
        ->getBillingCountries(),
      'address_book_uid' => $this->order
        ->getCustomerId(),
      // Don't copy the profile to address book until the order is placed.
      'copy_on_save' => FALSE,
    ], $billing_profile);
    $pane_form['billing_information'] = [
      '#parents' => array_merge($pane_form['#parents'], [
        'billing_information',
      ]),
      '#inline_form' => $inline_form,
    ];
    $pane_form['billing_information'] = $inline_form
      ->buildInlineForm($pane_form['billing_information'], $form_state);
    return $pane_form;
  }

  /**
   * Ajax callback.
   */
  public static function ajaxRefresh(array $form, FormStateInterface $form_state) {
    $parents = $form_state
      ->getTriggeringElement()['#parents'];
    array_pop($parents);
    return NestedArray::getValue($form, $parents);
  }

  /**
   * Clears dependent form input when the payment_method changes.
   *
   * Without this Drupal considers the rebuilt form to already be submitted,
   * ignoring default values.
   */
  public static function clearValues(array $element, FormStateInterface $form_state) {
    $triggering_element = $form_state
      ->getTriggeringElement();
    if (!$triggering_element) {
      return $element;
    }
    $triggering_element_name = end($triggering_element['#parents']);
    if ($triggering_element_name == 'payment_method') {
      $user_input =& $form_state
        ->getUserInput();
      $pane_input = NestedArray::getValue($user_input, $element['#parents']);
      unset($pane_input['billing_information']);
      unset($pane_input['add_payment_method']);
      NestedArray::setValue($user_input, $element['#parents'], $pane_input);
    }
    return $element;
  }

  /**
   * {@inheritdoc}
   */
  public function validatePaneForm(array &$pane_form, FormStateInterface $form_state, array &$complete_form) {
    if (!$this->order
      ->getTotalPrice() || $this->order
      ->isPaid() || $this->order
      ->getTotalPrice()
      ->isZero()) {
      return;
    }
    $values = $form_state
      ->getValue($pane_form['#parents']);
    if (!isset($values['payment_method'])) {
      $form_state
        ->setError($complete_form, $this
        ->noPaymentGatewayErrorMessage());
    }
  }

  /**
   * {@inheritdoc}
   */
  public function submitPaneForm(array &$pane_form, FormStateInterface $form_state, array &$complete_form) {
    if (isset($pane_form['billing_information']['#inline_form'])) {

      /** @var \Drupal\commerce\Plugin\Commerce\InlineForm\EntityInlineFormInterface $inline_form */
      $inline_form = $pane_form['billing_information']['#inline_form'];

      /** @var \Drupal\profile\Entity\ProfileInterface $billing_profile */
      $billing_profile = $inline_form
        ->getEntity();
      $this->order
        ->setBillingProfile($billing_profile);

      // The billing profile is provided either because the order is free,
      // or the selected gateway does not support stored payment methods.
      // If it's the former, stop here.
      if ($this->order
        ->isPaid() || $this->order
        ->getTotalPrice()
        ->isZero()) {
        return;
      }
    }
    $values = $form_state
      ->getValue($pane_form['#parents']);

    /** @var \Drupal\commerce_payment\PaymentOption $selected_option */
    $selected_option = $pane_form['#payment_options'][$values['payment_method']];

    /** @var \Drupal\commerce_payment\PaymentGatewayStorageInterface $payment_gateway_storage */
    $payment_gateway_storage = $this->entityTypeManager
      ->getStorage('commerce_payment_gateway');

    /** @var \Drupal\commerce_payment\Entity\PaymentGatewayInterface $payment_gateway */
    $payment_gateway = $payment_gateway_storage
      ->load($selected_option
      ->getPaymentGatewayId());
    if (!$payment_gateway) {
      return;
    }
    $payment_gateway_plugin = $payment_gateway
      ->getPlugin();
    if ($payment_gateway_plugin instanceof SupportsCreatingPaymentMethodsInterface) {
      if (!empty($selected_option
        ->getPaymentMethodTypeId())) {

        /** @var \Drupal\commerce\Plugin\Commerce\InlineForm\EntityInlineFormInterface $inline_form */
        $inline_form = $pane_form['add_payment_method']['#inline_form'];

        // The payment method was just created.
        $payment_method = $inline_form
          ->getEntity();
      }
      else {

        /** @var \Drupal\commerce_payment\PaymentMethodStorageInterface $payment_method_storage */
        $payment_method_storage = $this->entityTypeManager
          ->getStorage('commerce_payment_method');
        $payment_method = $payment_method_storage
          ->load($selected_option
          ->getPaymentMethodId());
      }

      /** @var \Drupal\commerce_payment\Entity\PaymentMethodInterface $payment_method */
      $this->order
        ->set('payment_gateway', $payment_method
        ->getPaymentGateway());
      $this->order
        ->set('payment_method', $payment_method);

      // Copy the billing information to the order.
      $payment_method_profile = $payment_method
        ->getBillingProfile();
      if ($payment_method_profile) {
        $billing_profile = $this->order
          ->getBillingProfile();
        if (!$billing_profile) {
          $billing_profile = $this->entityTypeManager
            ->getStorage('profile')
            ->create([
            'type' => 'customer',
            'uid' => 0,
          ]);
        }
        $billing_profile
          ->populateFromProfile($payment_method_profile);

        // The data field is not copied by default but needs to be.
        // For example, both profiles need to have an address_book_profile_id.
        $billing_profile
          ->populateFromProfile($payment_method_profile, [
          'data',
        ]);
        $billing_profile
          ->save();
        $this->order
          ->setBillingProfile($billing_profile);
      }
    }
    elseif ($payment_gateway_plugin instanceof SupportsStoredPaymentMethodsInterface) {
      if ($selected_option
        ->getPaymentMethodId()) {

        /** @var \Drupal\commerce_payment\PaymentMethodStorageInterface $payment_method_storage */
        $payment_method_storage = $this->entityTypeManager
          ->getStorage('commerce_payment_method');
        $payment_method = $payment_method_storage
          ->load($selected_option
          ->getPaymentMethodId());
        assert($payment_method instanceof PaymentMethodInterface);

        /** @var \Drupal\commerce_payment\Entity\PaymentMethodInterface $payment_method */
        $this->order
          ->set('payment_gateway', $payment_method
          ->getPaymentGateway());
        $this->order
          ->set('payment_method', $payment_method);
        $this->order
          ->setBillingProfile($payment_method
          ->getBillingProfile());
      }
      else {
        $this->order
          ->set('payment_gateway', $payment_gateway);
        $this->order
          ->set('payment_method', NULL);
      }
    }
    else {
      $this->order
        ->set('payment_gateway', $payment_gateway);
      $this->order
        ->set('payment_method', NULL);
    }
  }

  /**
   * Returns an error message in case there are no available payment gateways.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   The error message.
   */
  protected function noPaymentGatewayErrorMessage() {
    if ($this->currentUser
      ->hasPermission('administer commerce_payment_gateway')) {
      $message = $this
        ->t('There are no <a href=":url"">payment gateways</a> available for this order.', [
        ':url' => Url::fromRoute('entity.commerce_payment_gateway.collection')
          ->toString(),
      ]);
    }
    else {
      $message = $this
        ->t('There are no payment gateways available for this order. Please try again later.');
    }
    return $message;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CheckoutPaneBase::$checkoutFlow protected property The parent checkout flow.
CheckoutPaneBase::$entityTypeManager protected property The entity type manager.
CheckoutPaneBase::$order protected property The current order.
CheckoutPaneBase::buildConfigurationForm public function Form constructor. Overrides PluginFormInterface::buildConfigurationForm 6
CheckoutPaneBase::buildConfigurationSummary public function Builds a summary of the pane configuration. Overrides CheckoutPaneInterface::buildConfigurationSummary 5
CheckoutPaneBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
CheckoutPaneBase::defaultConfiguration public function Gets default configuration for this plugin. Overrides ConfigurableInterface::defaultConfiguration 6
CheckoutPaneBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
CheckoutPaneBase::getDisplayLabel public function Gets the pane display label. Overrides CheckoutPaneInterface::getDisplayLabel
CheckoutPaneBase::getId public function Gets the pane ID. Overrides CheckoutPaneInterface::getId
CheckoutPaneBase::getLabel public function Gets the pane label. Overrides CheckoutPaneInterface::getLabel
CheckoutPaneBase::getStepId public function Gets the pane step ID. Overrides CheckoutPaneInterface::getStepId
CheckoutPaneBase::getWeight public function Gets the pane weight. Overrides CheckoutPaneInterface::getWeight
CheckoutPaneBase::getWrapperElement public function Gets the pane wrapper element. Overrides CheckoutPaneInterface::getWrapperElement
CheckoutPaneBase::isVisible public function Determines whether the pane is visible. Overrides CheckoutPaneInterface::isVisible 4
CheckoutPaneBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
CheckoutPaneBase::setOrder public function Sets the current order. Overrides CheckoutPaneInterface::setOrder
CheckoutPaneBase::setStepId public function Sets the pane step ID. Overrides CheckoutPaneInterface::setStepId
CheckoutPaneBase::setWeight public function Sets the pane weight. Overrides CheckoutPaneInterface::setWeight
CheckoutPaneBase::submitConfigurationForm public function Form submission handler. Overrides PluginFormInterface::submitConfigurationForm 6
CheckoutPaneBase::validateConfigurationForm public function Form validation handler. Overrides PluginFormInterface::validateConfigurationForm
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PaymentInformation::$currentUser protected property The current user.
PaymentInformation::$inlineFormManager protected property The inline form manager.
PaymentInformation::$paymentOptionsBuilder protected property The payment options builder.
PaymentInformation::ajaxRefresh public static function Ajax callback.
PaymentInformation::buildBillingProfileForm protected function Builds the billing profile form.
PaymentInformation::buildPaneForm public function Builds the pane form. Overrides CheckoutPaneInterface::buildPaneForm
PaymentInformation::buildPaneSummary public function Builds a summary of the pane values. Overrides CheckoutPaneBase::buildPaneSummary
PaymentInformation::buildPaymentMethodForm protected function Builds the payment method form for the selected payment option.
PaymentInformation::clearValues public static function Clears dependent form input when the payment_method changes.
PaymentInformation::create public static function Creates an instance of the plugin. Overrides CheckoutPaneBase::create
PaymentInformation::noPaymentGatewayErrorMessage protected function Returns an error message in case there are no available payment gateways.
PaymentInformation::submitPaneForm public function Handles the submission of an pane form. Overrides CheckoutPaneBase::submitPaneForm
PaymentInformation::validatePaneForm public function Validates the pane form. Overrides CheckoutPaneBase::validatePaneForm
PaymentInformation::__construct public function Constructs a new PaymentInformation object. Overrides CheckoutPaneBase::__construct
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.