app.api.exam_requests ===================== .. py:module:: app.api.exam_requests .. autoapi-nested-parse:: Handler for protocol requests. This module defines functions to interact with the protocol manager service, including fetching tasks, sequences, and results. It provides a way to create and update acquisition tasks and results, ensuring that the data is properly formatted and authenticated. Copyright (C) 2023, BRAIN-LINK UG (haftungsbeschränkt). All Rights Reserved. SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-ScanHub-Commercial Attributes ---------- .. autoapisummary:: app.api.exam_requests.TASK_URI app.api.exam_requests.RESULT_URI app.api.exam_requests.SEQUENCE_URI Functions --------- .. autoapisummary:: app.api.exam_requests.get_task app.api.exam_requests.set_task app.api.exam_requests.get_sequence app.api.exam_requests.create_blank_result app.api.exam_requests.delete_blank_result app.api.exam_requests.set_result app.api.exam_requests.update_task_status app.api.exam_requests.get_result Module Contents --------------- .. py:data:: TASK_URI :value: 'http://protocol-manager:8000/api/v1/protocol/task' .. py:data:: RESULT_URI :value: 'http://protocol-manager:8000/api/v1/protocol/result' .. py:data:: SEQUENCE_URI :value: 'http://protocol-manager:8000/api/v1/protocol/sequence' .. py:function:: get_task(task_id: str, user_access_token: str) -> scanhub_libraries.models.AcquisitionTaskOut Fetch acquisition task by ID from the protocol manager service. Args ---- task_id (str): The unique identifier of the task to retrieve. user_access_token (str): The user's access token for authentication. Returns ------- AcquisitionTaskOut | None: The acquisition task object if found and valid. Raises ------ HTTPException: If the task is not found (404) or is not an acquisition task (400). .. py:function:: set_task(task_id: str, payload: scanhub_libraries.models.AcquisitionTaskOut, user_access_token: str) -> scanhub_libraries.models.AcquisitionTaskOut Update an acquisition task on the task service with the provided payload. Parameters ---------- task_id : str The unique identifier of the task to update. payload : AcquisitionTaskOut The updated task data to send to the task service. user_access_token : str The access token used for authorization with the task service. Returns ------- AcquisitionTaskOut The updated task object returned from the task service. Raises ------ HTTPException If the task update fails (e.g. non-200 response from the task service). .. py:function:: get_sequence(sequence_id: str, user_access_token: str) -> scanhub_libraries.models.MRISequenceOut Fetch MRI sequence by ID from the protocol manager service. Args ---- sequence_id (str): The unique identifier of the sequence to retrieve. user_access_token (str): The user's access token for authentication. Returns ------- dict: The MRI sequence object if found. Raises ------ HTTPException: If the sequence is not found (404). .. py:function:: create_blank_result(task_id: str, user_access_token: str) -> scanhub_libraries.models.ResultOut Create a blank result in the protocol manager service. Returns ------- ResultOut: The created blank result object. Raises ------ HTTPException: If the result creation fails (status code not 201). .. py:function:: delete_blank_result(result_id: str, user_access_token: str) -> None Delete a blank result in the protocol manager service. Args ---- result_id (str): The unique identifier of the result to delete. user_access_token (str): The user's access token for authentication. Returns ------- None Raises ------ HTTPException: If the result deletion fails (status code not 204). .. py:function:: set_result(result_id: str, payload: scanhub_libraries.models.SetResult, user_access_token: str) -> scanhub_libraries.models.ResultOut Update a result in the protocol manager service. Args ---- result_id (str): The unique identifier of the result to update. payload (SetResult): The data to update the result with. user_access_token (str): The user's access token for authentication. Returns ------- ResultOut: The updated result object. Raises ------ HTTPException: If the result update fails (status code not 200). .. py:function:: update_task_status(task_id: str, status: str, user_access_token: str) -> scanhub_libraries.models.AcquisitionTaskOut Update only the status field of a task. .. py:function:: get_result(result_id: str, user_access_token: str) -> scanhub_libraries.models.ResultOut Fetch result by ID from the protocol manager service. Args ---- result_id (str): The unique identifier of the result to retrieve. user_access_token (str): The user's access token for authentication. Returns ------- ResultOut | None: The result object if found and valid. Raises ------ HTTPException: If the result is not found (404).