feat: download offline archives as files#748
Merged
Conversation
Download CBZ, CBR, and DIVINA-compatible EPUB content through the book file endpoint and extract local page images using server page metadata as the ordering source. Persist page metadata and WebPub manifests as sidecars for background finalization recovery, and add Unrar support for CBR extraction.
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.
Problem
Offline downloads for CBZ, CBR, and DIVINA-compatible EPUB books were still using page-by-page stream downloads. That made downloads slow and also diverged from Komga's server-side reading order, especially for DIVINA EPUB files whose manifest reading order may point at XHTML resources rather than image files.
Approach
Download supported archive-like formats through the book file endpoint and extract local reader images from the downloaded file. CBZ, CBR, and DIVINA EPUB extraction now use the server
/pagesmetadata as the source of truth for image order and archive entry names. Background finalization writes sidecar metadata so a resumed app can finish extraction without relying only on in-memory state.Scope
Unrar.swiftfor CBR extraction..archive-pages.jsonand.webpub-manifest.jsonsidecars for background download recovery.Validation
make formatmake build-macosmake build-iosmake build-tvosgit diff --check