-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
236 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Asserts that a given media type is valid. | ||
* | ||
* @params {String} mediaType media type | ||
*/ | ||
|
||
export default function assertMediaTypeIsValid(mediaType) { | ||
if (!mediaType) { | ||
throw new Error(`Not a valid media type: ${mediaType}`); | ||
} | ||
const sepIndex = mediaType.indexOf('/'); | ||
|
||
if (sepIndex === -1) { | ||
throw new Error(`Not a valid media type: ${mediaType}`); | ||
} | ||
const mediaTypeType = mediaType.slice(0, sepIndex); | ||
|
||
const types = ['application', 'image', 'text', 'video']; | ||
|
||
if (!types.includes(mediaTypeType)) { | ||
throw new Error(`Not a valid media type: ${mediaType}`); | ||
} | ||
if (mediaType.slice(sepIndex + 1).includes('/')) { | ||
throw new Error(`Not a valid media type: ${mediaType}`); | ||
} | ||
} |
102 changes: 102 additions & 0 deletions
102
src/shared/mediaTypesUtils/buildMultipartAcceptHeaderFieldValue.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import assertMediaTypeIsValid from './assertMediaTypeIsValid.js'; | ||
|
||
/** | ||
* Builds an accept header field value for HTTP GET multipart request messages. | ||
* | ||
* Takes in input a media types array of type [{mediaType, transferSyntaxUID}, ... ], | ||
* cross-compares with a map defining the supported media types per transferSyntaxUID | ||
* and finally composes a string for the accept header field value as in example below: | ||
* | ||
* "multipart/related; type="image/x-dicom-rle"; transfer-syntax=1.2.840.10008.1.2.5, | ||
* multipart/related; type="image/jpeg"; transfer-syntax=1.2.840.10008.1.2.4.50, | ||
* multipart/related; type="application/octet-stream"; transfer-syntax=*" | ||
* | ||
* NOTE: the xhr request will try to fetch with all the transfer-syntax syntaxes | ||
* specified in the accept header field value in descending order. | ||
* The first element ("image/x-dicom-rle" in this example) has the highest priority. | ||
* | ||
* @param {Array} mediaTypes Acceptable media types | ||
* @param {Object} supportedMediaTypes Supported media types | ||
* | ||
* @returns {string} accept header field value | ||
*/ | ||
|
||
export default function buildMultipartAcceptHeaderFieldValue( | ||
mediaTypes, | ||
supportedMediaTypes | ||
) { | ||
if (!Array.isArray(mediaTypes)) { | ||
throw new Error('Acceptable media types must be provided as an Array'); | ||
} | ||
|
||
if (typeof supportedMediaTypes !== 'object') { | ||
throw new Error( | ||
'Supported media types must be provided as an Array or an Object' | ||
); | ||
} | ||
|
||
const supportedMediaTypesArray = Object.values(supportedMediaTypes).flat(1); | ||
|
||
supportedMediaTypesArray.forEach((supportedMediaType) => { | ||
assertMediaTypeIsValid(supportedMediaType); | ||
}); | ||
|
||
const fieldValueParts = []; | ||
|
||
mediaTypes.forEach((item) => { | ||
const { transferSyntaxUID, mediaType } = item; | ||
|
||
assertMediaTypeIsValid(mediaType); | ||
|
||
let fieldValue = `multipart/related; type="${mediaType}"`; | ||
|
||
// supportedMediaTypesArray is a lookup table that maps Transfer Syntax UID | ||
// to one or more Media Types | ||
if (!supportedMediaTypesArray.includes(mediaType)) { | ||
if ( | ||
(!mediaType.endsWith('/*') || !mediaType.endsWith('/')) && | ||
mediaType !== 'application/octet-stream' | ||
) { | ||
throw new Error( | ||
`Media type ${mediaType} is not supported for requested resource` | ||
); | ||
} | ||
} | ||
if (transferSyntaxUID) { | ||
if (transferSyntaxUID !== '*') { | ||
if (!Object.keys(supportedMediaTypes).includes(transferSyntaxUID)) { | ||
throw new Error( | ||
`Transfer syntax ${transferSyntaxUID} is not supported for requested resource` | ||
); | ||
} | ||
const expectedMediaTypes = supportedMediaTypes[transferSyntaxUID]; | ||
|
||
if (!expectedMediaTypes.includes(mediaType)) { | ||
const actualType = mediaType.split('/')[0]; | ||
|
||
expectedMediaTypes.map((expectedMediaType) => { | ||
const expectedType = expectedMediaType.split('/')[0]; | ||
|
||
const haveSameType = actualType === expectedType; | ||
|
||
if ( | ||
haveSameType && | ||
(mediaType.endsWith('/*') || mediaType.endsWith('/')) | ||
) { | ||
return null; | ||
} | ||
|
||
throw new Error( | ||
`Transfer syntax ${transferSyntaxUID} is not supported for requested resource` | ||
); | ||
}); | ||
} | ||
} | ||
fieldValue += `; transfer-syntax=${transferSyntaxUID}`; | ||
} | ||
|
||
fieldValueParts.push(fieldValue); | ||
}); | ||
|
||
return fieldValueParts.join(', '); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const jllMediaType = 'image/jll'; | ||
const jllTransferSyntaxUIDlossless = '1.2.840.10008.1.2.4.70'; | ||
|
||
export { jllMediaType, jllTransferSyntaxUIDlossless }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const jlsMediaType = 'image/jls'; | ||
const jlsTransferSyntaxUIDlossless = '1.2.840.10008.1.2.4.80'; | ||
const jlsTransferSyntaxUID = '1.2.840.10008.1.2.4.81'; | ||
|
||
export { jlsMediaType, jlsTransferSyntaxUIDlossless, jlsTransferSyntaxUID }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const jp2MediaType = 'image/jp2'; | ||
const jp2TransferSyntaxUIDlossless = '1.2.840.10008.1.2.4.90'; | ||
const jp2TransferSyntaxUID = '1.2.840.10008.1.2.4.91'; | ||
|
||
export { jp2MediaType, jp2TransferSyntaxUIDlossless, jp2TransferSyntaxUID }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const jpegMediaType = 'image/jpeg'; | ||
const jpegTransferSyntaxUIDlossy1 = '1.2.840.10008.1.2.4.50'; | ||
const jpegTransferSyntaxUIDlossy2 = '1.2.840.10008.1.2.4.51'; | ||
const jpegTransferSyntaxUIDlossless = '1.2.840.10008.1.2.4.57'; | ||
|
||
export { | ||
jpegMediaType, | ||
jpegTransferSyntaxUIDlossy1, | ||
jpegTransferSyntaxUIDlossy2, | ||
jpegTransferSyntaxUIDlossless, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const octetStreamMediaType = 'application/octet-stream'; | ||
const octetStreamTransferSyntaxUID = '*'; | ||
|
||
export { octetStreamMediaType, octetStreamTransferSyntaxUID }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const xdicomrleMediaType = 'image/x-dicom-rle'; | ||
const xdicomrleTransferSyntaxUID = '1.2.840.10008.1.2.5'; | ||
|
||
export { xdicomrleMediaType, xdicomrleTransferSyntaxUID }; |
Oops, something went wrong.