Feature: Replace image upload by DRF-api

This commit is contained in:
winkidney
2019-02-21 13:22:28 +08:00
parent 274134444d
commit 852cb0b89d
2 changed files with 47 additions and 11 deletions

View File

@@ -7,6 +7,41 @@
*/ */
function _getCookie(name) {
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 getCSRFToken() {
return _getCookie('csrftoken');
}
function csrfSafeMethod(method) {
// these HTTP methods do not require CSRF protection
return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
}
$.ajaxSetup({
beforeSend: function(xhr, settings) {
if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
xhr.setRequestHeader("X-CSRFToken", getCSRFToken());
}
}
});
function renderTemplate(templateId, context) { function renderTemplate(templateId, context) {
var template = Handlebars.compile($(templateId).html()); var template = Handlebars.compile($(templateId).html());
return template(context); return template(context);

View File

@@ -107,18 +107,19 @@ $(window).load(function() {
uploadMultiple: false, uploadMultiple: false,
maxFiles: 1, maxFiles: 1,
acceptedFiles: 'image/*', acceptedFiles: 'image/*',
headers: {
'X-CSRFToken': getCSRFToken(),
},
success: function(file, resp) { success: function(file, resp) {
$('#pin-form-image-url').parent().fadeOut(300); var image_url = $('#pin-form-image-url');
var promise = getImageData(resp.success.id); image_url.parent().fadeOut(300);
uploadedImage = resp.success.id; uploadedImage = resp.id;
promise.success(function(image) { image_url.val(resp.thumbnail.image);
$('#pin-form-image-url').val(image.thumbnail.image);
createPinPreviewFromForm(); createPinPreviewFromForm();
}); },
promise.error(function() { error: function (error) {
message('Problem uploading image.', 'alert alert-error'); message('Problem uploading image.', 'alert alert-error');
}); },
}
}); });
// If bookmarklet submit // If bookmarklet submit
if (pinFromUrl) { if (pinFromUrl) {