blob: f58a27fdcc51b3f7b1f922af8ea92c492af60d33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
window.onload = function () {
document.getElementById('nojs').hidden = true;
document.getElementById('block').hidden = false;
};
// File submit AJAX request
document.getElementById('upload').onsubmit = function () {
// Reset error message
document.getElementById('upload-err').innerText = '';
document.getElementById('actuate-err').innerText = '';
// Make AJAX request
let xhr = new XMLHttpRequest();
xhr.open('POST', '/api/v1/upload');
let formData = new FormData(this);
xhr.send(formData);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
let response = JSON.parse(xhr.responseText);
if (xhr.status === 200) {
actuate(response);
} else {
// Display upload error message to the user
document.getElementById('upload-err').innerText = response.error;
// DEBUG: Print full error if unknown error occurs
if (xhr.status === 500)
console.error(response.error_msg);
}
}
};
return false;
};
function actuate(file) {
let xhr = new XMLHttpRequest();
xhr.open('POST', '/api/v1/actuate');
let data = {
name: file.name,
path: file.path,
};
xhr.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
xhr.setRequestHeader('X-CSRF-TOKEN', file.csrf);
xhr.send(JSON.stringify(data));
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
let response = JSON.parse(xhr.responseText);
if (xhr.status === 200) {
console.log(response);
} else {
// Display upload error message to the user
document.getElementById('actuate-err').innerText = response.error;
// DEBUG: Print full error if unknown error occurs
if (xhr.status === 500)
console.error(response.error_msg);
}
}
};
}
|