Skip to content

CADIP

Module for interacting with CADU system through a FastAPI APIRouter.

This module provides functionality to retrieve a list of products from the CADU system for a specified station. It includes an API endpoint, utility functions, and initialization for accessing EODataAccessGateway.

MockPgstacCadip

Bases: MockPgstac

Cadip implementation of MockPgstac

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
class MockPgstacCadip(MockPgstac):
    """Cadip implementation of MockPgstac"""

    def __init__(self, request: Request | None = None, readwrite: Literal["r", "w"] | None = None):
        """Constructor"""
        super().__init__(
            request=request,
            readwrite=readwrite,
            service="cadip",
            all_collections=lambda: read_conf()["collections"],
            select_config=select_config,
            stac_to_odata=stac_to_odata,
            map_mission=cadip_map_mission,
        )

        # Default sortby value
        self.sortby = "-published"

    @handle_exceptions
    def process_search(  # type: ignore
        self,
        collection: dict,
        odata_params: dict,
        limit: int,
        page: int,
    ) -> stac_pydantic.ItemCollection:
        """Search cadip sessions the given collection and OData parameters."""
        return process_session_search(
            self.request,
            collection.get("station", "cadip"),
            odata_params,
            self.sortby,
            limit,
            page,
        )

    @handle_exceptions
    def process_asset_search(
        self,
        station: str,
        session_features: list[Item],
    ):
        """
        Search cadip files for each input cadip session and their associated station.
        Update input session assets with their associated files.

        Args:
            station (str): station identifier
            session_features (list[Item]): sessions as Item objects
        """

        # Join session ids with ', '
        features_ids = ", ".join(feature.id for feature in session_features)

        assets: list[dict] = []
        page = 1
        while True:
            chunked_assets = process_files_search(
                station,
                {"SessionId": features_ids},
                map_to_session=True,
                page=page,
            )
            # Gather results into assets list for later allocation
            assets.extend(chunked_assets)

            if len(chunked_assets) < DEFAULT_FILES_LIMIT:
                # If assets are less than maximum limit, then session is complete.
                break
            # If assets are equal to maximum limit, then send another request for the next page
            page += 1

        # Update input session items with assets
        link_assets_to_session(session_features, assets)

    def process_files(self, empty_sessions_data: dict) -> dict:
        """
        Search cadip files for each input cadip session. Update the sessions data with their files data.

        Args:
            empty_sessions_data (dict): dict representation of an ItemCollection

        Returns:
            dict: updated input dict.
        """

        # Convert input dict into stac object
        item_collection = stac_pydantic.ItemCollection.model_validate(empty_sessions_data)

        # Group sessions coming from the same collection. {col1: "item1, item2", col2: "item3" }
        grouped_sessions = defaultdict(list)
        for session in item_collection.features:
            grouped_sessions[session.collection].append(session)

        # Update input session assets with their associated files, in separate threads
        file_threads = [
            threading.Thread(
                target=self.process_asset_search,
                args=(
                    self.select_config(collection_id)["station"],
                    session_features,
                ),
            )
            for collection_id, session_features in grouped_sessions.items()
        ]
        for thread in file_threads:
            thread.start()
        for thread in file_threads:
            thread.join()

        # Convert back the stac object into dict.
        # We implemented some custom Item formating, so we do a back and forth conversion
        # to apply the formating, then finally return a dict.
        formatted = [Item.model_validate(feature.model_dump()) for feature in item_collection.features]
        return stac_pydantic.ItemCollection(features=formatted, type=item_collection.type).model_dump()

__init__(request=None, readwrite=None)

Constructor

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
100
101
102
103
104
105
106
107
108
109
110
111
112
113
def __init__(self, request: Request | None = None, readwrite: Literal["r", "w"] | None = None):
    """Constructor"""
    super().__init__(
        request=request,
        readwrite=readwrite,
        service="cadip",
        all_collections=lambda: read_conf()["collections"],
        select_config=select_config,
        stac_to_odata=stac_to_odata,
        map_mission=cadip_map_mission,
    )

    # Default sortby value
    self.sortby = "-published"

Search cadip files for each input cadip session and their associated station. Update input session assets with their associated files.

Parameters:

Name Type Description Default
station str

station identifier

required
session_features list[Item]

sessions as Item objects

required
Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
@handle_exceptions
def process_asset_search(
    self,
    station: str,
    session_features: list[Item],
):
    """
    Search cadip files for each input cadip session and their associated station.
    Update input session assets with their associated files.

    Args:
        station (str): station identifier
        session_features (list[Item]): sessions as Item objects
    """

    # Join session ids with ', '
    features_ids = ", ".join(feature.id for feature in session_features)

    assets: list[dict] = []
    page = 1
    while True:
        chunked_assets = process_files_search(
            station,
            {"SessionId": features_ids},
            map_to_session=True,
            page=page,
        )
        # Gather results into assets list for later allocation
        assets.extend(chunked_assets)

        if len(chunked_assets) < DEFAULT_FILES_LIMIT:
            # If assets are less than maximum limit, then session is complete.
            break
        # If assets are equal to maximum limit, then send another request for the next page
        page += 1

    # Update input session items with assets
    link_assets_to_session(session_features, assets)

process_files(empty_sessions_data)

Search cadip files for each input cadip session. Update the sessions data with their files data.

Parameters:

Name Type Description Default
empty_sessions_data dict

dict representation of an ItemCollection

required

Returns:

Name Type Description
dict dict

updated input dict.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
def process_files(self, empty_sessions_data: dict) -> dict:
    """
    Search cadip files for each input cadip session. Update the sessions data with their files data.

    Args:
        empty_sessions_data (dict): dict representation of an ItemCollection

    Returns:
        dict: updated input dict.
    """

    # Convert input dict into stac object
    item_collection = stac_pydantic.ItemCollection.model_validate(empty_sessions_data)

    # Group sessions coming from the same collection. {col1: "item1, item2", col2: "item3" }
    grouped_sessions = defaultdict(list)
    for session in item_collection.features:
        grouped_sessions[session.collection].append(session)

    # Update input session assets with their associated files, in separate threads
    file_threads = [
        threading.Thread(
            target=self.process_asset_search,
            args=(
                self.select_config(collection_id)["station"],
                session_features,
            ),
        )
        for collection_id, session_features in grouped_sessions.items()
    ]
    for thread in file_threads:
        thread.start()
    for thread in file_threads:
        thread.join()

    # Convert back the stac object into dict.
    # We implemented some custom Item formating, so we do a back and forth conversion
    # to apply the formating, then finally return a dict.
    formatted = [Item.model_validate(feature.model_dump()) for feature in item_collection.features]
    return stac_pydantic.ItemCollection(features=formatted, type=item_collection.type).model_dump()

Search cadip sessions the given collection and OData parameters.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@handle_exceptions
def process_search(  # type: ignore
    self,
    collection: dict,
    odata_params: dict,
    limit: int,
    page: int,
) -> stac_pydantic.ItemCollection:
    """Search cadip sessions the given collection and OData parameters."""
    return process_session_search(
        self.request,
        collection.get("station", "cadip"),
        odata_params,
        self.sortby,
        limit,
        page,
    )

auth_validation(request, collection_id, access_type)

Check if the user KeyCloak roles contain the right for this specific CADIP collection and access type.

Parameters:

Name Type Description Default
collection_id str

Used to find the CADIP station ("CADIP", "INS", "MPS", "MTI", "NSG", "SGS") from the RSPY_CADIP_SEARCH_CONFIG config yaml file.

required
access_type str

The type of access, such as "download" or "read".

required
Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
def auth_validation(request: Request, collection_id: str, access_type: str):
    """
    Check if the user KeyCloak roles contain the right for this specific CADIP collection and access type.

    Args:
        collection_id (str): Used to find the CADIP station ("CADIP", "INS", "MPS", "MTI", "NSG", "SGS")
                            from the RSPY_CADIP_SEARCH_CONFIG config yaml file.
        access_type (str): The type of access, such as "download" or "read".
    """

    # Find the collection which id == the input collection_id
    collection = select_config(collection_id)
    if not collection:
        raise HTTPException(status.HTTP_404_NOT_FOUND, f"Unknown CADIP collection: {collection_id!r}")
    station = collection["station"]

    # Call the authentication function from the authentication module
    authentication.auth_validation("cadip", access_type, request=request, station=station)

get_allowed_cadip_collections(request) async

Endpoint to retrieve an object containing collections and links that a user is authorized to
access based on their API key.

This endpoint reads the API key from the request to determine the roles associated with the user. Using these roles, it identifies the stations the user can access and filters the available collections accordingly. The endpoint then constructs a JSON, which includes links to the collections that match the allowed stations.

  • It begins by extracting roles from the request.state.auth_roles and derives the station names the user has access to.
  • Then, it filters the collections from the configuration to include only those belonging to the allowed stations.
  • For each filtered collection, a corresponding STAC collection is created with links to detailed session searches.

The final response is a dictionary representation of the STAC catalog, which includes details about the collections the user is allowed to access.

Returns:

Name Type Description
dict dict

Object containing an array of Collection objects in the Catalog, and Link relations.

Raises:

Type Description
HTTPException

If there are issues with reading configurations or processing session searches.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
@router.get("/cadip/collections")
@handle_exceptions
async def get_allowed_cadip_collections(request: Request) -> dict:
    """
        Endpoint to retrieve an object containing collections and links that a user is authorized to
        access based on their API key.

    This endpoint reads the API key from the request to determine the roles associated with the user.
    Using these roles, it identifies the stations the user can access and filters the available collections
    accordingly. The endpoint then constructs a JSON, which includes links to the collections that match the allowed
    stations.

    - It begins by extracting roles from the `request.state.auth_roles` and derives the station names
      the user has access to.
    - Then, it filters the collections from the configuration to include only those belonging to the
      allowed stations.
    - For each filtered collection, a corresponding STAC collection is created with links to detailed
      session searches.

    The final response is a dictionary representation of the STAC catalog, which includes details about
    the collections the user is allowed to access.

    Returns:
        dict: Object containing an array of Collection objects in the Catalog, and Link relations.

    Raises:
        HTTPException: If there are issues with reading configurations or processing session searches.
    """
    logger.info(f"Starting {request.url.path}")
    authentication.auth_validation("cadip", "landing_page", request=request)
    return await request.app.state.pgstac_client.all_collections(request=request)

get_cadip_collection(request, collection_id) async

Retrieve a STAC-Compliant Collection for a Specific CADIP Station.

This endpoint fetches and returns session data from an external CADIP server, structured as a STAC-compliant Collection. By specifying a collection_id, the client can retrieve a collection of session metadata related to that CADIP station.

Path Parameters:
  • collection_id (string): The unique identifier of the CADIP collection to retrieve.
Response:

The response is a STAC Collection object formatted as a dictionary, which contains links to session details. Each session is represented as a link inside the links array, following the STAC specification. These links point to the detailed metadata for each session.

Key Operations:
  1. Configuration Lookup: Reads the relevant configuration from RSPY_CADIP_SEARCH_CONFIG.
  2. CADIP Server Request: Sends a request to the CADIP server to retrieve session data.
  3. STAC Formatting: Transforms the session data into a STAC Collection format.
  4. Link Creation: Adds links to session details in the response.
Responses:
  • 200 OK: Returns the STAC Collection containing links to session metadata. If multiple collections are available, returns a list of collections.
  • 422 Unprocessable Entity: Returns an error if the STAC Collection cannot be created due to missing or invalid configuration details.
Raises:
  • HTTPException:
  • 422 Unprocessable Entity: If any configuration data is missing, invalid, or causes an error when creating the STAC Collection.

This endpoint is secured by an API key validator, ensuring that only authorized users can retrieve data from the CADIP station.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
@router.get("/cadip/collections/{collection_id}")
@handle_exceptions
async def get_cadip_collection(
    request: Request,
    collection_id: Annotated[str, FPath(title="CADIP collection ID.", max_length=100, description="E.G. ins_s1")],
) -> list[dict] | dict | stac_pydantic.Collection:
    """
    Retrieve a STAC-Compliant Collection for a Specific CADIP Station.

    This endpoint fetches and returns session data from an external CADIP server, structured as a STAC-compliant
    Collection. By specifying a `collection_id`, the client can retrieve a collection of session metadata related to
    that CADIP station.

    ### Path Parameters:
    - `collection_id` (string): The unique identifier of the CADIP collection to retrieve.

    ### Response:
    The response is a STAC Collection object formatted as a dictionary, which contains links to session details.
    Each session is represented as a link inside the `links` array, following the STAC specification. These links point
     to the detailed metadata for each session.

    ### Key Operations:
    1. **Configuration Lookup**: Reads the relevant configuration from `RSPY_CADIP_SEARCH_CONFIG`.
    2. **CADIP Server Request**: Sends a request to the CADIP server to retrieve session data.
    3. **STAC Formatting**: Transforms the session data into a STAC Collection format.
    4. **Link Creation**: Adds links to session details in the response.

    ### Responses:
    - **200 OK**: Returns the STAC Collection containing links to session metadata. If multiple collections are
    available, returns a list of collections.
    - **422 Unprocessable Entity**: Returns an error if the STAC Collection cannot be created due to missing or invalid
    configuration details.

    ### Raises:
    - **HTTPException**:
      - **422 Unprocessable Entity**: If any configuration data is missing, invalid, or causes an error when creating
      the STAC Collection.

    This endpoint is secured by an API key validator, ensuring that only authorized users can retrieve data from the
    CADIP station.
    """
    logger.info(f"Starting {request.url.path}")
    auth_validation(request, collection_id, "read")
    return await request.app.state.pgstac_client.get_collection(collection_id, request)

get_cadip_collection_item_details(request, collection_id, session_id) async

Retrieve Detailed Information for a specific session in a collection.

This endpoint fetches metadata and asset details for a specific session within a collection from the CADIP station. Clients can request session details by providing the collection_id and session_id as path parameters. The session data is retrieved and converted from the original OData format into the STAC format, which provides standardized metadata for spatiotemporal datasets.

Path Parameters:
  • collection_id (string): The unique identifier of the collection from which the session is being retrieved.
  • session_id (string): The identifier of the specific session within the collection for which details are requested.
Response:

Returns a STAC Item containing metadata and asset details about the requested session, including: - Session metadata: Contains important temporal information (e.g., datetime, start_datetime, and end_datetime), the platform (platform), and session-specific details such as cadip:id, cadip:num_channels, cadip:station_unit_id, cadip:antenna_id, and more. - Satellite information: Includes satellite attributes such as sat:absolute_orbit, cadip:acquisition_id, and status fields like cadip:antenna_status_ok, cadip:front_end_status_ok, and cadip:downlink_status_ok. - Assets: A collection of asset objects associated with the session. Each asset contains: - A unique asset href (link) pointing to the asset resource. - Metadata such as cadip:id, cadip:retransfer, cadip:block_number, cadip:channel, created, eviction_datetime, and file:size. - Asset roles, indicating the type of resource (e.g., "cadu"). - Asset title and name.

Responses:
  • 200 OK: If the session details are found, returns the STAC Item in JSON format.
  • 404 Not Found: If the session_id is not found within the specified collection.

The endpoint is protected by an API key validator, which requires appropriate access permissions.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
@router.get(path="/cadip/collections/{collection_id}/items/{session_id}", response_class=GeoJSONResponse)
@handle_exceptions
async def get_cadip_collection_item_details(
    request: Request,
    collection_id: Annotated[str, FPath(title="CADIP collection ID.", max_length=100, description="E.G. ins_s1")],
    session_id: Annotated[
        str,
        FPath(title="CADIP session ID.", max_length=100, description="E.G. S1A_20231120061537234567"),
    ],
):
    """
    Retrieve Detailed Information for a specific session in a collection.

    This endpoint fetches metadata and asset details for a specific session within a collection from the CADIP station.
    Clients can request session details by providing the `collection_id` and `session_id` as path parameters.
    The session data is retrieved and converted from the original OData format into the STAC format,
    which provides standardized metadata for spatiotemporal datasets.

    ### Path Parameters:
    - `collection_id` (string): The unique identifier of the collection from which the session is being retrieved.
    - `session_id` (string): The identifier of the specific session within the collection for which details are
    requested.

    ### Response:
    Returns a STAC Item containing metadata and asset details about the requested session, including:
    - **Session metadata**: Contains important temporal information (e.g., `datetime`, `start_datetime`, and
    `end_datetime`),
      the platform (`platform`), and session-specific details such as `cadip:id`, `cadip:num_channels`,
      `cadip:station_unit_id`, `cadip:antenna_id`, and more.
    - **Satellite information**: Includes satellite attributes such as `sat:absolute_orbit`, `cadip:acquisition_id`, and
    status fields like `cadip:antenna_status_ok`, `cadip:front_end_status_ok`, and `cadip:downlink_status_ok`.
    - **Assets**: A collection of asset objects associated with the session. Each asset contains:
      - A unique asset `href` (link) pointing to the asset resource.
      - Metadata such as `cadip:id`, `cadip:retransfer`, `cadip:block_number`, `cadip:channel`,
        `created`, `eviction_datetime`, and `file:size`.
      - Asset `roles`, indicating the type of resource (e.g., "cadu").
      - Asset title and name.

    ### Responses:
    - **200 OK**: If the session details are found, returns the STAC Item in JSON format.
    - **404 Not Found**: If the `session_id` is not found within the specified collection.

    The endpoint is protected by an API key validator, which requires appropriate access permissions.
    """
    logger.info(f"Starting {request.url.path}")
    auth_validation(request, collection_id, "read")
    request.state.session_id = session_id  # save for later
    try:
        item = await request.app.state.pgstac_client.get_item(session_id, collection_id, request)
    except HTTPException:  # validation error, just forward it
        raise
    except Exception as exc:  # stac_fastapi.types.errors.NotFoundError
        raise HTTPException(
            status_code=status.HTTP_404_NOT_FOUND,
            detail=f"Cadip session {session_id!r} not found.",
        ) from exc
    return item

get_cadip_collection_items(request, collection_id, bbox=None, datetime=None, filter_=None, filter_lang='cql2-text', sortby=None, limit=None, page=None) async

Retrieve a List of items for a specific collection.

This endpoint provides access to a list of sessions for a given collection from the CADIP station. By specifying the collection_id in the path, clients can retrieve session metadata in the form of a STAC (SpatioTemporal Asset Catalog) ItemCollection.

Path Parameters:
  • collection_id (string): The unique identifier of the collection from which session data is being requested.
Response:

Returns a STAC ItemCollection containing metadata for each session in the specified collection. Each session is represented as a STAC Item, containing key information such as: - Session metadata: Information about the session's time, satellite, and session ID.

Responses:
  • 200 OK: If sessions are found, returns the ItemCollection in JSON format.
  • 404 Not Found: If no matching sessions or collection is found.
Errors:
  • 500 Internal Server Error: If an error occurs in reading configurations, creating query parameters, or processing the session search.

This endpoint is protected by an API key validator, ensuring appropriate access to the CADIP station.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
@router.get(path="/cadip/collections/{collection_id}/items", response_class=GeoJSONResponse)
@handle_exceptions
async def get_cadip_collection_items(
    request: Request,
    collection_id: CollectionType,
    # stac search parameters
    bbox: BBoxType = None,
    datetime: DateTimeType = None,
    filter_: FilterType = None,
    filter_lang: FilterLangType = "cql2-text",
    sortby: SortByType = None,
    limit: LimitType = None,
    page: PageType = None,
):
    """
    Retrieve a List of items for a specific collection.

    This endpoint provides access to a list of sessions for a given collection from the CADIP station.
    By specifying the `collection_id` in the path, clients can retrieve session metadata in the form of a STAC
    (SpatioTemporal Asset Catalog) ItemCollection.

    ### Path Parameters:
    - `collection_id` (string): The unique identifier of the collection from which session data is being requested.

    ### Response:
    Returns a STAC ItemCollection containing metadata for each session in the specified collection.
    Each session is represented as a STAC Item, containing key information such as:
    - **Session metadata**: Information about the session's time, satellite, and session ID.

    ### Responses:
    - **200 OK**: If sessions are found, returns the ItemCollection in JSON format.
    - **404 Not Found**: If no matching sessions or collection is found.

    ### Errors:
    - **500 Internal Server Error**: If an error occurs in reading configurations, creating query parameters, or
    processing the session search.

    This endpoint is protected by an API key validator, ensuring appropriate access to the CADIP station.
    """
    logger.info(f"Starting {request.url.path}")
    auth_validation(request, collection_id, "read")
    return await request.app.state.pgstac_client.item_collection(
        collection_id,
        request,
        bbox=check_bbox_input(bbox),
        datetime=datetime,
        filter=filter_,
        filter_lang=filter_lang,
        sortby=sortby,
        limit=limit,
        page=page,
    )

get_conformance(request) async

Return the STAC/OGC conformance classes implemented by this server.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
272
273
274
275
276
@router.get("/cadip/conformance")
async def get_conformance(request: Request):
    """Return the STAC/OGC conformance classes implemented by this server."""
    authentication.auth_validation("cadip", "landing_page", request=request)
    return await request.app.state.pgstac_client.conformance()

get_root_catalog(request) async

Retrieve the RSPY CADIP Search catalog landing page.

This endpoint generates a STAC (SpatioTemporal Asset Catalog) Catalog object that serves as the landing page for the RSPY CADIP service. The catalog includes basic metadata about the service and links to available collections.

The resulting catalog contains: - id: A unique identifier for the catalog, generated as a UUID. - description: A brief description of the catalog. - title: The title of the catalog. - stac_version: The version of the STAC specification to which the catalog conforms. - conformsTo: A list of STAC and OGC API specifications that the catalog conforms to. - links: A link to the /cadip/collections endpoint where users can find available collections.

The stac_version is set to "1.0.0", and the conformsTo field lists the relevant STAC and OGC API specifications that the catalog adheres to. A link to the collections endpoint is added to the catalog's links field, allowing users to discover available collections in the CADIP service.

Parameters: - request: The HTTP request object which includes details about the incoming request.

Returns: - dict: A dictionary representation of the STAC catalog, including metadata and links.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
@router.get("/cadip")
async def get_root_catalog(request: Request):
    """
    Retrieve the RSPY CADIP Search catalog landing page.

    This endpoint generates a STAC (SpatioTemporal Asset Catalog) Catalog object that serves as the landing
    page for the RSPY CADIP service. The catalog includes basic metadata about the service and links to
    available collections.

    The resulting catalog contains:
    - `id`: A unique identifier for the catalog, generated as a UUID.
    - `description`: A brief description of the catalog.
    - `title`: The title of the catalog.
    - `stac_version`: The version of the STAC specification to which the catalog conforms.
    - `conformsTo`: A list of STAC and OGC API specifications that the catalog conforms to.
    - `links`: A link to the `/cadip/collections` endpoint where users can find available collections.

    The `stac_version` is set to "1.0.0", and the `conformsTo` field lists the relevant STAC and OGC API
    specifications that the catalog adheres to. A link to the collections endpoint is added to the catalog's
    `links` field, allowing users to discover available collections in the CADIP service.

    Parameters:
    - request: The HTTP request object which includes details about the incoming request.

    Returns:
    - dict: A dictionary representation of the STAC catalog, including metadata and links.
    """
    logger.info(f"Starting {request.url.path}")
    authentication.auth_validation("cadip", "landing_page", request=request)
    return await request.app.state.pgstac_client.landing_page(request=request)

home() async

Home endpoint. Redirect to the landing page.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
234
235
236
237
@router.get("/", include_in_schema=False)
async def home():
    """Home endpoint. Redirect to the landing page."""
    return RedirectResponse("/cadip")

Endpoint to retrieve a list of products from the CADU system for a specified station. Performs a search for products using the CADIP providerand generates a STAC Feature Collection from the products. Args: station (str): CADIP station identifier (e.g., MTI, SGS, MPU, INU). queryables (dict): Query parameters for filtering results. limit (int, optional): Maximum number of products to return. Defaults to DEFAULT_FILES_LIMIT. **kwargs: Additional search parameters such as sortby and page.

Returns:

Type Description
list[dict] | dict

list[dict] | dict: - A STAC-compliant Feature Collection of the search results. - If map_to_session=True, returns a list of product properties. - If no products are found, returns an empty list.

Raises:

Type Description
HTTPException

If required search parameters (PublicationDate or SessionId) are missing.

HTTPException

If the pagination limit is less than 1.

HTTPException

If an invalid station identifier is provided (CreateProviderFailed).

HTTPException

If a database connection error occurs (sqlalchemy.exc.OperationalError).

HTTPException

If there is a connection error with the station (requests.exceptions.ConnectionError).

HTTPException

If a general failure occurs during the process.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
def process_files_search(  # pylint: disable=too-many-locals
    station: str,
    queryables,
    limit: int | None = DEFAULT_FILES_LIMIT,
    **kwargs,
) -> list[dict] | dict:
    """Endpoint to retrieve a list of products from the CADU system for a specified station.
    Performs a search for products using the CADIP providerand generates a STAC Feature Collection from the products.
    Args:
        station (str): CADIP station identifier (e.g., MTI, SGS, MPU, INU).
        queryables (dict): Query parameters for filtering results.
        limit (int, optional): Maximum number of products to return. Defaults to `DEFAULT_FILES_LIMIT`.
        **kwargs: Additional search parameters such as `sortby` and `page`.

    Returns:
        list[dict] | dict:
            - A STAC-compliant Feature Collection of the search results.
            - If `map_to_session=True`, returns a list of product properties.
            - If no products are found, returns an empty list.

    Raises:
        HTTPException: If required search parameters (`PublicationDate` or `SessionId`) are missing.
        HTTPException: If the pagination limit is less than 1.
        HTTPException: If an invalid station identifier is provided (`CreateProviderFailed`).
        HTTPException: If a database connection error occurs (`sqlalchemy.exc.OperationalError`).
        HTTPException: If there is a connection error with the station (`requests.exceptions.ConnectionError`).
        HTTPException: If a general failure occurs during the process.
    """
    query_datetime = queryables.get("PublicationDate")

    session_id = queryables.get("SessionId")
    if not query_datetime and not session_id:
        raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Missing search parameters")

    if session_id:
        queryables["SessionId"] = [sid.strip() for sid in session_id.split(",")] if "," in session_id else session_id

    if limit < 1:  # type: ignore
        raise HTTPException(status_code=status.HTTP_422_UNPROCESSABLE_ENTITY, detail="Pagination cannot be less 0")
    # Init dataretriever / get products / return
    try:
        set_eodag_auth_token(station.lower(), "cadip")
        products = (init_cadip_provider(station)).search(
            **validate(queryables),
            items_per_page=limit,
            sort_by=validate_sort_input(sortby) if (sortby := kwargs.get("sortby")) else None,
            page=kwargs.get("page", 1),
        )

        feature_template_path = CADIP_CONFIG / "ODataToSTAC_template.json"
        with open(feature_template_path, encoding="utf-8") as template:
            feature_template = json.loads(template.read())
            cadip_item_collection = create_stac_collection(products, feature_template, cadip_stac_mapper())
        logger.info("Succesfully listed and processed products from CADIP station")
        if kwargs.get("map_to_session", False):
            return [product.properties for product in products]
        return cadip_item_collection.model_dump()
    # pylint: disable=duplicate-code
    except CreateProviderFailed as exception:
        logger.error(f"Failed to create EODAG provider!\n{traceback.format_exc()}")
        raise HTTPException(
            status_code=status.HTTP_400_BAD_REQUEST,
            detail=f"Bad station identifier: {exception}",
        ) from exception
    # pylint: disable=duplicate-code
    except sqlalchemy.exc.OperationalError as exception:
        logger.error("Failed to connect to database!")
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail=f"Database connection error: {exception}",
        ) from exception
    except requests.exceptions.ConnectionError as exception:
        logger.error("Failed to connect to station!")
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail=f"Station {station} connection error: {exception}",
        ) from exception
    except Exception as exception:  # pylint: disable=broad-exception-caught
        logger.error("General failure!")
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail=f"General failure: {exception}",
        ) from exception

Function to process and to retrieve a list of sessions from any CADIP station.

A valid session search request must contain at least a value for either id, platform, or a time interval (start_date and stop_date correctly defined).

Parameters:

Name Type Description Default
request Request

The request object (unused).

required
station str

CADIP station identifier (e.g., MTI, SGS, MPU, INU).

required
queryables dict

Lists of queryables applicable to search op.

required
limit int

Maximum number of products to return. Greater than 0, defaults to 100.

required
sortby str

Sort by +/-fieldName (ascending/descending).

required
page int

Page number to be displayed, defaults to first one.

1

Returns: dict (dict): A STAC Feature Collection of the sessions.

Raises:

Type Description
HTTPException(exceptions)

If search parameters are missing.

HTTPException(exceptions)

If there is a JSON mapping error.

HTTPException(exceptions)

If there is a value error during mapping.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
@validate_call(config={"arbitrary_types_allowed": True})
def process_session_search(  # type: ignore # pylint: disable=too-many-arguments, too-many-locals, unused-argument
    request: Request,
    station: str,
    queryables,
    sortby: str,
    limit: Annotated[
        int | None,
        Query(gt=0, default=100, description="Pagination Limit"),
    ],
    page: int | None = 1,
) -> stac_pydantic.ItemCollection:
    """Function to process and to retrieve a list of sessions from any CADIP station.

    A valid session search request must contain at least a value for either *id*, *platform*, or a time interval
    (*start_date* and *stop_date* correctly defined).

    Args:
        request (Request): The request object (unused).
        station (str): CADIP station identifier (e.g., MTI, SGS, MPU, INU).
        queryables (dict): Lists of queryables applicable to search op.
        limit (int, optional): Maximum number of products to return. Greater than 0, defaults to 100.
        sortby (str): Sort by +/-fieldName (ascending/descending).
        page (int): Page number to be displayed, defaults to first one.
    Returns:
        dict (dict): A STAC Feature Collection of the sessions.

    Raises:
        HTTPException (fastapi.exceptions): If search parameters are missing.
        HTTPException (fastapi.exceptions): If there is a JSON mapping error.
        HTTPException (fastapi.exceptions): If there is a value error during mapping.
    """
    try:
        set_eodag_auth_token(f"{station.lower()}_session", "cadip")
        products = (init_cadip_provider(f"{station}_session")).search(
            **validate(queryables),
            sessions_search=True,
            items_per_page=limit,
            sort_by=validate_sort_input(sortby),
            page=page,
        )
        products = validate_products(products)
        feature_template_path = CADIP_CONFIG / "cadip_session_ODataToSTAC_template.json"
        stac_mapper_path = CADIP_CONFIG / "cadip_sessions_stac_mapper.json"
        with (
            open(feature_template_path, encoding="utf-8") as template,
            open(stac_mapper_path, encoding="utf-8") as stac_map,
        ):
            feature_template = json.loads(template.read())
            stac_mapper = json.loads(stac_map.read())
            collection = create_stac_collection(products, feature_template, stac_mapper)
            return prepare_collection(collection)

    except json.JSONDecodeError as exception:
        logger.error(exception)
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail=f"JSON Map Error: {exception}",
        ) from exception
    except ValueError as exception:
        logger.error(exception)
        raise HTTPException(
            status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
            detail=str(exception),
        ) from exception
    except Exception as exception:  # pylint: disable=broad-exception-caught
        logger.error(f"General failure! {exception}")
        if isinstance(exception, HTTPException):
            raise
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail=f"General failure: {exception}",
        ) from exception

validate(queryables)

Function used to verify / update ADGS-specific queryables before being sent to eodag.

Source code in docs/rs-server/services/cadip/rs_server_cadip/api/cadip_search.py
86
87
88
89
90
91
92
93
94
def validate(queryables: dict):
    """Function used to verify / update ADGS-specific queryables before being sent to eodag."""
    for queryable_name, queryable_data in queryables.items():
        if queryable_name == "PublicationDate":
            queryables[queryable_name] = validate_inputs_format(queryable_data)
        elif isinstance(queryable_data, (str, list)):
            queryables[queryable_name] = validate_str_list(queryable_data)

    return queryables