Api
Main module with dekube-geolake API endpoints defined
download_request_result(request, request_id)
async
Download result of the request
Source code in api/app/main.py
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | |
estimate(request, dataset_id, product_id, query, unit=None)
async
Estimate the resulting size of the query
Source code in api/app/main.py
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 | |
geolake_info()
async
Return current version of the GeoLake API
Source code in api/app/main.py
109 110 111 112 | |
get_datasets(request)
async
List all products eligible for a user defined by user_token
Source code in api/app/main.py
115 116 117 118 119 120 121 122 123 124 125 126 127 | |
get_first_product_details(request, dataset_id)
async
Get details for the 1st product of the dataset
Source code in api/app/main.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
get_metadata(request, dataset_id, product_id)
async
Get metadata of the given product
Source code in api/app/main.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | |
get_product_details(request, dataset_id, product_id)
async
Get details for the requested product if user is authorized
Source code in api/app/main.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |
get_request_resulting_size(request, request_id)
async
Get size of the file being the result of the request
Source code in api/app/main.py
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | |
get_request_status(request, request_id)
async
Get status of the request without authentication
Source code in api/app/main.py
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | |
get_request_uri(request, request_id)
async
Get download URI for the request
Source code in api/app/main.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | |
get_requests(request)
async
Get all requests for the user
Source code in api/app/main.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 | |
query(request, dataset_id, product_id, query)
async
Schedule the job of data retrieve
Source code in api/app/main.py
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 | |
workflow(request, tasks)
async
Schedule the job of workflow processing
Source code in api/app/main.py
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |
Modules realizing logic for dataset-related endpoints
async_query(user_id, dataset_id, product_id, query)
Realize the logic for the endpoint:
POST /datasets/{dataset_id}/{product_id}/execute
Query the data and return the ID of the request.
Parameters
user_id : str ID of the user executing the query dataset_id : str ID of the dataset product_id : str ID of the product query : GeoQuery Query to perform
Returns
request_id : int ID of the request
Raises
MaximumAllowedSizeExceededError if the allowed size is below the estimated one EmptyDatasetError if estimated size is zero
Source code in api/app/endpoint_handlers/dataset.py
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 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 | |
estimate(dataset_id, product_id, query, unit=None)
Realize the logic for the nedpoint:
POST /datasets/{dataset_id}/{product_id}/estimate
Estimate the size of the resulting data. No authentication is needed for estimation query.
Parameters
dataset_id : str
ID of the dataset
product_id : str
ID of the product
query : GeoQuery
Query to perform
unit : str
One of unit [bytes, kB, MB, GB] to present the result. If None,
unit will be inferred.
Returns
size_details : dict
Estimated size of the query in the form:
python
{
"value": val,
"units": units
}
Source code in api/app/endpoint_handlers/dataset.py
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 212 213 214 215 216 217 218 219 220 | |
get_datasets(user_roles_names)
Realize the logic for the endpoint:
GET /datasets
Get datasets names, their metadata and products names (if eligible for a user). If no eligible products are found for a dataset, it is not included.
Parameters
user_roles_names : list of str List of user's roles
Returns
datasets : list of dict A list of dictionaries with datasets information (including metadata and eligible products lists)
Raises
MissingKeyInCatalogEntryError If the dataset catalog entry does not contain the required key
Source code in api/app/endpoint_handlers/dataset.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
get_metadata(dataset_id, product_id)
Realize the logic for the endpoint:
GET /datasets/{dataset_id}/{product_id}/metadata
Get metadata for the product.
Parameters
dataset_id : str ID of the dataset product_id : str ID of the product
Source code in api/app/endpoint_handlers/dataset.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
get_product_details(user_roles_names, dataset_id, product_id=None)
Realize the logic for the endpoint:
GET /datasets/{dataset_id}/{product_id}
Get details for the given product indicated by dataset_id
and product_id arguments.
Parameters
user_roles_names : list of str
List of user's roles
dataset_id : str
ID of the dataset
product_id : optional, str
ID of the product. If None the 1st product will be considered
Returns
details : dict Details for the given product
Raises
AuthorizationFailed If user is not authorized for the resources
Source code in api/app/endpoint_handlers/dataset.py
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 | |
run_workflow(user_id, workflow)
Realize the logic for the endpoint:
POST /datasets/workflow
Schedule the workflow and return the ID of the request.
Parameters
user_id : str ID of the user executing the query workflow : Workflow Workflow to perform
Returns
request_id : int ID of the request
Raises
MaximumAllowedSizeExceededError if the allowed size is below the estimated one EmptyDatasetError if estimated size is zero
Source code in api/app/endpoint_handlers/dataset.py
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 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | |
sync_query(user_id, dataset_id, product_id, query)
Realize the logic for the endpoint:
POST /datasets/{dataset_id}/{product_id}/execute
Query the data and return the result of the request.
Parameters
user_id : str ID of the user executing the query dataset_id : str ID of the dataset product_id : str ID of the product query : GeoQuery Query to perform
Returns
request_id : int ID of the request
Raises
MaximumAllowedSizeExceededError if the allowed size is below the estimated one EmptyDatasetError if estimated size is zero
Source code in api/app/endpoint_handlers/dataset.py
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 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 | |
Module with functions to handle file related endpoints
download_request_result(request_id)
Realize the logic for the endpoint:
GET /download/{request_id}
Get location path of the file being the result of
the request with request_id.
Parameters
request_id : int ID of the request
Returns
path : str The location of the resulting file
Raises
RequestNotYetAccomplished If geolake request was not yet finished FileNotFoundError If file was not found
Source code in api/app/endpoint_handlers/file.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | |
Modules with functions realizing logic for requests-related endpoints
get_request_resulting_size(request_id)
Realize the logic for the endpoint:
GET /requests/{request_id}/size
Get size of the file being the result of the request with request_id
Parameters
request_id : int ID of the request
Returns
size : int Size in bytes
Raises
RequestNotFound If the request was not found
Source code in api/app/endpoint_handlers/request.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | |
get_request_status(user_id, request_id)
Realize the logic for the endpoint:
GET /requests/{request_id}/status
Get request status and the reason of the eventual fail.
The second item is None, it status is other than failed.
Parameters
user_id : str ID of the user whose request's status is about to be checed request_id : int ID of the request
Returns
status : tuple Tuple of status and fail reason.
Source code in api/app/endpoint_handlers/request.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |
get_request_uri(request_id)
Realize the logic for the endpoint:
GET /requests/{request_id}/uri
Get URI for the request.
Parameters
request_id : int ID of the request
Returns
uri : str URI for the download associated with the given request
Source code in api/app/endpoint_handlers/request.py
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 | |
get_requests(user_id)
Realize the logic for the endpoint:
GET /requests
Get details of all requests for the user.
Parameters
user_id : str ID of the user for whom requests are taken
Returns
requests : list List of all requests done by the user
Source code in api/app/endpoint_handlers/request.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |