mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 09:37:55 +08:00
128 lines
4.4 KiB
JavaScript
128 lines
4.4 KiB
JavaScript
export function http_get(url, type = 'json'){
|
|
return new Promise((done, err) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.withCredentials = true;
|
|
xhr.onreadystatechange = function() {
|
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
if(xhr.status === 200){
|
|
if(type === 'json'){
|
|
try{
|
|
let data = JSON.parse(xhr.responseText);
|
|
if("status" in data === false || data.status === 'ok'){
|
|
done(data);
|
|
}else{
|
|
err(data);
|
|
}
|
|
}catch(error){
|
|
err({message: 'oups', trace: error});
|
|
}
|
|
}else{
|
|
done(xhr.responseText);
|
|
}
|
|
}else{
|
|
handle_error_response(xhr, err);
|
|
}
|
|
}
|
|
}
|
|
xhr.open('GET', url, true);
|
|
xhr.send(null);
|
|
});
|
|
}
|
|
|
|
export function http_post(url, data, type = 'json'){
|
|
return new Promise((done, err) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("POST", url, true);
|
|
xhr.withCredentials = true;
|
|
if(type === 'json'){
|
|
data = JSON.stringify(data);
|
|
xhr.setRequestHeader('Content-Type', 'application/json');
|
|
}
|
|
xhr.send(data);
|
|
xhr.onload = function () {
|
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
if(xhr.status === 200){
|
|
try{
|
|
let data = JSON.parse(xhr.responseText);
|
|
if(data.status === 'ok'){
|
|
done(data);
|
|
}else{
|
|
err(data);
|
|
}
|
|
}catch(error){
|
|
err({message: 'oups', trace: error});
|
|
}
|
|
}else{
|
|
handle_error_response(xhr, err);
|
|
}
|
|
}
|
|
}
|
|
xhr.onerror = function(){
|
|
handle_error_response(xhr, err)
|
|
}
|
|
});
|
|
}
|
|
|
|
export function http_delete(url){
|
|
return new Promise((done, err) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("DELETE", url, true);
|
|
xhr.withCredentials = true;
|
|
xhr.onload = function () {
|
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
|
if(xhr.status === 200){
|
|
try{
|
|
let data = JSON.parse(xhr.responseText);
|
|
if(data.status === 'ok'){
|
|
done(data);
|
|
}else{
|
|
err(data);
|
|
}
|
|
}catch(error){
|
|
err({message: 'oups', trace: error});
|
|
}
|
|
}else{
|
|
handle_error_response(xhr, err);
|
|
}
|
|
}
|
|
}
|
|
xhr.send(null);
|
|
});
|
|
}
|
|
|
|
|
|
|
|
function handle_error_response(xhr, err){
|
|
const response = (function(content){
|
|
let message = content;
|
|
try{
|
|
message = JSON.parse(content);
|
|
}catch(err){}
|
|
return message || {};
|
|
})(xhr.responseText);
|
|
|
|
const message = response.message || null;
|
|
|
|
if(navigator.onLine === false){
|
|
err({message: 'Connection Lost', code: "NO_INTERNET"});
|
|
}else if(xhr.status === 500){
|
|
err({message: message || "Oups something went wrong with our servers", code: "INTERNAL_SERVER_ERROR"});
|
|
}else if(xhr.status === 401){
|
|
err({message: message || "Authentication error", code: "Unauthorized"});
|
|
}else if(xhr.status === 403){
|
|
err({message: message || "You can\'t do that", code: "Forbidden"});
|
|
}else if(xhr.status === 413){
|
|
err({message: message || "Payload too large", code: "PAYLOAD_TOO_LARGE"});
|
|
}else if(xhr.status === 502){
|
|
err({message: message || "The destination is acting weird", code: "BAD_GATEWAY"});
|
|
}else if(xhr.status === 409){
|
|
if(response["error_summary"]){ // dropbox way to say doesn't exist
|
|
err({message: "Doesn\'t exist", code: "UNKNOWN_PATH"})
|
|
}else{
|
|
err({message: message || "Oups you just ran into a conflict", code: "CONFLICT"});
|
|
}
|
|
}else{
|
|
err({message: message || 'Oups something went wrong'});
|
|
}
|
|
}
|