42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
|
module.exports = {
|
||
|
makeGetRequest (url) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
let xhttp = new XMLHttpRequest();
|
||
|
xhttp.open('GET', url, true);
|
||
|
xhttp.responseType = 'json';
|
||
|
xhttp.onreadystatechange = () => {
|
||
|
if (xhttp.readyState === 4) {
|
||
|
if (xhttp.status === 200) {
|
||
|
resolve(xhttp.response);
|
||
|
} else if (xhttp.status === 401) {
|
||
|
reject('Wrong channel name or password');
|
||
|
} else {
|
||
|
reject('request failed with status:' + xhttp.status);
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
xhttp.send();
|
||
|
});
|
||
|
},
|
||
|
makePostRequest (url, params) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
let xhttp = new XMLHttpRequest();
|
||
|
xhttp.open('POST', url, true);
|
||
|
xhttp.responseType = 'json';
|
||
|
xhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
||
|
xhttp.onreadystatechange = () => {
|
||
|
if (xhttp.readyState === 4) {
|
||
|
if (xhttp.status === 200) {
|
||
|
resolve(xhttp.response);
|
||
|
} else if (xhttp.status === 401) {
|
||
|
reject('Wrong channel name or password');
|
||
|
} else {
|
||
|
reject('request failed with status:' + xhttp.status);
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
xhttp.send(params);
|
||
|
});
|
||
|
},
|
||
|
}
|