annotate OrthancServer/Resources/Samples/Python/ContinuousPatientAnonymization.py @ 5640:f7adfb22e20e

updated copyright, as Orthanc Team now replaces Osimis
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 30 May 2024 21:19:57 +0200
parents 48b8dae6dc77
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 #!/usr/bin/python
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 # Orthanc - A Lightweight, RESTful DICOM Store
1900
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 1340
diff changeset
4 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
5 # Department, University Hospital of Liege, Belgium
5640
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
6 # Copyright (C) 2017-2023 Osimis S.A., Belgium
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
7 # Copyright (C) 2024-2024 Orthanc Team SRL, Belgium
5485
48b8dae6dc77 upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5185
diff changeset
8 # Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 #
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 # This program is free software: you can redistribute it and/or
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 # modify it under the terms of the GNU General Public License as
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 # published by the Free Software Foundation, either version 3 of the
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 # License, or (at your option) any later version.
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 #
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 # This program is distributed in the hope that it will be useful, but
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 # General Public License for more details.
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 #
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20 # You should have received a copy of the GNU General Public License
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25 import time
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
26 import sys
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
27 import RestToolbox
4855
ffc03a1d60c3 fix sample scripts for Python3
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
28 import hashlib
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
29
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
31 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32 ## Print help message
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
33 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
34
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
35 if len(sys.argv) != 3:
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
36 print("""
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
37 Sample script that anonymizes patients in real-time. A patient gets
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 anonymized as soon as she gets stable (i.e. when no DICOM instance has
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39 been received for this patient for a sufficient amount of time - cf.
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
40 the configuration option "StableAge").
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42 Usage: %s [hostname] [HTTP port]
2032
65b1ce7cb84f Replaced "localhost" by "127.0.0.1", as it might impact performance on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 1900
diff changeset
43 For instance: %s 127.0.0.1 8042
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
44 """ % (sys.argv[0], sys.argv[0]))
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45 exit(-1)
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
46
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
47 URL = 'http://%s:%d' % (sys.argv[1], int(sys.argv[2]))
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
48
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
49
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
50
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
51 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
52 ## The following function is called whenever a patient gets stable
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
53 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
54
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
55 COUNT = 1
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
56
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
57 def AnonymizePatient(path):
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
58 global URL
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
59 global COUNT
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
60
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
61 patient = RestToolbox.DoGet(URL + path)
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
62 patientID = patient['MainDicomTags']['PatientID']
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
63
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
64 # Ignore anonymized patients
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
65 if not 'AnonymizedFrom' in patient:
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
66 print('Patient with ID "%s" is stabilized: anonymizing it...' % (patientID))
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
67
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
68 # The PatientID after anonymization is taken as the 8 first
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
69 # characters from the MD5 hash of the original PatientID
4855
ffc03a1d60c3 fix sample scripts for Python3
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
70 h = hashlib.md5(patientID.encode('ascii'))
ffc03a1d60c3 fix sample scripts for Python3
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
71 anonymizedID = h.hexdigest()[:8]
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
72 anonymizedName = 'Anonymized patient %d' % COUNT
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
73 COUNT += 1
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
74
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
75 RestToolbox.DoPost(URL + path + '/anonymize',
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
76 { 'Replace' : { 'PatientID' : anonymizedID,
4855
ffc03a1d60c3 fix sample scripts for Python3
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
77 'PatientName' : anonymizedName },
ffc03a1d60c3 fix sample scripts for Python3
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 4831
diff changeset
78 'Force' : True })
1340
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
79
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
80 # Delete the source patient after the anonymization
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
81 RestToolbox.DoDelete(URL + change['Path'])
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
82
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
83
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
84
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
85 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
86 ## Main loop that listens to the changes API.
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
87 ##
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
88
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
89 current = 0
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
90 while True:
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
91 r = RestToolbox.DoGet(URL + '/changes', {
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
92 'since' : current,
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
93 'limit' : 4 # Retrieve at most 4 changes at once
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
94 })
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
95
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
96 for change in r['Changes']:
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
97 if change['ChangeType'] == 'StablePatient':
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
98 AnonymizePatient(change['Path'])
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
99
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
100 current = r['Last']
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
101
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
102 if r['Done']:
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
103 print('Everything has been processed: Waiting...')
0ad4773f28b3 new Python sample
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
104 time.sleep(1)