[FEATURE] Replace AbstractUserAuth hooks with PSR-14 Events
Two new Events are added * TYPO3\CMS\Core\Authentication\Event\BeforeUserLogoutEvent * TYPO3\CMS\Core\Authentication\Event\AfterUserLoggedOutEvent * TYPO3\CMS\Core\Authentication\Event\AfterUserLoggedInEvent They should be used instead of the hooks: * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'] * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_post_processing'] * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauthgroup.php']['backendUserLogin'] as they are now deprecated. This is an ongoing effort to remove hooks and use a better and more flexible PSR-14-based EventListener system. Resolves: #100307 Releases: main Change-Id: Iec5f96cc052ad5da572c2ba19c77da80a30025f3 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/78263 Tested-by:core-ci <typo3@b13.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
Showing
- typo3/sysext/backend/Classes/FrontendBackendUserAuthentication.php 2 additions, 1 deletion...ext/backend/Classes/FrontendBackendUserAuthentication.php
- typo3/sysext/backend/Classes/Middleware/BackendUserAuthenticator.php 1 addition, 1 deletion...t/backend/Classes/Middleware/BackendUserAuthenticator.php
- typo3/sysext/backend/Classes/Security/EmailLoginNotification.php 15 additions, 20 deletions...ysext/backend/Classes/Security/EmailLoginNotification.php
- typo3/sysext/backend/Configuration/Services.yaml 6 additions, 0 deletionstypo3/sysext/backend/Configuration/Services.yaml
- typo3/sysext/backend/Tests/Unit/Security/EmailLoginNotificationTest.php 25 additions, 32 deletions...ackend/Tests/Unit/Security/EmailLoginNotificationTest.php
- typo3/sysext/backend/ext_localconf.php 0 additions, 2 deletionstypo3/sysext/backend/ext_localconf.php
- typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php 29 additions, 5 deletions...ore/Classes/Authentication/AbstractUserAuthentication.php
- typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php 17 additions, 5 deletions...core/Classes/Authentication/BackendUserAuthentication.php
- typo3/sysext/core/Classes/Authentication/CommandLineUserAuthentication.php 1 addition, 1 deletion.../Classes/Authentication/CommandLineUserAuthentication.php
- typo3/sysext/core/Classes/Authentication/Event/AfterUserLoggedInEvent.php 45 additions, 0 deletions...e/Classes/Authentication/Event/AfterUserLoggedInEvent.php
- typo3/sysext/core/Classes/Authentication/Event/AfterUserLoggedOutEvent.php 36 additions, 0 deletions.../Classes/Authentication/Event/AfterUserLoggedOutEvent.php
- typo3/sysext/core/Classes/Authentication/Event/BeforeUserLogoutEvent.php 55 additions, 0 deletions...re/Classes/Authentication/Event/BeforeUserLogoutEvent.php
- typo3/sysext/core/Documentation/Changelog/12.3/Deprecation-100307-VariousHooksRelatedToAuthenticationUsers.rst 49 additions, 0 deletions...ation-100307-VariousHooksRelatedToAuthenticationUsers.rst
- typo3/sysext/core/Documentation/Changelog/12.3/Feature-100307-PSR-14EventsForUserLoginLogout.rst 78 additions, 0 deletions...og/12.3/Feature-100307-PSR-14EventsForUserLoginLogout.rst
- typo3/sysext/core/Tests/Unit/Authentication/BackendUserAuthenticationTest.php 6 additions, 0 deletions...sts/Unit/Authentication/BackendUserAuthenticationTest.php
- typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php 3 additions, 3 deletions.../frontend/Classes/Middleware/BackendUserAuthenticator.php
- typo3/sysext/install/Configuration/ExtensionScanner/Php/ArrayDimensionMatcher.php 18 additions, 0 deletions...figuration/ExtensionScanner/Php/ArrayDimensionMatcher.php
- typo3/sysext/reactions/Classes/Authentication/ReactionUserAuthentication.php 2 additions, 2 deletions...ons/Classes/Authentication/ReactionUserAuthentication.php
Please register or sign in to comment