ADGS
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
81 82 83 84 85 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 |
|
__init__(request=None, readwrite=None)
Constructor
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
process_search(collection, odata_params, limit, page)
Search adgs products for the given collection and OData parameters.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
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 |
---|---|---|---|
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
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
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
196 197 198 199 200 201 202 203 204 205 |
|
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 |
---|---|---|---|
collection_id
|
str
|
AUXIP collection ID. Must be a valid collection identifier (e.g., 'ins_s1'). |
required |
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
208 209 210 211 212 213 214 215 216 217 218 219 220 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 |
|
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.
- collection_id (str): AUXIP collection ID. Must be a valid collection identifier (e.g., 'ins_s1').
- item_id (str): AUXIP item ID. Must be a valid item identifier (e.g., 'S1A_OPER_MPL_ORBPRE_20210214T021411_20210221T021411_0001.EOF').
- 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
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 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 |
|
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
187 188 189 190 191 192 193 |
|
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
180 181 182 183 184 |
|
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.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 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
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 |
|
home_endpoint()
async
Redirect to the landing page.
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
142 143 144 145 |
|
process_product_search(station, queryables, 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 |
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. |
Source code in docs/rs-server/services/adgs/rs_server_adgs/api/adgs_search.py
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 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 |
|
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
73 74 75 76 77 78 |
|