Phase 11 review fixes: convert error handling, stale job ID, type safety, polling timeout#163
Merged
Merged
Conversation
…ety, polling timeout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are limited based on label configuration. 🏷️ Required labels (at least one) (1)
Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Fixes
P1 — Stale
currentConversionJobIdinconvertWithDifferentSettings()currentConversionJobId = nullmoved before the early-return guard so it's always cleared regardless of file/format stateconvert()callsP2 —
convert()unhandled exceptions → 500UnsupportedConversionException→ user-friendly message + step reset to 'format'Throwable→ user-friendly message + stay on 'convert' stepconvertErrorproperty surfaces the message to the Blade templateInline — type-unsafe
===in download controller(int) $conversion->user_id === (int) $request->user()->id— safe under SQLite string coercion$file->isExpired()(centralized in FileRecord)Nitpick — infinite polling for stuck jobs
$pollCountproperty added;refreshConversionStatus()increments it each callpollCountreset to 0 on each newconvert()call andconvertWithDifferentSettings()Nitpick — missing download controller test branches
result_file_id = null→ 404Test plan
composer testpasses — 290/290composer lintpasses🤖 Generated with Claude Code
Summary by cubic
Improves conversion flow reliability by clearing stale job IDs, adding user-friendly error handling, and adding a polling timeout. Also makes download checks type-safe and centralizes expiry logic.
currentConversionJobIdbefore guards inconvertWithDifferentSettings()to avoid blocking futureconvert()calls.UnsupportedConversionExceptionand generic errors inconvert()withconvertError; route back to 'format' for unsupported conversions, otherwise stay on 'convert'.pollCountwith a 60-attempt cap (~2 min) to stop infinite polling; reset on new conversions and when changing settings.intfor safe comparison and use$file->isExpired(); return 410 for expired files and 404 when missing.Written for commit 63c7984. Summary will update on new commits.