Mercurial > hg > orthanc-tests
annotate Plugins/DicomWeb/DicomWeb.py @ 131:90e5331ddee9
application/dicom+json is now the default in DICOMweb
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 11 Jan 2018 16:37:21 +0100 |
parents | 50cd127e5330 |
children | af8e034f4262 |
rev | line source |
---|---|
33 | 1 #!/usr/bin/python |
2 | |
3 # Orthanc - A Lightweight, RESTful DICOM Store | |
73 | 4 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
33 | 5 # Department, University Hospital of Liege, Belgium |
130
50cd127e5330
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
100
diff
changeset
|
6 # Copyright (C) 2017-2018 Osimis S.A., Belgium |
33 | 7 # |
8 # This program is free software: you can redistribute it and/or | |
9 # modify it under the terms of the GNU General Public License as | |
10 # published by the Free Software Foundation, either version 3 of the | |
11 # License, or (at your option) any later version. | |
12 # | |
13 # This program is distributed in the hope that it will be useful, but | |
14 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 # General Public License for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 | |
21 | |
22 import os | |
23 import sys | |
24 import email | |
83 | 25 import uuid |
33 | 26 |
27 from email.mime.multipart import MIMEMultipart | |
28 from email.mime.application import MIMEApplication | |
29 | |
30 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'Tests')) | |
31 from Toolbox import * | |
32 | |
33 | |
83 | 34 def _AttachPart(body, path, contentType, boundary): |
33 | 35 with open(path, 'rb') as f: |
83 | 36 body += bytearray('--%s\r\n' % boundary, 'ascii') |
37 body += bytearray('Content-Type: %s\r\n\r\n' % contentType, 'ascii') | |
38 body += f.read() | |
39 body += bytearray('\r\n', 'ascii') | |
33 | 40 |
41 | |
42 def SendStow(orthanc, uri, dicom): | |
83 | 43 # We do not use Python's "email" package, as it uses LF (\n) for line |
44 # endings instead of CRLF (\r\n) for binary messages, as required by | |
45 # RFC 1341 | |
46 # http://stackoverflow.com/questions/3086860/how-do-i-generate-a-multipart-mime-message-with-correct-crlf-in-python | |
47 # https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html | |
48 | |
49 # Create a multipart message whose body contains all the input DICOM files | |
50 boundary = str(uuid.uuid4()) # The boundary is a random UUID | |
51 body = bytearray() | |
33 | 52 |
53 if isinstance(dicom, list): | |
54 for i in range(dicom): | |
83 | 55 _AttachPart(body, dicom[i], 'application/dicom', boundary) |
33 | 56 else: |
83 | 57 _AttachPart(body, dicom, 'application/dicom', boundary) |
33 | 58 |
83 | 59 # Closing boundary |
60 body += bytearray('--%s--' % boundary, 'ascii') | |
33 | 61 |
83 | 62 # Do the HTTP POST request to the STOW-RS server |
63 headers = { | |
64 'Content-Type' : 'multipart/related; type=application/dicom; boundary=%s' % boundary, | |
65 'Accept' : 'application/json', | |
66 } | |
33 | 67 |
68 return DoPost(orthanc, uri, body, headers = headers) |