feat(templates): add native Ruddarr template (radarr + sonarr)#94
Merged
Merged
Conversation
Ruddarr (https://github.com/ruddarr/app) is a native iOS/macOS companion app for Radarr and Sonarr with no starrproxy template today; operators currently register it against lunasea.json as a workaround, which grants endpoints Ruddarr never calls (mediacover, importlist exclusions, wanted/ missing, credit, language) and omits some it does need (notification CRUD for its push-notification webhook, episodefile/bulk delete). Endpoint scope is derived from the app's own network layer (Ruddarr/Dependencies/API/API+Live.swift in ruddarr/app), not copied from lunasea, so it grants exactly what Ruddarr calls: movie/series CRUD + lookup + editor, release search/grab, queue, history, calendar, manual import, root folders/quality profiles/tags/diskspace/system status, and notification management for its webhook sync. Ruddarr fetches poster art via each release's remoteURL rather than the arr's own mediacover proxy, so mediacover is intentionally not granted. Adds README entry alphabetically between Recyclarr and Seerr.
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.
Ruddarr (native iOS companion app for Radarr/Sonarr) currently has no template and is typically registered against
lunasea.jsonas a workaround, which grants more than Ruddarr actually uses.Scope derived from ground truth, not cloned from lunasea: read
ruddarr/app'sAPI+Live.swift(the single file issuing every network call) to determine actual endpoint usage.Notable differences from lunasea/nzb360's scope:
remoteURL, not the arr's/api/v3/mediacoverproxy - so mediacover is deliberately not granted./api/v3/notificationCRUD./api/v3/episodefile/bulk(delete), not granted by any existing sonarr template.api/index.php), so Ruddarr's one mixed-case path (episodeFileGET vsepisodefileDELETE) is normalized to lowercase-only here.