Add comprehensive issue management to Overseerr integration#158512
Closed
AmGarera wants to merge 1 commit into
Closed
Add comprehensive issue management to Overseerr integration#158512AmGarera wants to merge 1 commit into
AmGarera wants to merge 1 commit into
Conversation
- Add OverseerrData composite model for requests and issues - Update coordinator to fetch both request and issue counts - Add 6 new issue sensors (total, open, closed, video, audio, subtitle) - Add 4 new issue services: - get_issues: Retrieve filtered list of issues - create_issue: Report new issues on media - update_issue: Change status and add comments - delete_issue: Remove issues - Add issue constants and notification types to const.py - Update services.yaml with issue service definitions - Add comprehensive translations for all new entities and services - Services trigger coordinator refresh for real-time sensor updates This enables full issue lifecycle management including monitoring, reporting, updating, and resolving issues through Home Assistant. Note: Requires python-overseerr 0.8.0+ with issue management support.
Contributor
|
Hey there @joostlek, mind taking a look at this pull request as it has been labeled with an integration ( Code owner commandsCode owners of
|
pantherale0
suggested changes
Dec 13, 2025
Contributor
pantherale0
left a comment
There was a problem hiding this comment.
Sensor changes and service introductions should be split into separate PRs
Contributor
Author
|
Closing this PR to split into two separate PRs as per review guidelines:
This follows the Home Assistant review process which requires sensor changes and service introductions to be in separate PRs. |
8 tasks
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Proposed change
This PR adds comprehensive issue management functionality to the Overseerr integration, enabling users to create, view, update, and delete issues through Home Assistant services and track issue statistics via sensors.
Type of change
Additional information
Dependencies
manifest.jsonto require the new versionNew Features
6 New Sensors
sensor.overseerr_total_issues- Total issue countsensor.overseerr_open_issues- Currently open issuessensor.overseerr_closed_issues- Resolved/closed issuessensor.overseerr_video_issues- Video-specific issuessensor.overseerr_audio_issues- Audio-specific issuessensor.overseerr_subtitle_issues- Subtitle-specific issues4 New Services
overseerr.get_issues- Retrieve filtered list of issuesoverseerr.create_issue- Create new issue for mediaoverseerr.update_issue- Update existing issueoverseerr.delete_issue- Delete issueImplementation Details
New Files
homeassistant/components/overseerr/models.py- Composite data model (OverseerrData) containing both request and issue countsModified Files
coordinator.py- Now fetches both requests and issues in single update cyclesensor.py- Added 6 issue sensors, updated all sensors to use composite data modelconst.py- Added issue constants and notification typesservices.py- Implemented 4 new issue services with proper error handlingservices.yaml- Added service UI definitionsstrings.json- Added all translations for sensors, services, and selectorsQuality Scale Compliance
This integration maintains Platinum quality scale:
Example Usage
Automation to create issue when media playback fails:
Dashboard card showing issue statistics:
Checklist
ruff format homeassistant tests)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
requirements_all.txt..coveragerc.Notes