1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * MageSpecialist
- *
- * NOTICE OF LICENSE
- *
- * This source file is subject to the Open Software License (OSL 3.0)
- * that is bundled with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://opensource.org/licenses/osl-3.0.php
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to info@magespecialist.it so we can send you a copy immediately.
- *
- * @category MSP
- * @package MSP_TwoFactorAuth
- * @copyright Copyright (c) 2017 Skeeller srl (http://www.magespecialist.it)
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- */
- namespace MSP\TwoFactorAuth\Controller\Adminhtml\Authy;
- use Magento\Backend\App\Action;
- use Magento\Backend\Model\Auth\Session;
- use Magento\Framework\View\Result\PageFactory;
- use MSP\TwoFactorAuth\Api\TfaInterface;
- use MSP\TwoFactorAuth\Controller\Adminhtml\AbstractAction;
- use MSP\TwoFactorAuth\Model\Provider\Engine\Authy;
- /**
- * @SuppressWarnings(PHPMD.CamelCaseMethodName)
- */
- class Configure extends AbstractAction
- {
- /**
- * @var PageFactory
- */
- private $pageFactory;
- /**
- * @var Session
- */
- private $session;
- /**
- * @var TfaInterface
- */
- private $tfa;
- /**
- * Configure constructor.
- * @param Action\Context $context
- * @param Session $session
- * @param TfaInterface $tfa
- * @param PageFactory $pageFactory
- */
- public function __construct(
- Action\Context $context,
- Session $session,
- TfaInterface $tfa,
- PageFactory $pageFactory
- ) {
- parent::__construct($context);
- $this->pageFactory = $pageFactory;
- $this->session = $session;
- $this->tfa = $tfa;
- }
- /**
- * Get current user
- * @return \Magento\User\Model\User|null
- */
- private function getUser()
- {
- return $this->session->getUser();
- }
- /**
- * @inheritdoc
- */
- public function execute()
- {
- return $this->pageFactory->create();
- }
- /**
- * @inheritdoc
- */
- protected function _isAllowed()
- {
- $user = $this->getUser();
- return
- $user &&
- $this->tfa->getProviderIsAllowed($user->getId(), Authy::CODE) &&
- !$this->tfa->getProvider(Authy::CODE)->isActive($user->getId());
- }
- }
|