Mercurial > hg > orthanc-book
annotate Sphinx/source/users/lua.rst @ 838:6afc236cd60a
dicom-web & main-dicom-tags
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 05 May 2022 12:27:09 +0200 |
parents | a9c35bf108fa |
children | 2f8ee0aef0a6 |
rev | line source |
---|---|
0 | 1 .. _lua: |
2 | |
3 Server-side scripting with Lua | |
4 ============================== | |
5 | |
6 .. contents:: | |
7 | |
8 Since release 0.5.2, Orthanc supports server-side scripting through | |
25 | 9 the `Lua <https://en.wikipedia.org/wiki/Lua_(programming_language)>`__ |
0 | 10 scripting language. Thanks to this major feature, Orthanc can be tuned |
11 to specific medical workflows without being driven by an external | |
12 script. This page summarizes the possibilities of Orthanc server-side | |
13 scripting. | |
14 | |
15 Many other examples are `available in the source distribution | |
449 | 16 <https://hg.orthanc-server.com/orthanc/file/default/OrthancServer/Resources/Samples/Lua/>`__. |
0 | 17 |
606
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
18 A more expressive alternative to Lua scripts is provided by |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
19 :ref:`Python plugins <python-plugins>`. |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
20 |
0 | 21 |
75 | 22 Installing a Lua script |
0 | 23 ----------------------- |
24 | |
25 .. highlight:: bash | |
26 | |
27 A custom Lua script can be installed either by the :ref:`configuration | |
28 file <configuration>`, or by uploading it | |
29 through the :ref:`REST API <rest-samples>`. | |
30 | |
31 To install it by the **configuration file** method, you just have to | |
32 specify the path to the file containing the Lua script in the | |
357 | 33 ``LuaScripts`` variable. A comma-separated list of paths can be |
34 specified to install multiple scripts. | |
0 | 35 |
36 To upload a script stored in the file "``script.lua``" through the | |
37 **REST API**, use the following command:: | |
38 | |
39 $ curl -X POST http://localhost:8042/tools/execute-script --data-binary @script.lua | |
40 | |
41 Pay attention to the fact that, contrarily to the scripts installed | |
42 from the configuration file, the scripts installed through the REST | |
43 API are non-persistent: They are discarded after a restart of Orthanc, | |
44 which makes them useful for script prototyping. You can also interpret | |
45 a single Lua command through the REST API:: | |
46 | |
47 $ curl -X POST http://localhost:8042/tools/execute-script --data-binary "print(42)" | |
48 | |
49 *Note:* The ``--data-binary`` cURL option is used instead of | |
50 ``--data`` to prevent the interpretation of newlines by cURL, which is | |
51 `mandatory for the proper evaluation | |
358
011b01ccf52d
fixing external hyperlinks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
357
diff
changeset
|
52 <https://stackoverflow.com/questions/3872427/how-to-send-line-break-with-curl>`__ |
011b01ccf52d
fixing external hyperlinks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
357
diff
changeset
|
53 of the possible comments inside the Lua script. |
0 | 54 |
55 Lua API | |
56 ------- | |
57 | |
58 | |
59 .. _lua-callbacks: | |
60 | |
61 Callbacks to react to events | |
62 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
63 | |
355
e4e9cca89c64
clarified mutual exclusion of Lua scripts callbacks.
David Wikler <david.wikler@ulb.ac.be>
parents:
319
diff
changeset
|
64 The Lua engine of Orthanc invokes the following callbacks that |
0 | 65 are triggered on various events. Here are the **generic events**: |
66 | |
67 * ``function Initialize()``: Invoked as soon as the Orthanc server is started. | |
68 * ``function Finalize()``: Invoked just before the Orthanc server is stopped. | |
69 | |
70 Some **permission-related events** allow to filter incoming requests: | |
71 | |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
72 * ``function ReceivedInstanceFilter(dicom, origin, info)``: Invoked to |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
73 known whether an incoming DICOM instance should be |
0 | 74 accepted. :ref:`See this section <lua-filter-dicom>`. The ``origin`` |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
75 parameter is :ref:`documented separately <lua-origin>`. The ``info`` |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
76 parameter contains additional information and was added in Orthanc |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
77 1.6.1. |
0 | 78 * ``function IncomingHttpRequestFilter(method, uri, ip, username, |
79 httpHeaders)``: Invoked to known whether a REST request should be | |
80 accepted. :ref:`See this section <lua-filter-rest>`. | |
81 | |
232 | 82 Some **job-related events** allow to react to :ref:`job <jobs>` completion/failure: |
83 | |
84 * ``function OnJobSubmitted(jobId)``: | |
85 Invoked when a new job has been submitted. Note that this does not | |
86 mean the the job execution has started. | |
87 * ``function OnJobFailure(jobId)``: | |
88 Invoked when a job has failed. | |
89 * ``function OnJobSuccess(jobId)``: | |
90 Invoked when a job has completed successfully. | |
91 | |
0 | 92 Some **DICOM-related events** allow to react to the reception of |
93 new medical images: | |
94 | |
95 * ``function OnStoredInstance(instanceId, tags, metadata, origin)``: | |
96 Invoked whenever a new instance has been stored into Orthanc. | |
97 This is especially useful for :ref:`lua-auto-routing`. The ``origin`` | |
98 parameter is :ref:`documented separately <lua-origin>`. | |
99 * ``function OnStablePatient(patientId, tags, metadata)``: Invoked | |
100 whenever a patient has not received any new instance for a certain | |
836 | 101 amount of time (cf. :ref:`stable resources <stable-resources>` |
102 and the option ``StableAge`` in the | |
0 | 103 :ref:`configuration file <configuration>`). The :ref:`identifier |
104 <orthanc-ids>` of the patient is provided, together with her DICOM | |
78 | 105 tags and her :ref:`metadata <metadata>`. |
0 | 106 * ``function OnStableSeries(seriesId, tags, metadata)``: Invoked |
107 whenever a series has not received any new instance for a certain | |
836 | 108 amount of time (cf. :ref:`stable resources <stable-resources>` |
109 and the option ``StableAge`` in the | |
110 :ref:`configuration file <configuration>`). | |
0 | 111 * ``function OnStableStudy(studyId, tags, metadata)``: Invoked |
112 whenever a study has not received any new instance for a certain | |
836 | 113 amount of time (cf. :ref:`stable resources <stable-resources>` |
114 and the option ``StableAge`` in the | |
115 :ref:`configuration file <configuration>`). | |
0 | 116 * ``function IncomingFindRequestFilter(source, origin)``: Invoked |
117 whenever Orthanc receives an incoming C-Find query through the DICOM | |
118 protocol. This allows to inspect the content of the C-Find query, | |
119 and possibly modify it if a patch is needed for some manufacturer. A | |
120 `sample script is available | |
449 | 121 <https://hg.orthanc-server.com/orthanc/file/default/OrthancServer/Resources/Samples/Lua/IncomingFindRequestFilter.lua>`__. |
0 | 122 |
319
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
123 Some other **resource-related events** are available: |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
124 |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
125 * ``function OnDeletedPatient(patientId)``: Invoked when a patient has |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
126 been removed from the Orthanc database (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
127 * ``function OnDeletedStudy(studyId)``: Invoked when a study has been |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
128 removed from the Orthanc database (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
129 * ``function OnDeletedSeries(seriesId)``: Invoked when a series has |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
130 been removed from the Orthanc database (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
131 * ``function OnDeletedInstance(instanceId)``: Invoked when a instance |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
132 has been removed from the Orthanc database (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
133 * ``function OnUpdatedPatient(patientId)``: Invoked when some metadata |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
134 or some attachment associated with the given patient has been |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
135 updated (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
136 * ``function OnUpdatedStudy(studyId)``: Invoked when some metadata or |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
137 some attachment associated with the given study has been updated |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
138 (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
139 * ``function OnUpdatedSeries(seriesId)``: Invoked when some metadata |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
140 or some attachment associated with the given series has been updated |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
141 (new in Orthanc 1.6.0). |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
142 * ``function OnUpdatedInstance(instanceId)``: Invoked when some |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
143 metadata or some attachment associated with the given instance has |
be69f8c86f56
Lua events for deleted/updated resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
144 been updated (new in Orthanc 1.6.0). |
606
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
145 |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
146 Furthermore, in versions of Orthanc <= 1.8.2, whenever a DICOM |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
147 association is negotiated for C-Store SCP, several callbacks are |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
148 successively invoked to specify which **transfer syntaxes** are |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
149 accepted for the association. These callbacks are listed in `this |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
150 sample script |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
151 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.8.2/OrthancServer/Resources/Samples/Lua/TransferSyntaxEnable.lua>`__. |
2f000ee9b20d
removal of Lua callbacks for transfer syntaxes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
152 These callbacks were removed in Orthanc 1.9.0. |
0 | 153 |
154 *Note:* All of these callbacks are guaranteed to be **invoked in | |
155 mutual exclusion**. This implies that Lua scripting in Orthanc does | |
357 | 156 not support any kind of concurrency. |
157 | |
158 If a callback is specified multiple times in separate scripts, the | |
159 event handler of the latest loaded script is used. | |
0 | 160 |
161 | |
162 .. _lua-rest: | |
163 | |
164 Calling the REST API of Orthanc | |
165 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
166 | |
167 Lua scripts have :ref:`full access to the REST API <rest>` of Orthanc | |
168 through the following functions: | |
169 | |
252
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
170 * ``RestApiGet(uri, builtin, headers)`` |
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
171 * ``RestApiPost(uri, body, builtin, headers)`` |
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
172 * ``RestApiPut(uri, body, builtin, headers)`` |
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
173 * ``RestApiDelete(uri, builtin, headers)`` |
0 | 174 |
237 | 175 Here is a description of the parameters: |
235
17f8eda5fccb
Documented some parameter types, expected string formatting and added samples.
Tomas Zubiri <me@tomaszubiri.com>
parents:
191
diff
changeset
|
176 |
237 | 177 * ``uri`` specifies the resource being accessed |
178 (e.g. ``/instances``). It must not include the URL schema | |
179 (protocol), hostname or port. | |
0 | 180 |
237 | 181 * In the context of a POST or PUT request, ``body`` is a string |
182 containing the body of the request | |
183 (e.g. ``{"Keep":"StudyDate"}``). This string will often correspond | |
184 to a JSON-formatted version of a `Lua table | |
185 <http://lua-users.org/wiki/TablesTutorial>`__. The ``DumpJson()`` | |
186 function (see below) is very useful to achieve this conversion from | |
187 a Lua table to a plain string. | |
235
17f8eda5fccb
Documented some parameter types, expected string formatting and added samples.
Tomas Zubiri <me@tomaszubiri.com>
parents:
191
diff
changeset
|
188 |
237 | 189 * ``builtin`` is an optional Boolean that specifies whether the |
190 request targets only the built-in REST API of Orthanc (if set to | |
191 ``true``), or the full the REST API after being tainted by plugins | |
192 (if set to ``false``). | |
235
17f8eda5fccb
Documented some parameter types, expected string formatting and added samples.
Tomas Zubiri <me@tomaszubiri.com>
parents:
191
diff
changeset
|
193 |
252
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
194 * ``headers`` is an optional argument and was added in release |
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
195 1.5.7. It allows to provide the REST API endpoint with HTTP headers. |
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
196 |
237 | 197 .. highlight:: bash |
198 | |
199 For instance:: | |
200 | |
201 RestApiPost('/instances/5af318ac-78fb-47ff-b0b0-0df18b0588e0/anonymize', '{}') | |
202 | |
0 | 203 |
783 | 204 Instance modification/routing |
205 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
206 | |
804
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
207 The Lua engine offers the following special functions to modify and |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
208 route DICOM instances: |
783 | 209 |
210 * ``ModifyInstance(instanceId, replacements, removals, removePrivateTags)`` | |
804
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
211 modifies an instance. |
783 | 212 * ``SendToModality(instanceId, modality)`` performs a C-Store to the |
804
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
213 target modality. |
783 | 214 * ``SendToPeer(instanceId, peer)`` sends the instance to a remote Orthanc peer. |
215 * ``Delete(instanceId)`` deletes the instance. | |
216 | |
804
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
217 :ref:`See this section <lua-auto-routing>` for examples. As can be |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
218 seen in those examples, these special functions can be chained |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
219 together, although they return no explicit value. |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
220 |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
221 Note that these special functions should only be used for basic use |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
222 cases: Calls to the REST API :ref:`should always be favored for |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
223 auto-routing <lua-auto-routing-better>`. |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
224 |
783 | 225 |
0 | 226 General-purpose functions |
227 ^^^^^^^^^^^^^^^^^^^^^^^^^ | |
228 | |
229 The Lua engine of Orthanc contain several general-purpose ancillary | |
230 functions: | |
231 | |
232 * ``PrintRecursive(v)`` recursively prints the content of a `Lua table | |
233 <http://www.lua.org/pil/2.5.html>`__ to the log file of Orthanc. | |
234 * ``ParseJson(s)`` converts a string encoded in the `JSON format | |
235 <https://en.wikipedia.org/wiki/JSON>`__ to a Lua table. | |
236 * ``DumpJson(v, keepStrings)`` encodes a Lua table as a JSON string. | |
237 Setting the optional argument ``keepStrings`` (available from | |
238 release 0.9.5) to ``true`` prevents the automatic conversion of | |
239 strings to integers. | |
240 * ``GetOrthancConfiguration()`` returns a Lua table containing the | |
241 content of the :ref:`configuration files <configuration>` of | |
242 Orthanc. | |
243 | |
244 | |
245 Similarly to the functions to :ref:`call the REST API of Orthanc | |
246 <lua-rest>`, several functions are available to make generic HTTP | |
247 requests to Web services: | |
248 | |
90 | 249 * ``HttpGet(url, headers)`` |
250 * ``HttpPost(url, body, headers)`` | |
251 * ``HttpPut(url, body, headers)`` | |
252 * ``HttpDelete(url, headers)`` | |
0 | 253 * ``SetHttpCredentials(username, password)`` can be used to setup the |
254 HTTP credentials. | |
255 | |
252
eaad8233e474
HTTP headers available for the RestApiXXX Lua function
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
237
diff
changeset
|
256 The ``headers`` argument is optional and was added in release |
91 | 257 1.2.1. It allows to set the HTTP headers for the HTTP client request. |
0 | 258 |
283 | 259 Example:: |
260 | |
261 local preview = RestApiGet('/instances/' .. instanceId .. '/preview') | |
262 local headers = { | |
263 ["content-type"] = "image/png", | |
264 } | |
265 HttpPost("http://localhost/my-web-service/instance-preview", preview, headers) | |
266 | |
0 | 267 .. _lua-origin: |
268 | |
269 Origin of the instances | |
270 ^^^^^^^^^^^^^^^^^^^^^^^ | |
271 | |
272 Whenever Orthanc decides whether it should should store a new instance | |
273 (cf. the ``ReceivedInstanceFilter()`` callback), or whenever it has | |
274 actually stored a new instance (cf. the ``OnStoredInstance`` | |
275 callback), an ``origin`` parameter is provided. This parameter is a | |
276 `Lua table <http://www.lua.org/pil/2.5.html>`__ that describes from | |
277 which Orthanc subsystem the new instance comes from. | |
278 | |
279 There are 4 possible subsystems, that can be distinguished according | |
280 to the value of ``origin["RequestOrigin"]``: | |
281 | |
282 * ``RestApi``: The instance originates from some HTTP request to the REST | |
283 API. In this case, the ``RemoteIp`` and ``Username`` fields are | |
284 available in ``origin``. They respectively describe the IP address | |
285 of the HTTP client, and the username that was used for HTTP | |
286 authentication (as defined in the ``RegisteredUsers`` | |
287 :ref:`configuration variable <configuration>`). | |
288 * ``DicomProtocol``: The instance originates from a DICOM C-Store. | |
289 The fields ``RemoteIp``, ``RemoteAet`` and ``CalledAet`` | |
290 respectively provide the IP address of the DICOM SCU (client), the | |
291 application entity title of the DICOM SCU client, and the | |
292 application entity title of the Orthanc SCP server. The | |
293 ``CalledAet`` can be used for :ref:`advanced auto-routing scenarios | |
294 <lua-auto-routing>`, when a single instance of Orthanc acts as a | |
295 proxy for several DICOM SCU clients. | |
296 * ``Lua``: The instance originates from a Lua script. | |
297 * ``Plugins``: The instance originates from a plugin. | |
298 | |
299 | |
300 .. _lua-filter-dicom: | |
301 | |
75 | 302 Filtering incoming DICOM instances |
0 | 303 ---------------------------------- |
304 | |
305 .. highlight:: lua | |
306 | |
307 Each time a DICOM instance is received by Orthanc (either through the | |
308 DICOM protocol or through the REST API), the | |
309 ``ReceivedInstanceFilter()`` Lua function is invoked. If this callback | |
310 returns ``true``, the instance is accepted for storage. If it returns | |
311 ``false``, the instance is discarded. This mechanism can be used to | |
312 filter the incoming DICOM instances. Here is an example of a Lua | |
313 filter that only allows incoming instances of MR modality:: | |
314 | |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
315 function ReceivedInstanceFilter(dicom, origin, info) |
0 | 316 -- Only allow incoming MR images |
317 if dicom.Modality == 'MR' then | |
318 return true | |
319 else | |
320 return false | |
321 end | |
322 end | |
323 | |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
324 The argument ``dicom`` corresponds to a `Lua table |
0 | 325 <http://www.lua.org/pil/2.5.html>`__ (i.e. an associative array) that |
326 contains the DICOM tags of the incoming instance. For debugging | |
327 purpose, you can print this structure as follows:: | |
328 | |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
329 function ReceivedInstanceFilter(dicom, origin, info) |
0 | 330 PrintRecursive(dicom) |
331 -- Accept all incoming instances (default behavior) | |
332 return true | |
333 end | |
334 | |
335 The argument ``origin`` is :ref:`documented separately <lua-origin>`. | |
336 | |
387
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
337 The argument ``info`` was introduced in Orthanc 1.6.1. It contains |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
338 some additional information about the received DICOM instance, |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
339 notably: |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
340 |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
341 * ``HasPixelData`` is ``true`` iff. the Pixel Data (7FE0,0010) tag is |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
342 present. |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
343 * ``TransferSyntaxUID`` contains the transfer syntax UID of the |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
344 dataset of the instance (if applicable). |
1974913fd28a
documenting "info" argument in Lua ReceivedInstanceFilter()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
360
diff
changeset
|
345 |
0 | 346 |
347 .. _lua-filter-rest: | |
348 | |
75 | 349 Filtering incoming REST requests |
0 | 350 -------------------------------- |
351 | |
352 .. highlight:: lua | |
353 | |
354 Lua scripting can be used to control the access to the various URI of | |
355 the REST API. Each time an incoming HTTP request is received, the | |
356 ``IncomingHttpRequestFilter()`` Lua function is called. The access to | |
357 the resource is granted if and only if this callback script returns | |
358 ``true``. | |
359 | |
360 This mechanism can be used to implement fine-grained `access control | |
25 | 361 lists <https://en.wikipedia.org/wiki/Access_control_list>`__. Here is |
0 | 362 an example of a Lua script that limits POST, PUT and DELETE requests |
363 to an user that is called "admin":: | |
364 | |
365 function IncomingHttpRequestFilter(method, uri, ip, username, httpHeaders) | |
366 -- Only allow GET requests for non-admin users | |
367 | |
368 if method == 'GET' then | |
369 return true | |
370 elseif username == 'admin' then | |
371 return true | |
372 else | |
373 return false | |
374 end | |
375 end | |
376 | |
377 Here is a description of the arguments of this Lua callback: | |
378 | |
379 * ``method``: The HTTP method (GET, POST, PUT or DELETE). | |
380 * ``uri``: The path to the resource (e.g. ``/tools/generate-uid``). | |
381 * ``ip``: The IP address of the host that has issued the HTTP request (e.g. ``127.0.0.1``). | |
382 * ``username``: If HTTP Basic Authentication is enabled in the | |
383 :ref:`configuration file <configuration>`, the name of the user that | |
384 has issued the HTTP request (as defined in the ``RegisteredUsers`` | |
385 configuration variable). If the authentication is disabled, this | |
386 argument is set to the empty string. | |
387 * ``httpHeaders``: The HTTP headers of the incoming request. This | |
388 argument is available since Orthanc 1.0.1. It is useful if the | |
389 authentication should be achieved through tokens, for instance | |
390 against a `LDAP | |
391 <https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol>`__ | |
392 or `OAuth2 <https://en.wikipedia.org/wiki/OAuth>`__ server. | |
393 | |
394 | |
395 .. _lua-auto-routing: | |
396 | |
75 | 397 Auto-routing of DICOM images |
0 | 398 ---------------------------- |
399 | |
400 .. highlight:: lua | |
401 | |
402 Since release 0.8.0, the routing of DICOM flows can be very easily | |
403 automated with Orthanc. All you have to do is to declare your | |
404 destination modality in the :ref:`configuration file <configuration>` | |
405 (section ``DicomModalities``), then to create and install a Lua | |
406 script. For instance, here is a sample script:: | |
407 | |
408 function OnStoredInstance(instanceId, tags, metadata) | |
409 Delete(SendToModality(instanceId, 'sample')) | |
410 end | |
411 | |
412 If this script is loaded into Orthanc, whenever a new DICOM instance | |
413 is received by Orthanc, it will be routed to the modality whose | |
414 symbolic name is ``sample`` (through a Store-SCU command), then it | |
415 will be removed from Orthanc. In other words, this is a **one-liner | |
416 script to implement DICOM auto-routing**. | |
417 | |
418 Very importantly, thanks to this feature, you do not have to use the | |
419 REST API or to create external scripts in order to automate simple | |
420 imaging flows. The scripting engine is entirely contained inside the | |
421 Orthanc core system. | |
422 | |
423 Thanks to Lua expressiveness, you can also implement conditional | |
424 auto-routing. For instance, if you wish to route only patients whose | |
425 name contains "David", you would simply write:: | |
426 | |
427 function OnStoredInstance(instanceId, tags, metadata) | |
428 -- Extract the value of the "PatientName" DICOM tag | |
429 local patientName = string.lower(tags['PatientName']) | |
430 | |
431 if string.find(patientName, 'david') ~= nil then | |
432 -- Only route patients whose name contains "David" | |
433 Delete(SendToModality(instanceId, 'sample')) | |
434 | |
435 else | |
436 -- Delete the patients that are not called "David" | |
437 Delete(instanceId) | |
438 end | |
439 end | |
440 | |
441 Besides ``SendToModality()``, a mostly identical function with the | |
442 same arguments called ``SendToPeer()`` can be used to route instances | |
443 to :ref:`Orthanc peers <peers>`. It is also possible to modify the | |
444 received instances before routing them. For instance, here is how you | |
445 would replace the ``StationName`` DICOM tag:: | |
446 | |
447 function OnStoredInstance(instanceId, tags, metadata) | |
448 -- Ignore the instances that result from a modification to avoid | |
449 -- infinite loops | |
450 if (metadata['ModifiedFrom'] == nil and | |
451 metadata['AnonymizedFrom'] == nil) then | |
452 | |
453 -- The tags to be replaced | |
454 local replace = {} | |
455 replace['StationName'] = 'My Medical Device' | |
456 | |
457 -- The tags to be removed | |
458 local remove = { 'MilitaryRank' } | |
459 | |
460 -- Modify the instance, send it, then delete the modified instance | |
461 Delete(SendToModality(ModifyInstance(instanceId, replace, remove, true), 'sample')) | |
462 | |
463 -- Delete the original instance | |
464 Delete(instanceId) | |
465 end | |
466 end | |
467 | |
468 | |
804
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
469 .. _lua-auto-routing-better: |
e7de02760b59
fix revision 783, to solve bug #203
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
783
diff
changeset
|
470 |
75 | 471 Important remarks about auto-routing |
472 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
19
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
473 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
474 The ``SendToModality()``, ``SendToPeer()``, ``ModifyInstance()`` and |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
475 ``Delete()`` functions are for the most basic cases of auto-routing |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
476 (implying a single DICOM instance, and possibly a basic modification |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
477 of this instance). The ``ModifyInstance()`` function `could also lead |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
478 to problems |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
479 <https://groups.google.com/d/msg/orthanc-users/hmv2y-LgKm8/oMAuGJWMBgAJ>`__ |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
480 if it deals with tags wrongly interpreted as numbers by Lua. |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
481 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
482 For more evolved auto-routing scenarios, remember that Lua scripts |
191 | 483 :ref:`have full access to the REST API of Orthanc <lua-rest>`. This is |
19
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
484 illustrated by the ``AutoroutingModification.lua`` sample available in |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
485 the source distribution of Orthanc:: |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
486 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
487 function OnStoredInstance(instanceId, tags, metadata, origin) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
488 -- Ignore the instances that result from the present Lua script to |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
489 -- avoid infinite loops |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
490 if origin['RequestOrigin'] ~= 'Lua' then |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
491 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
492 -- The tags to be replaced |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
493 local replace = {} |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
494 replace['StationName'] = 'My Medical Device' |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
495 replace['0031-1020'] = 'Some private tag' |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
496 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
497 -- The tags to be removed |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
498 local remove = { 'MilitaryRank' } |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
499 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
500 -- Modify the instance |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
501 local command = {} |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
502 command['Replace'] = replace |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
503 command['Remove'] = remove |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
504 local modifiedFile = RestApiPost('/instances/' .. instanceId .. '/modify', DumpJson(command, true)) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
505 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
506 -- Upload the modified instance to the Orthanc database so that |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
507 -- it can be sent by Orthanc to other modalities |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
508 local modifiedId = ParseJson(RestApiPost('/instances/', modifiedFile)) ['ID'] |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
509 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
510 -- Send the modified instance to another modality |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
511 RestApiPost('/modalities/sample/store', modifiedId) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
512 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
513 -- Delete the original and the modified instances |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
514 RestApiDelete('/instances/' .. instanceId) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
515 RestApiDelete('/instances/' .. modifiedId) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
516 end |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
517 end |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
518 |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
519 Also note that :ref:`other callbacks are available <lua-callbacks>` |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
520 (``OnStablePatient()``, ``OnStableStudy()`` and ``OnStableSeries()``) |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
521 to react to other events than the reception of a single instance |
c98317fedf87
note about autorouting
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
522 with ``OnStoredInstance()``. |
75 | 523 |
99
e83da2f99e45
added 'troubleshooting C-Find queries' in the worklist section
amazy
parents:
91
diff
changeset
|
524 .. _lua-fix-cfind: |
75 | 525 |
77
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
526 Fixing C-Find requests |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
527 ---------------------- |
75 | 528 |
529 :ref:`C-Find requests <dicom-find>` are sometimes interpreted | |
77
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
530 differently by different DICOM servers (e.g. the ``*`` wildcard, as |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
531 `reported by users |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
532 <https://groups.google.com/d/msg/orthanc-users/3g7V7kqr3g0/IREL88RWAwAJ>`__), |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
533 and sometimes a querying modality might set unexpected DICOM tags |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
534 (cf. `this real-world example |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
535 <https://groups.google.com/d/msg/orthanc-users/PLWKqVVaXLs/n_0x4vKhAgAJ>`__). In |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
536 such situations, it is possible to dynamically fix incoming or |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
537 outgoing C-Find queries using a Lua script. |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
538 |
165
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
539 Sanitizing incoming C-Find requests can be done by implementing the |
77
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
540 ``IncomingFindRequestFilter(query, origin)`` callback that is called |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
541 whenever the Orthanc C-Find SCP is queried by a remote modality. For |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
542 instance, here is Lua script to remove a private tag that is specified |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
543 by some manufacturer:: |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
544 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
545 function IncomingFindRequestFilter(query, origin) |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
546 -- First display the content of the C-Find query |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
547 PrintRecursive(query) |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
548 PrintRecursive(origin) |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
549 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
550 -- Remove the "PrivateCreator" tag from the query |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
551 local v = query |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
552 v['5555,0010'] = nil |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
553 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
554 return v |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
555 end |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
556 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
557 The ``origin`` argument contains information about which modality has |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
558 issued the request. |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
559 |
443
c66d8b7b1a13
more info about IncomingFindRequestFilter
Alain Mazy <alain@mazy.be>
parents:
387
diff
changeset
|
560 Note that this callback allows you to modify the incoming request |
c66d8b7b1a13
more info about IncomingFindRequestFilter
Alain Mazy <alain@mazy.be>
parents:
387
diff
changeset
|
561 but will not modify the list of tags that Orthanc will return. |
c66d8b7b1a13
more info about IncomingFindRequestFilter
Alain Mazy <alain@mazy.be>
parents:
387
diff
changeset
|
562 |
c66d8b7b1a13
more info about IncomingFindRequestFilter
Alain Mazy <alain@mazy.be>
parents:
387
diff
changeset
|
563 Also note that the ``IncomingFindRequestFilter`` callback is not applied to |
165
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
564 C-Find requests targeting :ref:`modality worklists |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
565 <worklists-plugin>`. Since Orthanc 1.4.2, the corresponding |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
566 ``IncomingWorklistRequestFilter`` callback can be used to sanitize |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
567 C-FIND requests against worklists:: |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
568 |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
569 function IncomingWorklistRequestFilter(query, origin) |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
570 PrintRecursive(query) |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
571 PrintRecursive(origin) |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
572 |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
573 -- Implements the same behavior as the "FilterIssuerAet" |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
574 -- option of the sample worklist plugin |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
575 query['0040,0100'][1]['0040,0001'] = origin['RemoteAet'] |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
576 |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
577 return query |
b879a6274065
IncomingWorklistRequestFilter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
105
diff
changeset
|
578 end |
105
268ec482f051
IncomingFindRequestFilter not applied to worklist plugin
amazy
parents:
99
diff
changeset
|
579 |
443
c66d8b7b1a13
more info about IncomingFindRequestFilter
Alain Mazy <alain@mazy.be>
parents:
387
diff
changeset
|
580 |
77
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
581 Similarly, the callback ``OutgoingFindRequestFilter(query, modality)`` |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
582 is invoked whenever Orthanc acts as a C-Find SCU, which gives the |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
583 opportunity to dynamically fix outgoing C-Find requests before they |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
584 are actually sent to the queried modality. For instance, here is a |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
585 sample Lua callback that would replace asterisk wildcards (i.e. ``*``) |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
586 by an empty string for any query/retrieve issued by Orthanc (including |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
587 from Orthanc Explorer):: |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
588 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
589 function OutgoingFindRequestFilter(query, modality) |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
590 for key, value in pairs(query) do |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
591 if value == '*' then |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
592 query[key] = '' |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
593 end |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
594 end |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
595 |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
596 return query |
48c7d2eb98da
Fixing C-Find requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
75
diff
changeset
|
597 end |
668 | 598 |
599 | |
600 .. _lua-external-modules: | |
601 | |
602 Using external modules | |
603 ---------------------- | |
604 | |
605 Starting with Orthanc 1.3.2, it is possible to use external Lua | |
606 modules if Orthanc was compiled with the ``-DENABLE_LUA_MODULES=ON`` | |
607 while invoking CMake. | |
608 | |
609 Importantly, the modules and the Orthanc server must use the same | |
610 version of Lua for external modules to be properly loaded. | |
611 | |
612 Check out the Orthanc Users forum for old discussions about this | |
613 topic: `reference 1 | |
614 <https://groups.google.com/g/orthanc-users/c/BXfmwU786B0/m/M47slt5GFwAJ>`__, | |
615 `reference 2 | |
616 <https://groups.google.com/g/orthanc-users/c/BXfmwU786B0/m/qpVe8UvGAwAJ>`__, | |
617 `reference 3 | |
618 <https://groups.google.com/g/orthanc-users/c/LDAN5jA0X8M/m/4zrk0_AaBAAJ>`__. |