You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
6 months ago
|
function getCookie(name) {
|
||
|
// Function to get any cookie available in the session.
|
||
|
var cookieValue = null;
|
||
|
if (document.cookie && document.cookie !== '') {
|
||
|
var cookies = document.cookie.split(';');
|
||
|
for (var i = 0; i < cookies.length; i++) {
|
||
|
var cookie = jQuery.trim(cookies[i]);
|
||
|
// Does this cookie string begin with the name we want?
|
||
|
if (cookie.substring(0, name.length + 1) === (name + '=')) {
|
||
|
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return cookieValue;
|
||
|
};
|
||
|
|
||
|
function csrfSafeMethod(method) {
|
||
|
// These HTTP methods do not require CSRF protection
|
||
|
return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
|
||
|
}
|
||
|
|
||
|
var csrftoken = getCookie('csrftoken');
|
||
|
var page_title = $(document).attr("title");
|
||
|
// This sets up every ajax call with proper headers.
|
||
|
$.ajaxSetup({
|
||
|
beforeSend: function(xhr, settings) {
|
||
|
if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
|
||
|
xhr.setRequestHeader("X-CSRFToken", csrftoken);
|
||
|
}
|
||
|
}
|
||
|
});
|