feat: Seerr integration + Radarr Search vs Add#69
Merged
Conversation
**Seerr (#68)** - New POST /api/seerr/add backend endpoint (same API as Overseerr) - SEERR config section (SEERR_ENABLED / SEERR_URL / SEERR_API_KEY) - Seerr config section in UI (teal badge); Overseerr & Jellyseerr now labelled "(legacy)" with deprecation hints - → Seerr button on poster cards, suggestion cards, and movie modal - Batch "→ Seerr" button in selection bar (hidden unless enabled) - btn-seerr teal colour scheme in CSS **Radarr Search vs Add (#67)** - New GET /api/radarr/library — returns TMDB IDs of all movies in Radarr; cached 5 min, invalidated on successful add - New POST /api/radarr/search — triggers MoviesSearch command in Radarr for an already-monitored movie (resolves Radarr ID via tmdbId param) - Frontend _fetchRadarrLibrary() fires in background after results load - posterCard() and suggestionCard() check _radarrLibTmdbIds: if movie is already in Radarr → shows "⟳ Search" instead of "+ Radarr" - searchInRadarr() mutation handles the search API call and feedback Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…tWatch
Provider logo imgs are wrapped in <a href='justwatch.com'> anchors, so
the old selector matched 4 elements (strict mode violation). Target the
text link specifically with :has-text('JustWatch').
[skip ci]
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.
Closes #67, #68
Seerr integration (issue #68)
Seerr is the unified successor to Overseerr and Jellyseerr. Added as a first-class integration while keeping the legacy options (now labelled as such).
POST /api/seerr/add— identical API shape to OverseerrSEERRconfig section (SEERR_ENABLED/SEERR_URL/SEERR_API_KEY)(legacy)with a deprecation notice→ Seerrbutton on poster cards, suggestion cards, and movie modal→ Seerrbutton in the multi-select bar (hidden unless enabled)btn-seerrteal colour schemeRadarr Search vs Add (issue #67)
When a movie is already in Radarr (monitored but not yet downloaded/in Plex), the button now shows ⟳ Search instead of + Radarr, which triggers a download search on the existing monitored entry rather than trying to add a duplicate.
GET /api/radarr/library— returns all TMDB IDs in the primary Radarr instance; cached 5 min, invalidated immediately after a successful addPOST /api/radarr/search— resolves the Radarr movie ID from TMDB ID, then callsMoviesSearchcommand_fetchRadarrLibrary()fires in the background after results load (non-blocking)posterCard()andsuggestionCard()check_radarrLibTmdbIdsset to decide which button to showTests
All 280 existing unit tests pass. No new unit tests added for the Seerr/search endpoints as they follow the same pattern as the existing Overseerr/Radarr tests already in the suite.
🤖 Generated with Claude Code