Ich muss den Benutzer auf eine Zielseite umleiten, wenn er nicht angemeldet ist. Ich finde eine ähnliche Arbeit in diesem Link . Gibt es eine Lösung für Magento 2?
9
Wenn wir fangen wollen controller_action_predispatch
, können wir folgen:
app / code / Vendor / Module / etc / events.xml
<event name="controller_action_predispatch">
<observer name="check_login_persistent" instance="Vendor\Module\Observer\CheckLoginPersistentObserver" />
</event>
app / code / Vendor / Module / Observer / CheckLoginPersistentObserver.php
namespace Vendor\Module\Observer;
use Magento\Framework\Event\ObserverInterface;
class CheckLoginPersistentObserver implements ObserverInterface
{
/**
* @var \Magento\Framework\App\Response\RedirectInterface
*/
protected $redirect;
/**
* Customer session
*
* @var \Magento\Customer\Model\Session
*/
protected $_customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
\Magento\Framework\App\Response\RedirectInterface $redirect
) {
$this->_customerSession = $customerSession;
$this->redirect = $redirect;
}
public function execute(\Magento\Framework\Event\Observer $observer)
{
$actionName = $observer->getEvent()->getRequest()->getFullActionName();
$controller = $observer->getControllerAction();
$openActions = array(
'create',
'createpost',
'login',
'loginpost',
'logoutsuccess',
'forgotpassword',
'forgotpasswordpost',
'resetpassword',
'resetpasswordpost',
'confirm',
'confirmation'
);
if ($controller == 'account' && in_array($actionName, $openActions)) {
return $this; //if in allowed actions do nothing.
}
if(!$this->_customerSession->isLoggedIn()) {
$this->redirect->redirect($controller->getResponse(), 'customer/account/login');
}
}
}
if ($controller == 'account' && in_array($action, $openActions)) { return $this; //if in allowed actions do nothing. }
Dieser Code wurde nie ausgeführt. Es handelt sich nicht um eine Variable mit Namensaktion im Code. auch in __construct (Sie haben ein "," am Ende gesetzt, was zu einem Fehler führt.Für mehr Optimierung und Arbeitscode können Sie die folgenden Schritte ausführen.
Erstellen Sie die Ereignisdatei @ app \ code \ Vendor \ Module \ etc \ frontend \ events.xml
Erstellen Sie die Observer-Datei app \ code \ Vendor \ Module \ Model \ Observer.php
quelle
Es gibt eine viel einfachere Lösung. Schauen Sie sich diese Datei an:
src / vendor / magento / module-sales / etc / di.xml
Sie müssen also nur das Authentifizierungs-Plugin in Ihrem Modul di.xml verwenden
quelle