Skip to content

Commit

Permalink
fix(datasource): attach auth headers for delete requests in the dicom…
Browse files Browse the repository at this point in the history
…web datasource (#4619)
  • Loading branch information
IbrahimCSAE authored Dec 20, 2024
1 parent a3d1844 commit 8d0ed80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion extensions/default/src/DicomWebDataSource/dcm4cheeReject.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function (wadoRoot) {
export default function (wadoRoot, getAuthrorizationHeader) {
return {
series: (StudyInstanceUID, SeriesInstanceUID) => {
return new Promise((resolve, reject) => {
Expand All @@ -10,6 +10,12 @@ export default function (wadoRoot) {
const xhr = new XMLHttpRequest();
xhr.open('POST', url, true);

const headers = getAuthrorizationHeader();

for (const key in headers) {
xhr.setRequestHeader(key, headers[key]);
}

//Send the proper header information along with the request
// TODO -> Auth when we re-add authorization.

Expand Down
2 changes: 1 addition & 1 deletion extensions/default/src/DicomWebDataSource/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ function createDicomWebApi(dicomWebConfig: DicomWebConfig, servicesManager) {
};

if (dicomWebConfig.supportsReject) {
implementation.reject = dcm4cheeReject(dicomWebConfig.wadoRoot);
implementation.reject = dcm4cheeReject(dicomWebConfig.wadoRoot, getAuthorizationHeader);
}

return IWebApiDataSource.create(implementation);
Expand Down

0 comments on commit 8d0ed80

Please sign in to comment.