mirror of https://github.com/zulip/zulip.git
csrf: Improve API for when no CSRF input is available.
Since we're adding this to a large number of portico pages, there's no guarantee that these pages actually have a CSRF input. Though given that the logout template contains a CSRF input, realistically it should always be present.
This commit is contained in:
parent
adebe1bd4e
commit
2cca6a1be8
|
@ -1,9 +1,18 @@
|
||||||
var csrf_token;
|
var csrf_token;
|
||||||
$(function () {
|
$(function () {
|
||||||
// This requires that we used Jinja2's {% csrf_input %} somewhere on the page.
|
// This requires that we used Jinja2's {% csrf_input %} somewhere on the page.
|
||||||
csrf_token = $('input[name="csrfmiddlewaretoken"]').attr('value');
|
var csrf_input = $('input[name="csrfmiddlewaretoken"]');
|
||||||
|
if (csrf_input.length > 0) {
|
||||||
|
csrf_token = csrf_input.attr('value');
|
||||||
|
} else {
|
||||||
|
csrf_token = undefined;
|
||||||
|
}
|
||||||
window.csrf_token = csrf_token;
|
window.csrf_token = csrf_token;
|
||||||
|
|
||||||
|
if (csrf_token === undefined) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$.ajaxSetup({
|
$.ajaxSetup({
|
||||||
beforeSend: function (xhr, settings) {
|
beforeSend: function (xhr, settings) {
|
||||||
if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
|
if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
|
||||||
|
|
Loading…
Reference in New Issue