- Issue created by @lolgm
- 🇫🇷France flocondetoile Lyon
I don't understand why micro_site is involved with the /admin/content page (it only provide site entity and related features, and don't change change the node behaviors). This module don't change this page, and don't change any permissions. You should have same bug without micro_site enabled ?
- 🇵🇹Portugal lolgm
The issue with the local actions cache occurs on all Drupal pages as soon as the micro_site module is activated.
I used the "/admin/content" page as an example because it's included in the default Drupal installation, making it easier to demonstrate that the problem only arises after enabling the micro_site module. However, the same behavior can be reproduced on any other page containing local actions, following the same testing methodology.
I've tested this on two clean, standard Drupal installations (versions 10.4.3 and 11.1.3) and observed consistent behavior in both scenarios: upon activating the micro_site module, the local actions caching problem appeared, and uninstalling the module resolved the issue immediately.
Through my tests, I identified that the root cause is within the
Drupal\micro_site\MicroSiteServiceProvider
class, which makes sense since this class overrides Drupal core'srouter.route_provider
service.Considering the above, I can confirm that the proposed solution resolves the issue in both Drupal versions tested (10.4.3 and 11.1.3).
- 🇫🇷France flocondetoile Lyon
This module should not altering this behavior. It's not its responsabilities to add the user.roles context for local action links. Your fix does the job, but doesn't fix the root cause I think. The best way would be (perhaps) to stop overriding route.route_provider and start using addExtraCacheKeyPart() (as domain did it see https://www.drupal.org/project/domain/issues/3359253 ✨ Use core route provider with addExtraCacheKeyPart for route caching? Needs review ).
But is this override which is the root cause ? What happens if this module stop to override the Class of the router.route_provider service ?
- 🇵🇹Portugal lolgm
Based on my testing, the root cause seems to be the addition of the user as a cache context. Removing this line resolves the issue and provides the expected behavior. (See: MicroSiteServiceProvider.php#L36)
I simulated the use of a micro site with "Users management" and several users but I was unable to notice any difference with the removal of the user as a cache context.
@flocondetoile My knowledge regarding
router.route_provider
and cache contexts is somewhat limited. However, since adding the user cache context appears to be the root cause, do you think the solution implemented by the Domain module in #6 would still be applicable here?