[!!!][BUGFIX] Do not cache a BE users' group list
When a user logs in, the "cache" field "usergroup_cached_list" is updated in the be_users table. This value is used so the groups do not need to be recalculated each time for each user (e.g. in Workspaces when sending notifications and in Log module). However, this has serious flaws: 1) If an admin removes a previously active user from a BE group, the cached list still contains the old group, until the user logs in 2) If a user never logged in before, the list is empty This change removes this conceptual bug, and builds this into the GroupResolver to use direct (optimized) DB queries for these use cases, making the DB field obsolete. Resolves: #79565 Releases: master Change-Id: I9d8fd04cc466906d7f8da43887788f48de81c642 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67137 Tested-by:Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <noreply@typo3.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com>
Showing
- typo3/sysext/backend/Classes/Utility/BackendUtility.php 2 additions, 2 deletionstypo3/sysext/backend/Classes/Utility/BackendUtility.php
- typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php 5 additions, 25 deletions...xt/belog/Classes/Domain/Repository/LogEntryRepository.php
- typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php 1 addition, 23 deletions...core/Classes/Authentication/BackendUserAuthentication.php
- typo3/sysext/core/Classes/Authentication/GroupResolver.php 103 additions, 0 deletionstypo3/sysext/core/Classes/Authentication/GroupResolver.php
- typo3/sysext/core/Documentation/Changelog/master/Breaking-79565-RemovedUsergroup_cached_listDatabaseField.rst 38 additions, 0 deletions...aking-79565-RemovedUsergroup_cached_listDatabaseField.rst
- typo3/sysext/core/Tests/Functional/Authentication/GroupResolverTest.php 79 additions, 0 deletions...ore/Tests/Functional/Authentication/GroupResolverTest.php
- typo3/sysext/core/ext_tables.sql 0 additions, 1 deletiontypo3/sysext/core/ext_tables.sql
- typo3/sysext/workspaces/Classes/Service/StagesService.php 6 additions, 120 deletionstypo3/sysext/workspaces/Classes/Service/StagesService.php
Please register or sign in to comment