API documentation of the Dropbox provider
The module that contains all the necessary logic for communication with the Dropbox providers.
DropboxCore
Bases: StorageCore
Base class that creates the most important functions for the local storage provider.
Source code in src/sqooler/storage_providers/dropbox.py
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 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 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 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
|
__init__(login_dict, name, is_active=True)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
login_dict |
DropboxLoginInformation
|
The dictionary that contains the login information |
required |
name |
str
|
The name of the storage provider |
required |
is_active |
bool
|
Is the storage provider active. |
True
|
Source code in src/sqooler/storage_providers/dropbox.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
delete(storage_path, job_id)
Remove the file from the dropbox
Parameters:
Name | Type | Description | Default |
---|---|---|---|
storage_path |
str
|
the path where the file should be stored, but excluding the file name |
required |
job_id |
str
|
the name of the file. Is a json file |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
delete_folder(folder_path)
Remove the folder from the dropbox. Attention this will remove all the files in the folder. It is not a standard function for storage providers, but allows us to better clean up the tests.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
folder_path |
str
|
the path where the file should be stored, but excluding the file name |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
get(storage_path, job_id)
Get the file content from the dropbox
storage_path: the path where the file should be stored, but excluding the file name job_id: the name of the file. Is a json file
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
move(start_path, final_path, job_id)
Move the file from start_path to final_path
start_path: the path where the file is currently stored, but excluding the file name final_path: the path where the file should be stored, but excluding the file name job_id: the name of the file. Is a json file
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
update(content_dict, storage_path, job_id)
Update the file content.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content_dict |
dict
|
The dictionary containing the new content of the file |
required |
storage_path |
str
|
The path to the file |
required |
job_id |
str
|
The id of the job |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
upload(content_dict, storage_path, job_id)
Upload the content_dict as a json file to the dropbox
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content_dict |
Mapping
|
the content of the file that should be uploaded |
required |
storage_path |
str
|
the path where the file should be stored, but excluding the file name |
required |
job_id |
str
|
the name of the file without the .json extension |
required |
Source code in src/sqooler/storage_providers/dropbox.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
upload_string(content_string, storage_path, job_id)
Upload the content_string as a json file to the dropbox
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content_string |
str
|
the content of the file that should be uploaded |
required |
storage_path |
str
|
the path where the file should be stored, but excluding the file name |
required |
job_id |
str
|
the name of the file without the .json extension |
required |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
DropboxProvider
Bases: DropboxProviderExtended
The class that implements the dropbox storage provider.
Source code in src/sqooler/storage_providers/dropbox.py
745 746 747 748 749 750 751 752 753 754 755 756 |
|
__init__(login_dict)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
login_dict |
DropboxLoginInformation
|
The dictionary that contains the login information |
required |
Source code in src/sqooler/storage_providers/dropbox.py
750 751 752 753 754 755 756 |
|
DropboxProviderExtended
Bases: StorageProvider
, DropboxCore
The class that implements the dropbox storage provider.
Attributes:
Name | Type | Description |
---|---|---|
configs_path |
PathStr
|
The path to the folder where the configurations are stored |
queue_path |
PathStr
|
The path to the folder where the jobs are stored |
running_path |
PathStr
|
The path to the folder where the running jobs are stored |
finished_path |
PathStr
|
The path to the folder where the finished jobs are stored |
deleted_path |
PathStr
|
The path to the folder where the deleted jobs are stored |
status_path |
PathStr
|
The path to the folder where the status is stored |
results_path |
PathStr
|
The path to the folder where the results are stored |
pks_path |
PathStr
|
The path to the folder where the public keys are stored |
Source code in src/sqooler/storage_providers/dropbox.py
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 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 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 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 469 470 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 544 545 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 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 |
|
create_job_id(display_name, username)
Create a job id for the job.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
display_name |
DisplayNameStr
|
The name of the backend |
required |
username |
str
|
The username of the user that is uploading the job |
required |
Returns:
Type | Description |
---|---|
str
|
The job id |
Source code in src/sqooler/storage_providers/dropbox.py
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 |
|
get_attribute_id(attribute_name, job_id, display_name=None)
Get the path to the id of the device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attribute_name |
AttributeIdStr
|
The name of the attribute |
required |
job_id |
str
|
The job_id of the job |
required |
display_name |
Optional[DisplayNameStr]
|
The name of the backend |
None
|
Returns:
Type | Description |
---|---|
str
|
The path to the results of the device. |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
get_attribute_path(attribute_name, display_name=None, job_id=None, username=None)
Get the path to the results of the device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
display_name |
Optional[DisplayNameStr]
|
The name of the backend |
None
|
attribute_name |
AttributePathStr
|
The name of the attribute |
required |
job_id |
Optional[str]
|
The job_id of the job |
None
|
username |
Optional[str]
|
The username of the user that is uploading the job |
None
|
Returns:
Type | Description |
---|---|
str
|
The path to the results of the device. |
Source code in src/sqooler/storage_providers/dropbox.py
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 344 345 346 347 |
|
get_backends()
Get a list of all the backends that the provider offers.
Source code in src/sqooler/storage_providers/dropbox.py
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 |
|
get_config(display_name)
The function that downloads the spooler configuration to the storage.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
display_name |
The name of the backend |
required |
Raises:
Type | Description |
---|---|
FileNotFoundError
|
If the backend does not exist |
Returns:
Type | Description |
---|---|
BackendConfigSchemaIn
|
The configuration of the backend in complete form. |
Source code in src/sqooler/storage_providers/dropbox.py
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
|
get_file_queue(storage_path)
Get a list of files. Typically we are looking for the queued jobs of a backend here.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
storage_path |
str
|
Where are we looking for the files. |
required |
Returns:
Type | Description |
---|---|
list[str]
|
A list of files that was found. |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
get_public_key_from_kid(kid)
The function that gets public JWK based on the key id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kid |
The key id of the backend |
required |
Returns:
Name | Type | Description |
---|---|---|
JWk |
JWK
|
The public JWK object |
Source code in src/sqooler/storage_providers/dropbox.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
|
update_config(config_dict, display_name, private_jwk=None)
The function that updates the spooler configuration to the storage.
All the configurations are stored in the Backend_files/Config folder. For each backend there is a separate folder in which the configuration is stored as a json file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_dict |
BackendConfigSchemaIn
|
The dictionary containing the configuration |
required |
display_name |
The name of the backend |
required | |
private_jwk |
Optional[JWK]
|
The private JWK to sign the configuration with |
None
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|
update_in_database(result_dict, status_msg_dict, job_id, display_name, private_jwk=None)
Upload the status and result to the dropbox.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
result_dict |
ResultDict
|
the dictionary containing the result of the job |
required |
status_msg_dict |
StatusMsgDict
|
the dictionary containing the status message of the job |
required |
job_id |
str
|
the name of the job |
required |
display_name |
DisplayNameStr
|
the name of the backend |
required |
private_jwk |
Optional[JWK]
|
the private JWK to sign the result with |
None
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 544 545 546 547 548 549 550 551 552 553 554 555 |
|
upload_public_key(public_jwk, display_name, role='backend')
The function that uploads the spooler public JWK to the storage.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
public_jwk |
JWK
|
The JWK that contains the public key |
required |
display_name |
The name of the backend |
required | |
role |
PksStr
|
The role of the public key |
'backend'
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/sqooler/storage_providers/dropbox.py
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 |
|