Skip to content

Instantly share code, notes, and snippets.

@Bugerman58
Last active April 23, 2024 09:23
Show Gist options
  • Save Bugerman58/975393fbd2739b9ea0c9bef18642c05c to your computer and use it in GitHub Desktop.
Save Bugerman58/975393fbd2739b9ea0c9bef18642c05c to your computer and use it in GitHub Desktop.
Store DICOM file to DCM4CHEE using cURL via bash script
#!/bin/bash
# destination url and AE title
baseUrl="http://127.0.0.1:8080"
AET="TESTAETITLE"
boundary=$($RANDOM | md5sum | head -c 20)
header="--$boundary\r\n"
header="${header}Content-Disposition: form-data;name=\"file\";filename=\"$1\"\r\n"
header="${header}Content-Type: application/dicom\r\n\r\n"
# with parameter '-n' - do not output the trailing newline
echo -n "$header" > header
echo "\r\n--$boundary--" > footer
# assemble final request body
cat header "$1" footer > body
curl "$baseUrl/dcm4chee-arc/aets/$AET/rs/studies" -v -X POST \
-H "Content-Type: multipart/related;type=\"application/dicom\";boundary=$boundary" \
-H "Accept: application/dicom+json" \
--data-binary @body
rm header footer body
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment