<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\TwoFactorAuthCustomerEmail42;
use Eccube\Event\TemplateEvent;
use Plugin\TwoFactorAuthCustomer42\Repository\TwoFactorAuthTypeRepository;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Class Event.
*/
class Event implements EventSubscriberInterface
{
/**
* @var bool
*/
private bool $hasActiveAuthType;
/**
* @var TwoFactorAuthTypeRepository
*/
private $twoFactorAuthTypeRepository;
/**
* Event constructor.
*
* @throws \Exception
*/
public function __construct(TwoFactorAuthTypeRepository $twoFactorAuthTypeRepository)
{
$this->twoFactorAuthTypeRepository = $twoFactorAuthTypeRepository;
$this->hasActiveAuthType = $twoFactorAuthTypeRepository->count(['isDisabled' => false]) > 0;
}
public static function getSubscribedEvents(): array
{
return [
'TwoFactorAuthCustomer42/Resource/template/default/tfa/select_type.twig' => 'onSelectTypeTwig',
];
}
/**
* [/admin/setting/shop]表示の時のEvent Hook.
* SMS関連項目を追加する.
*
* @param TemplateEvent $event
*/
public function onSelectTypeTwig(TemplateEvent $event)
{
$appEnabled = !is_null($this->twoFactorAuthTypeRepository->findOneBy(['isDisabled' => false, 'name' => 'APP']));
$smsEnabled = !is_null($this->twoFactorAuthTypeRepository->findOneBy(['isDisabled' => false, 'name' => 'SMS']));
// add 本人確認認証 twig
$twig = 'TwoFactorAuthCustomerEmail42/Resource/template/default/select_type.twig';
$event->addSnippet($twig);
$event->setParameter('appEnabled', $appEnabled);
$event->setParameter('smsEnabled', $smsEnabled);
}
}