36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
export default function (wadoRoot) {
|
|
return {
|
|
series: (StudyInstanceUID, SeriesInstanceUID) => {
|
|
return new Promise((resolve, reject) => {
|
|
// Reject because of Quality. (Seems the most sensible out of the options)
|
|
const CodeValueAndCodeSchemeDesignator = `113001%5EDCM`;
|
|
|
|
const url = `${wadoRoot}/studies/${StudyInstanceUID}/series/${SeriesInstanceUID}/reject/${CodeValueAndCodeSchemeDesignator}`;
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
xhr.open('POST', url, true);
|
|
|
|
//Send the proper header information along with the request
|
|
// TODO -> Auth when we re-add authorization.
|
|
|
|
console.log(xhr);
|
|
|
|
xhr.onreadystatechange = function () {
|
|
//Call a function when the state changes.
|
|
if (xhr.readyState == 4) {
|
|
switch (xhr.status) {
|
|
case 204:
|
|
resolve(xhr.responseText);
|
|
|
|
break;
|
|
case 404:
|
|
reject('Your dataSource does not support reject functionality');
|
|
}
|
|
}
|
|
};
|
|
xhr.send();
|
|
});
|
|
},
|
|
};
|
|
}
|