customerSession = $customerSession; $this->storeManager = $storeManager; $this->instantPurchase = $instantPurchase; $this->paymentTokenFormatter = $paymentTokenFormatter; $this->customerAddressesFormatter = $customerAddressesFormatter; $this->shippingMethodFormatter = $shippingMethodFormatter; } /** * @inheritdoc */ public function getSectionData(): array { if (!$this->customerSession->isLoggedIn()) { return ['available' => false]; } $store = $this->storeManager->getStore(); $customer = $this->customerSession->getCustomer(); $instantPurchaseOption = $this->instantPurchase->getOption($store, $customer); $data = [ 'available' => $instantPurchaseOption->isAvailable() ]; if (!$instantPurchaseOption->isAvailable()) { return $data; } $paymentToken = $instantPurchaseOption->getPaymentToken(); $shippingAddress = $instantPurchaseOption->getShippingAddress(); $billingAddress = $instantPurchaseOption->getBillingAddress(); $shippingMethod = $instantPurchaseOption->getShippingMethod(); $data += [ 'paymentToken' => [ 'publicHash' => $paymentToken->getPublicHash(), 'summary' => $this->paymentTokenFormatter->format($paymentToken), ], 'shippingAddress' => [ 'id' => $shippingAddress->getId(), 'summary' => $this->customerAddressesFormatter->format($shippingAddress), ], 'billingAddress' => [ 'id' => $billingAddress->getId(), 'summary' => $this->customerAddressesFormatter->format($billingAddress), ], 'shippingMethod' => [ 'carrier' => $shippingMethod->getCarrierCode(), 'method' => $shippingMethod->getMethodCode(), 'summary' => $this->shippingMethodFormatter->format($shippingMethod), ] ]; return $data; } }