123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Account;
- use Magento\Customer\Api\AccountManagementInterface;
- use Magento\Customer\Model\Session;
- use Magento\Framework\App\Action\HttpGetActionInterface;
- use Magento\Framework\View\Result\PageFactory;
- use Magento\Framework\App\Action\Context;
- /**
- * Class CreatePassword
- *
- * @package Magento\Customer\Controller\Account
- */
- class CreatePassword extends \Magento\Customer\Controller\AbstractAccount implements HttpGetActionInterface
- {
- /**
- * @var \Magento\Customer\Api\AccountManagementInterface
- */
- protected $accountManagement;
- /**
- * @var Session
- */
- protected $session;
- /**
- * @var PageFactory
- */
- protected $resultPageFactory;
- /**
- * @param Context $context
- * @param Session $customerSession
- * @param PageFactory $resultPageFactory
- * @param AccountManagementInterface $accountManagement
- */
- public function __construct(
- Context $context,
- Session $customerSession,
- PageFactory $resultPageFactory,
- AccountManagementInterface $accountManagement
- ) {
- $this->session = $customerSession;
- $this->resultPageFactory = $resultPageFactory;
- $this->accountManagement = $accountManagement;
- parent::__construct($context);
- }
- /**
- * Resetting password handler
- *
- * @return \Magento\Framework\Controller\Result\Redirect|\Magento\Framework\View\Result\Page
- */
- public function execute()
- {
- $resetPasswordToken = (string)$this->getRequest()->getParam('token');
- $isDirectLink = $resetPasswordToken != '';
- if (!$isDirectLink) {
- $resetPasswordToken = (string)$this->session->getRpToken();
- }
- try {
- $this->accountManagement->validateResetPasswordLinkToken(null, $resetPasswordToken);
- if ($isDirectLink) {
- $this->session->setRpToken($resetPasswordToken);
- $resultRedirect = $this->resultRedirectFactory->create();
- $resultRedirect->setPath('*/*/createpassword');
- return $resultRedirect;
- } else {
- /** @var \Magento\Framework\View\Result\Page $resultPage */
- $resultPage = $this->resultPageFactory->create();
- $resultPage->getLayout()
- ->getBlock('resetPassword')
- ->setResetPasswordLinkToken($resetPasswordToken);
- return $resultPage;
- }
- } catch (\Exception $exception) {
- $this->messageManager->addError(__('Your password reset link has expired.'));
- /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultRedirectFactory->create();
- $resultRedirect->setPath('*/*/forgotpassword');
- return $resultRedirect;
- }
- }
- }
|