
Problem/Motivation
Currently, the cache is not properly cleared (and the test isn't sufficient to test this). To reproduce: check the headers in the test, after clearing the cache and logging out, there is a header X-Drupal-Cache which shouln't have a HIT result but it does have one.
Proposed resolution
In captcha_element_process Line 147f, use the page_cache_kill_switch Service to properly disable caching.
Remaining tasks
Review the patch
User interface changes
None
API changes
None
Comments
Comment #1
LKS90 CreditAttribution: LKS90 at MD Systems GmbH commentedPull request for the issue: https://github.com/chuva-inc/captcha/pull/14
Seems like the pull request also updates the sandboxed github version with the recent rollback from my changes. In case you want some parts removed, changed or whatever, just tell me.
Comment #2
LKS90 CreditAttribution: LKS90 at MD Systems GmbH commentedhttps://github.com/chuva-inc/captcha/pull/15
I just didn't update my base correctly, new pull request without the rollback.
Comment #3
hass CreditAttribution: hass commentedWe may not need to clear / disable cache for some captchas. Recaptcha as example does not require this at all I think as the html code is static until the global configuration changes.
Comment #4
berdirComment #5
LKS90 CreditAttribution: LKS90 at MD Systems GmbH commentedTake a look at the pull request for an updated version.
Some other issues which get fixed by the pull request:
Comment #6
berdirThis looks good to me now. Pretty extensive test coverage that displaying a captcha somewhere on a page (the test explicitly uses a block to test block/render caching) now correctly disabled the page cache.
And it is implemented for each captcha type, so if one doesn't need render caching, then they can decide that for themself.
Comment #8
elachlan CreditAttribution: elachlan commentedThanks!
Comment #9
hass CreditAttribution: hass commentedThis patch need to be rolled back.
Please only disable cache if a specific captcha requires it. There is no need to disable the cache if recaptcha is in place. As core - we should only disable cache if code needs it, otherwise leave it enabled. A module maintainer need to disable the cache if his module requires this. In this case image captcha need to disable the cache and ONLY if image captcha is shown on the specific page.
Comment #10
berdirDid you actually look at the commit?
That's exactly what is done. image, math and test disable the cache.
Comment #12
anybodyFollow-ups:
#3311443: [PP-1][2.x] Expose information about cacheability for each selectable captcha type to inform regular Drupal Site-Owners (non developers) about cacheability of available CAPTCHA types.
and
#3311447: Find a way to allow page caching (including by CDNs) with captcha. AJAX, Lazy, ...? to discuss how to avoid disabling the page cache when placing a regular captcha
Please help to fix these!