Module: file_manager
File Manager: Utility functions to download and upload files to Arweave, as well as check if a file exists on Arweave.
FileManager
A class to manage file operations with Arweave, including downloading, uploading, and checking file existence.
Source code in src/ritual_arweave/file_manager.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 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 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 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 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 |
|
peer: Peer
property
Get the peer. If index is provided, return the peer at that index. Otherwise, return the next peer in the list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
Optional[int]
|
The index of the peer to return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Peer |
Peer
|
The peer object. |
wallet: Wallet
property
Load and return the wallet from the wallet path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
Optional[int]
|
The index of the peer to configure the wallet with. |
required |
Returns:
Name | Type | Description |
---|---|---|
Wallet |
Wallet
|
The loaded wallet. |
__init__(gateways=PUBLIC_GATEWAYS, wallet_path='./wallet.json', logger=default_logger.info, max_upload_size=MAXIMUM_UPLOAD_SIZE, show_progress_bar=True)
Initialize the FileManager with the given API URL, wallet path, and logger.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gateways |
List[str] | str
|
A list of gateway URLs to use for file |
PUBLIC_GATEWAYS
|
wallet_path |
str
|
The path to the wallet file. |
'./wallet.json'
|
logger |
Callable[[str], None]
|
A logging function. |
info
|
max_upload_size |
int
|
The maximum size of a file to upload in bytes. |
MAXIMUM_UPLOAD_SIZE
|
show_progress_bar |
bool
|
Whether to show a progress bar for file operations. |
True
|
Source code in src/ritual_arweave/file_manager.py
check_ready(txid)
Check if the file is ready for download.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
txid |
str
|
The transaction ID of the data transaction. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The gateway URL to download the file from. |
Raises:
Type | Description |
---|---|
FileNotReadyException
|
If the file is pending and not ready for download. |
Source code in src/ritual_arweave/file_manager.py
concat_files(temp_dir, target_dir)
Concatenate the sections into a single file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
temp_dir |
Path
|
The temporary directory containing the sections. |
required |
target_dir |
Path
|
The target directory to write the concatenated file. |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/ritual_arweave/file_manager.py
download(target_path, txid)
Download an Arweave data transaction to a given path.
Checks if the transaction is a manifest transaction with the type Sectioned. If so, downloads the manifest and then downloads each section. Otherwise, downloads the data transaction directly.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_path |
str | Path
|
The path to download the file to. |
required |
txid |
str
|
The transaction ID of the data transaction. |
required |
Returns:
Name | Type | Description |
---|---|---|
Path |
Path
|
The absolute path of the downloaded file. |
Source code in src/ritual_arweave/file_manager.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 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 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 |
|
download_data(txid)
Download data from Arweave.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
txid |
TxID
|
The transaction ID of the data transaction. |
required |
Returns:
Name | Type | Description |
---|---|---|
bytes |
bytes
|
The downloaded data. |
Source code in src/ritual_arweave/file_manager.py
download_dict(txid)
Download a dictionary from Arweave.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
txid |
str
|
The transaction ID of the data transaction. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: The downloaded dictionary. |
Source code in src/ritual_arweave/file_manager.py
download_section(pathname, txid, gateway, progress, pbar_id, overall_task_id)
Download an Arweave data transaction to a given path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pathname |
Path | str
|
The path to download to. |
required |
txid |
str
|
The transactionk ID of the data transaction. |
required |
gateway |
str
|
The gateway to download the file from. |
required |
progress |
Progress
|
A rich Progress object to display download progress. |
required |
pbar_id |
TaskID
|
The task ID of the current download progress. |
required |
overall_task_id |
TaskID
|
The task ID of the overall download progress. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
Path
|
The absolute path of the downloaded file. |
Raises:
Type | Description |
---|---|
FileNotReadyException
|
If the file is pending and not ready for download. |
Source code in src/ritual_arweave/file_manager.py
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 |
|
file_exists(file_path, txid)
Given a local file path and a transaction ID, check if the file exists on Arweave. Checks for the following: - Local file exists - Local file's size matches transaction data size - Local file's sha256 digest matches transaction digest
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path |
str
|
The path to the local file. |
required |
txid |
str
|
The transaction ID to check against. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if the file exists and matches the transaction, False otherwise. |
Source code in src/ritual_arweave/file_manager.py
gateway(index=None)
Get the current gateway URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
Optional[int]
|
The index of the gateway to return. |
None
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The gateway URL. |
Source code in src/ritual_arweave/file_manager.py
get_largefile_manifest(txid)
For handling of very large files, we chunk those files into different segments and upload those segments individually. We then aggregate the transaction IDs of each segment into a manifest file. This method retrieves the manifest file and returns a LargeFileManifest object containing the file data.
Returns:
Name | Type | Description |
---|---|---|
LargeFileManifest |
Optional[LargeFileManifest]
|
The LargeFileManifest object containing the file data. |
Source code in src/ritual_arweave/file_manager.py
get_peer(index=None)
Get the peer at the given index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
Optional[int]
|
The index of the peer to return. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Peer |
Peer
|
The peer object. |
Source code in src/ritual_arweave/file_manager.py
get_wallet(index=None)
Get the wallet & configure it with the peer at the given index.
upload(_file_path, tags_dict)
Upload a file to Arweave with the given tags. If the file is larger than the maximum node upload size, upload it in section.
- Split the file into multiple files each with a maximum size of MAXIMUM_UPLOAD_SIZE
- Upload each section to Arweave using the upload_section method
- Upload a manifest containing the transaction IDs of each section
- Return the transaction ID of the manifest file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_file_path |
Path | str
|
The path to the file to be uploaded. |
required |
tags_dict |
dict[str, str]
|
A dictionary of tags to be added to the |
required |
Source code in src/ritual_arweave/file_manager.py
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 |
|
upload_data(data, additional_tags=None)
Upload data to Arweave with the given tags.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
bytes
|
The data to be uploaded. |
required |
additional_tags |
Optional[dict[str, str]]
|
Additional tags to be added to the transaction. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Transaction |
Transaction
|
The created and signed transaction. |
Source code in src/ritual_arweave/file_manager.py
upload_dict(d, additional_tags=None)
Upload a dictionary to Arweave with the given tags
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d |
Dict[str, Any]
|
The dictionary to be uploaded. |
required |
additional_tags |
Optional[dict[str, str]]
|
Additional tags to be added to the transaction. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Transaction |
Transaction
|
The created and signed transaction. |
Source code in src/ritual_arweave/file_manager.py
upload_manifest(manifest_dict, additional_tags=None)
Upload a manifest to Arweave with the given tags
Parameters:
Name | Type | Description | Default |
---|---|---|---|
manifest_dict |
dict[str, str]
|
The manifest dictionary to be uploaded. |
required |
additional_tags |
Optional[dict[str, str]]
|
Additional tags to be added to the transaction. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Transaction |
Transaction
|
The created and signed transaction. |
Source code in src/ritual_arweave/file_manager.py
upload_section(file_path, tags_dict, gateway, progress, task_id, overall_task_id)
Upload a file to Arweave with the given tags.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path |
Path
|
The path to the file to be uploaded. |
required |
tags_dict |
dict[str, str]
|
A dictionary of tags to be added to the |
required |
gateway |
str
|
The gateway to upload the file to. |
required |
progress |
Progress
|
A rich Progress object to display upload progress. |
required |
task_id |
TaskId
|
The task ID of the current upload progress. |
required |
overall_task_id |
TaskId
|
The task ID of the overall upload progress. |
required |
Returns:
Name | Type | Description |
---|---|---|
Transaction |
Transaction
|
The created and signed transaction. |