-
-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: improved episode handling on manual scraping #1025
Conversation
WalkthroughThe pull request refactors the Changes
Sequence Diagram(s)sequenceDiagram
participant MUA as manual_update_attributes
participant UI as update_item
participant GE as get_episode
participant Log as Logger
%% Handling movie items
MUA->>UI: Call update_item(movie_item, data)
%% Handling non-movie items
MUA->>GE: Call get_episode(episode_identifier)
alt Episode found
GE-->>MUA: Returns episode
MUA->>UI: Call update_item(episode, data)
else Episode not found
GE-->>MUA: Returns null
MUA->>Log: Log error message
end
Suggested reviewers
Poem
Tip ⚡🧪 Multi-step agentic review comment chat (experimental)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (4)
✨ Finishing Touches
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
src/routers/secure/scrape.py (2)
11-11
: Remove unused import.The static analysis shows that the
GarbageTorrent
exception is imported but never used in this file.-from RTN.exceptions import GarbageTorrent
🧰 Tools
🪛 Ruff (0.8.2)
11-11:
RTN.exceptions.GarbageTorrent
imported but unusedRemove unused import:
RTN.exceptions.GarbageTorrent
(F401)
16-16
: Remove unused import.The
Show
class is imported but never used in this file.-from program.media.item import MediaItem, Show +from program.media.item import MediaItem🧰 Tools
🪛 Ruff (0.8.2)
16-16:
program.media.item.Show
imported but unusedRemove unused import:
program.media.item.Show
(F401)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/routers/secure/scrape.py
(2 hunks)
🧰 Additional context used
🪛 Ruff (0.8.2)
src/routers/secure/scrape.py
11-11: RTN.exceptions.GarbageTorrent
imported but unused
Remove unused import: RTN.exceptions.GarbageTorrent
(F401)
16-16: program.media.item.Show
imported but unused
Remove unused import: program.media.item.Show
(F401)
🔇 Additional comments (4)
src/routers/secure/scrape.py (4)
365-365
: Great use of a set instead of a list!Using a set for
item_ids_to_submit
is a good optimization since:
- It prevents duplicate item IDs from being processed multiple times
- Set lookup operations are O(1) instead of O(n) for lists
367-374
: Well-designed helper function improves code organization.Extracting the common item update logic into a reusable function is excellent refactoring. This reduces code duplication and centralizes the logic for updating media items.
376-379
: Cleaner movie handling implementation.The logic for handling movie items is now more straightforward and readable. Using the
update_item
function makes the code more maintainable.
381-390
: Improved episode handling with better error management.This is a significant improvement over the previous implementation. The changes:
- Make the episode handling logic more concise
- Use a more robust approach to find episodes with
get_episode
- Properly log errors for missing episodes instead of silently failing
- Continue processing other episodes even if one is not found
This directly addresses the PR objective of improving episode handling during manual scraping.
Pull Request Check List
Resolves: #issue-number-here
Description:
Summary by CodeRabbit