Skip to content

fix(import): reject a manual import onto an occupied destination instead of throwing - #217

Draft
jordanfelle wants to merge 8 commits into
Chaptarr:developfrom
jordanfelle:fix-manual-import-occupied-destination
Draft

jordanfelle wants to merge 8 commits into
Chaptarr:developfrom
jordanfelle:fix-manual-import-occupied-destination

Conversation

@jordanfelle

@jordanfelle jordanfelle commented Sep 26, 2026 •

Copy link
Copy Markdown

DRAFT. Depends on fix-auto-import-occupied-destination (stacked on it).

Problem

A manual import with replaceExistingFiles=false skipped the occupied-destination check that automatic imports get, so an untracked file or a file tracked for another edition at the managed destination reached the transfer, which threw DestinationAlreadyExistsException after staging began and was logged as an Error with a stack for every retry.

Fix

Apply the same pre-check when the import will not replace files. A tracked file that this import replaces is still exempt.

Verification

  • Test added; fails without the fix.
  • Core tests pass (3,036 with the earlier PRs underneath).
  • Not yet exercised live: deployed, but no manual import has hit an occupied destination since.

The check applies to every import except relocations and forced downloads: a replacing manual import onto an untracked file, or one tracked for another edition, is rejected too (the transfer never overwrites, so it used to throw after staging began).

  • Adds manual_import_with_replace_onto_an_untracked_occupied_destination_should_be_rejected_not_throw (failed with Imported before the fix) (3,040 core tests pass).

claude and others added 3 commits September 25, 2026 18:48
A book group's files are imported one at a time, but the "which existing
files does this replace" query is re-run from the database for every file
in the group, and the old rows are not removed until the whole group is
committed. When the new release writes its parts to the same destination
paths as the old release (the normal case for a multi-part audiobook),
the second file of the group saw the first file's freshly written
destination as an old file to displace, renamed it to a .chaptarr-upgrade~
backup, and FinalizePendingFileCommits then recycled it. For a 173-part
set only the last part survived.

Track the destination paths written and the rows displaced by the batch
in progress, exclude those from replacement selection, and never stage a
path the same batch already imported into.
A file whose destination path was already tracked took one of two paths in
ResolveBookFilePathConflict: queue that row for the group's atomic swap, or
adopt it in place. Both lost the row when another file of the same batch had
already queued it for replacement, because the group-level ReplaceMany then
deleted the very row the adoption had just repointed at the new file. The
file stayed on disk with no BookFiles row, and history recorded an 'Upgrade'
deletion for a path the batch had just imported.

Always reuse the row found at the destination, keep the batch's adopted row
ids out of GetDatabaseRowsToReplace, and keep the pending commit registered
so its staged backups are still recycled and are never rolled back once the
row is persisted.
…ing files

ImportApprovedBooks.ImportFile built filesToReplace from every existing file of
the matched edition and, for an automatic import (replaceExisting: true from
DownloadedBooksImportService), staged, replaced and recycled them whenever the
new copy was not a strictly lower *revision* (ImportApprovedBooks.cs:1104-1109).
A second copy of an already-imported release therefore churned the library: on
the live host 2,525 editions were re-imported in the same format as "Upgrade".

An automatic import (not IsManualImport, not DownloadForced) now only displaces
existing files when the shared upgrade rule says the release is a real upgrade
for the edition's quality profile: IUpgradableSpecification.IsUpgradable plus
IsUpgradeAllowed, which is the same profile-preference comparison (quality rank,
revision, custom-format score, UpgradeAllowed) that search, queue and history
use. Equal or worse against any file it would replace is reported as
"Already imported: this edition already has files of equal or better quality"
and nothing is moved, deleted or recycled. Rows whose file is missing on disk
are excluded, so stale/aborted-import rows and the converted-destination reuse
path are unaffected. Manual imports and forced grabs keep their existing
explicit-replace behaviour untouched.

The rejection surfaces through the normal "nothing imported" path: the tracked
download ends up importBlocked with that message. No queue-completion mechanism
was added - marking it Imported would fabricate history rows, and there is no
established "recognised duplicate, leave the queue" state in this codebase.
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 26, 2026
…ready-imported duplicate

The equal-quality guard compared each incoming file with the edition's surviving files only. An edition that lost parts (its rows still declare PartCount N but fewer than N files remain, as after the same-path upgrade deletion) was therefore rejected as 'already has files of equal or better quality' when the complete set arrived, so the automatic import could no longer repair it. When the surviving rows declare more parts than are present, let the import proceed and replace the partial set.

Also adds a regression test that a multi-file upgrade parses each stored file's custom formats once per batch.
…rowing

An automatic import whose computed destination path already held a file that
filesToReplace did not cover reached CopyBookFile/MoveBookFile, where
ClearTargetPath throws DestinationAlreadyExistsException and the queue item
ends as IMPORT_EXCEPTION. filesToReplace only covers rows of the same edition
at a different path, so a destination occupied by an untracked file or by a
row tracked for another edition of the same book was never caught.

ImportFile now checks the computed destination before any staging or
transfer, for automatic imports only: a row tracked for this edition gives
the existing AlreadyImportedRejectionReason, a row for another edition or an
untracked file gives a clear rejection naming the destination. Nothing is
moved or deleted. Manual imports, forced downloads, relocations and genuine
upgrades (whose destination row is in filesToReplace) are unaffected.
@jordanfelle
jordanfelle force-pushed the fix-manual-import-occupied-destination branch from 48ce5cb to fd182a7 Compare September 26, 2026 21:52
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 26, 2026
…not exist

DiskProvider.FileExists on a missing path falls back to enumerating each directory along the path for a case/normalisation match. The occupied-destination pre-check ran that on every automatic import, including the ordinary case of a new book whose folder does not exist yet, where nothing can occupy the destination. Check the parent folder first and only probe the file when it exists; the transfer keeps its own check. Adds a regression test that records FileExists probes.
…tion instead of throwing

A manual import with replaceExisting=false skipped the occupied-destination check that automatic imports get, so an untracked file or a file tracked for another edition at the managed destination reached the transfer, which threw DestinationAlreadyExistsException after staging began and was logged as an Error with a stack for every retry. Apply the same pre-check when the import will not replace files; replacing manual imports are unchanged.
…ile at the destination

The occupied-destination check exempted every manual import that replaces files, but replacing only stages aside tracked rows this import replaces (they are exempt from the check) and the transfer never overwrites. A replacing manual import onto an untracked file or a file tracked for another edition therefore still threw DestinationAlreadyExistsException after staging began. Apply the check to every import except relocations and forced downloads.
@jordanfelle
jordanfelle force-pushed the fix-manual-import-occupied-destination branch from fd182a7 to 0367c4b Compare September 26, 2026 22:04
@jordanfelle jordanfelle changed the title fix(import): reject a manual import that does not replace onto an occupied destination fix(import): reject a manual import onto an occupied destination instead of throwing Sep 26, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 26, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 27, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 27, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 27, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 27, 2026
jordanfelle added a commit to jordanfelle/chaptarr that referenced this pull request Sep 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants