rs_server_adgs/api/adgs_search.md
Module for interacting with ADGS system through a FastAPI APIRouter.
This module provides functionality to retrieve a list of products from the ADGS stations. It includes an API endpoint, utility functions, and initialization for accessing EODataAccessGateway.
MockPgstacAdgs
Bases: MockPgstac
Adgs implementation of MockPgstac
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
86 87 88 89 90 91 92 93 94 95 96 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 | |
__init__(request=None, readwrite=None)
Constructor
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |
process_search(station, odata_params, collection_provider, limit, page)
Search adgs products for the given station and OData parameters.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | |
auth_validation(request, collection_id, access_type)
Check if the user KeyCloak roles contain the right for this specific AUXIP collection and access type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
Request
|
The incoming HTTP request used for authentication checks. |
required |
collection_id
|
str
|
Used to find the AUXIP station ("ADGS1, ADGS2") from the RSPY_ADGS_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/adgs/rs_server_adgs/api/adgs_search.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | |
get_adgs_collection(request, collection_id)
async
Return a specific ADGS collection.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
209 210 211 212 213 214 215 216 217 218 | |
get_adgs_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 from a specified AUXIP collection.
This endpoint returns a collection of items associated with the given AUXIP collection ID. It utilizes the collection ID to validate access and fetches the items based on defined query parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
Request
|
The incoming HTTP request used for authentication and routing. |
required |
collection_id
|
str
|
AUXIP collection ID. Must be a valid collection identifier (e.g., 'ins_s1'). |
required |
bbox
|
BBoxType
|
Bounding box spatial filter, as [west, south, east, north] coordinates. |
None
|
datetime
|
DateTimeType
|
Temporal filter as an RFC 3339 timestamp or interval. |
None
|
filter_
|
FilterType
|
CQL2 filter expression to further restrict results. |
None
|
filter_lang
|
FilterLangType
|
Language for the CQL2 filter, either "cql2-text" or "cql2-json". |
'cql2-text'
|
sortby
|
SortByType
|
Field and direction to sort results by. |
None
|
limit
|
LimitType
|
Maximum number of items to return per page. |
None
|
page
|
PageType
|
1-based page index for pagination. |
None
|
Returns:
| Type | Description |
|---|---|
list[dict] | dict
|
list[dict]: A FeatureCollection of items belonging to the specified collection, or an error message if the collection is not found. |
Raises:
| Type | Description |
|---|---|
HTTPException
|
If the authentication fails, or if there are issues with the collection ID provided. |
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 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 270 271 272 273 274 | |
get_adgs_collection_specific_item(request, collection_id, item_id)
async
Retrieve a specific item from a specified AUXIP collection.
This endpoint fetches details of a specific item within the given AUXIP collection by its unique item ID. It utilizes the provided collection ID and item ID to validate access and return item information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
Request
|
The incoming HTTP request used for authentication and routing. |
required |
collection_id
|
str
|
AUXIP collection ID. Must be a valid collection identifier (e.g., 'ins_s1'). |
required |
item_id
|
str
|
AUXIP item ID. Must be a valid item identifier (e.g., 'S1A_OPER_MPL_ORBPRE_20210214T021411_20210221T021411_0001.EOF'). |
required |
- dict: A JSON object containing details of the specified item, or an error message if the item is not found.
- HTTPException: If the authentication fails, or if the specified item is not found in the collection.
Example: A successful response will return:
{
"id": "S1A_OPER_MPL_ORBPRE_20210214T021411_20210221T021411_0001.EOF",
"type": "Feature",
"properties": {
... # Detailed properties of the item
},
"geometry": {
... # Geometry details of the item
},
"links": [
... # Links associated with the item
]
}
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
277 278 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 310 311 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 | |
get_allowed_adgs_collections(request)
async
Return the ADGS collections to which the user has access to.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
200 201 202 203 204 205 206 | |
get_conformance(request)
async
Return the STAC/OGC conformance classes implemented by this server.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
193 194 195 196 197 | |
get_root_catalog(request)
async
Retrieve the RSPY ADGS Search catalog landing page.
This endpoint generates a STAC (SpatioTemporal Asset Catalog) Catalog object that serves as the landing page for the RSPY ADGS 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 /adgs/collections endpoint where users can find available collections.
The stac_version is set to "1.1.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 ADGS 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/adgs/rs_server_adgs/api/adgs_search.py
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 | |
home_endpoint()
async
Redirect to the landing page.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
155 156 157 158 | |
process_product_search(station, queryables, collection_provider, limit, sortby, page=1, **kwargs)
Performs a search for products using the ADGS provider and generates a STAC Feature Collection from the products.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
station
|
str
|
Auxip station identifier. |
required |
queryables
|
dict
|
Query parameters for filtering results. |
required |
collection_provider
|
Callable[[dict], str | None]
|
Function that determines STAC collection for a given OData entity |
required |
limit
|
int
|
Maximum number of products to return. |
required |
sortby
|
str
|
Sorting field with +/- prefix for ascending/descending order. |
required |
page
|
int
|
Page number for pagination. Defaults to 1. |
1
|
**kwargs
|
Additional search parameters. |
{}
|
Returns:
| Type | Description |
|---|---|
ItemCollection
|
stac_pydantic.ItemCollection: A STAC-compliant Feature Collection containing the search results. |
Raises:
| Type | Description |
|---|---|
HTTPException
|
If the pagination limit is less than 1. |
HTTPException
|
If an invalid station identifier is provided ( |
HTTPException
|
If there is a connection error with the station ( |
HTTPException
|
If there is a general failure during the process. |
Exception
|
Re-raised directly if the caught exception is already an HTTPException; all other exceptions are wrapped in a new HTTPException(503). |
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
346 347 348 349 350 351 352 353 354 355 356 357 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 410 411 412 413 414 415 | |
validate(queryables)
Function used to verify / update ADGS-specific queryables before being sent to eodag.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
75 76 77 78 79 80 81 82 83 | |