customerSession = $customerSession; $this->subscriberFactory = $subscriberFactory; $this->customerRepository = $customerRepository; $this->customerAccountManagement = $customerAccountManagement; parent::__construct($context, $data); } /** * Return the Customer given the customer Id stored in the session. * * @return \Magento\Customer\Api\Data\CustomerInterface */ public function getCustomer() { return $this->customerRepository->getById($this->customerSession->getCustomerId()); } /** * Retrieve the Url for editing the customer's account. * * @return string */ public function getAccountUrl() { return $this->_urlBuilder->getUrl('customer/account/edit', ['_secure' => true]); } /** * Retrieve the Url for customer addresses. * * @return string */ public function getAddressesUrl() { return $this->_urlBuilder->getUrl('customer/address/index', ['_secure' => true]); } /** * Retrieve the Url for editing the specified address. * * @param \Magento\Customer\Api\Data\AddressInterface $address * @return string */ public function getAddressEditUrl($address) { return $this->_urlBuilder->getUrl( 'customer/address/edit', ['_secure' => true, 'id' => $address->getId()] ); } /** * Retrieve the Url for customer orders. * * @return string */ public function getOrdersUrl() { return $this->_urlBuilder->getUrl('customer/order/index', ['_secure' => true]); } /** * Retrieve the Url for customer reviews. * * @return string */ public function getReviewsUrl() { return $this->_urlBuilder->getUrl('review/customer/index', ['_secure' => true]); } /** * Retrieve the Url for managing customer wishlist. * * @return string */ public function getWishlistUrl() { return $this->_urlBuilder->getUrl('customer/wishlist/index', ['_secure' => true]); } /** * Retrieve the subscription object (i.e. the subscriber). * * @return \Magento\Newsletter\Model\Subscriber */ public function getSubscriptionObject() { if ($this->subscription === null) { $this->subscription = $this->_createSubscriber()->loadByCustomerId($this->customerSession->getCustomerId()); } return $this->subscription; } /** * Retrieve the Url for managing newsletter subscriptions. * * @return string */ public function getManageNewsletterUrl() { return $this->getUrl('newsletter/manage'); } /** * Retrieve subscription text, either subscribed or not. * * @return \Magento\Framework\Phrase */ public function getSubscriptionText() { if ($this->getSubscriptionObject()->isSubscribed()) { return __('You are subscribed to our newsletter.'); } return __('You aren\'t subscribed to our newsletter.'); } /** * Retrieve the customer's primary addresses (i.e. default billing and shipping). * * @return \Magento\Customer\Api\Data\AddressInterface[]|bool */ public function getPrimaryAddresses() { $addresses = []; $customerId = $this->getCustomer()->getId(); if ($defaultBilling = $this->customerAccountManagement->getDefaultBillingAddress($customerId)) { $addresses[] = $defaultBilling; } if ($defaultShipping = $this->customerAccountManagement->getDefaultShippingAddress($customerId)) { if ($defaultBilling) { if ($defaultBilling->getId() != $defaultShipping->getId()) { $addresses[] = $defaultShipping; } } else { $addresses[] = $defaultShipping; } } return empty($addresses) ? false : $addresses; } /** * Get back Url in account dashboard. * * This method is copy/pasted in: * \Magento\Wishlist\Block\Customer\Wishlist - Because of strange inheritance * \Magento\Customer\Block\Address\Book - Because of secure Url * * @return string */ public function getBackUrl() { // the RefererUrl must be set in appropriate controller if ($this->getRefererUrl()) { return $this->getRefererUrl(); } return $this->getUrl('customer/account/'); } /** * Create an instance of a subscriber. * * @return \Magento\Newsletter\Model\Subscriber */ protected function _createSubscriber() { return $this->subscriberFactory->create(); } }