-
Notifications
You must be signed in to change notification settings - Fork 509
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated CSRF tokens not sent when forms inserted by javascript or Turbolinks #456
Comments
+1 This on main application.js solves it in the meanwhile:
|
Just been bitten by this using Rails 5.0.2. @bluehallu's suggestion seems to resolve it. |
what the heck is |
According to this SO answer , since Rails 5 it is now Edit: The
|
Example issue:
A page is utilizing fragment caching and is caching a non-remote form (perhaps a Contact Us form that is always in the "new" state)
The user navigates to that page using turbolinks.
The user submits the form on that page and then receives a CSRF token validation error
I think it could be argued that this is not a concern of jquery-ujs, but jquery-ujs does attempt to solve the issue of cached non-remote forms. jquery-ujs currently calls
rails.refreshCSRFTokens()
on initial page load, where it goes through each form (including non-remote forms) on the page and updates all of the csrf param elements with the current token value from the header. The comment in the source code says:Make sure that all forms have actual up-to-date tokens (cached forms contain old ones)
This works unless the page is loaded by turbolinks (neither turbolinks nor jquery-ujs will update the cached csrf token), or is otherwise updated by javascript (for example, a js.erb response that inserts a cached form into the current page).
I think there are a couple of ways jquery-ujs could handle this (for example, calling refreshCSRFTokens() on form submit), unless it seems more appropriate as an update to Turbolinks and manual usage of refreshCSRFTokens in applications updating forms with javascript. Given that both turbolinks and using js.erb to update pages are fairly standard ways for rails developers to update the page, I think it could be helpful if jquery-ujs could better handle forms that are cached.
Would a PR be welcome for this in jquery-ujs?
The text was updated successfully, but these errors were encountered: