feat: add download, cat, and ls commands#48
Merged
Conversation
Three new commands for accessing pinned IPFS content: - pinner download <cid>[/<path>] — save content to disk - pinner cat <cid>[/<path>] — stream content to stdout - pinner ls <cid>[/<path>] — list directory contents Supports CID paths for accessing nested content (e.g. CID/subdir/file). Listing a file shows metadata instead of erroring. JSON output uses structs with proper tags — single object per command, lowercase keys.
This comment has been minimized.
This comment has been minimized.
Code Coverage ReportTotal Coverage: 34.6% Generated from commit: 3d97fcf |
Kody Review CompleteGreat news! 🎉 Keep up the excellent work! 🚀 Kody Guide: Usage and ConfigurationInteracting with Kody
Current Kody ConfigurationReview OptionsThe following review options are enabled or disabled:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three new commands for accessing pinned IPFS content:
Supports CID paths for accessing nested content (e.g. CID/subdir/file).
Listing a file shows metadata instead of erroring. JSON output uses
structs with proper tags — single object per command, lowercase keys.
This PR adds three new CLI commands for interacting with pinned IPFS content:
download,cat, andls.New Commands:
download– Downloads pinned content from IPFS to a local file. Supports CID paths (e.g.,CID/path/to/file) to download specific files from a directory. Includes--output/-oto specify the output path,--forceto overwrite existing files, and--dry-runto preview the operation. Displays CID, local path, file size, gateway URL, and download duration.cat– Streams IPFS content directly to stdout. Supports CID paths for streaming specific files from a directory. Useful for piping content to other commands (e.g.,pinner cat QmHash | jq .).ls– Lists the contents of an IPFS directory, showing file names, types (file/directory), and sizes. Supports--limitto cap the number of entries. If the path targets a file rather than a directory, it gracefully shows the file's metadata instead of erroring.Supporting changes:
DownloadServiceinterface and default implementation with methods for downloading, streaming, listing directories, and checking file sizes, backed by theipfs-sdkpackageErrDownloadFailederror type and registeredDownloadServicein the mockery configuration