[PR #215] [MERGED] Add Whisparr support #218

Closed
opened 2025-10-09 17:00:20 -05:00 by giteasync · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/215
Author: @Flaminel
Created: 7/2/2025
Status: Merged
Merged: 7/4/2025
Merged by: @Flaminel

Base: mainHead: add_whisparr_support


📝 Commits (1)

📊 Changes

33 files changed (+2472 additions, -37 deletions)

View changed files

📝 code/backend/Cleanuparr.Api/Controllers/ConfigurationController.cs (+159 -0)
📝 code/backend/Cleanuparr.Api/DependencyInjection/MainDI.cs (+3 -2)
📝 code/backend/Cleanuparr.Api/DependencyInjection/ServicesDI.cs (+1 -0)
code/backend/Cleanuparr.Application/Features/Arr/Dtos/UpdateWhisparrConfigDto.cs (+9 -0)
📝 code/backend/Cleanuparr.Application/Features/ContentBlocker/ContentBlocker.cs (+6 -0)
📝 code/backend/Cleanuparr.Application/Features/DownloadCleaner/DownloadCleaner.cs (+2 -1)
📝 code/backend/Cleanuparr.Application/Features/QueueCleaner/QueueCleaner.cs (+2 -0)
📝 code/backend/Cleanuparr.Domain/Entities/Arr/Queue/QueueRecord.cs (+1 -1)
📝 code/backend/Cleanuparr.Domain/Entities/Arr/SeriesSearchItem.cs (+5 -4)
📝 code/backend/Cleanuparr.Domain/Entities/Sonarr/SonarrCommand.cs (+1 -1)
code/backend/Cleanuparr.Domain/Entities/Whisparr/WhisparrCommand.cs (+16 -0)
📝 code/backend/Cleanuparr.Domain/Enums/SeriesSearchType.cs (+1 -1)
📝 code/backend/Cleanuparr.Infrastructure/Features/Arr/ArrClientFactory.cs (+5 -1)
code/backend/Cleanuparr.Infrastructure/Features/Arr/Interfaces/IWhisparrClient.cs (+5 -0)
📝 code/backend/Cleanuparr.Infrastructure/Features/Arr/SonarrClient.cs (+19 -18)
code/backend/Cleanuparr.Infrastructure/Features/Arr/WhisparrClient.cs (+282 -0)
📝 code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs (+23 -7)
📝 code/backend/Cleanuparr.Infrastructure/Features/Notifications/NotificationPublisher.cs (+1 -0)
code/backend/Cleanuparr.Persistence/Migrations/Data/20250702091059_AddWhisparr.Designer.cs (+637 -0)
code/backend/Cleanuparr.Persistence/Migrations/Data/20250702091059_AddWhisparr.cs (+57 -0)

...and 13 more files

📄 Description

Closes #148


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Cleanuparr/Cleanuparr/pull/215 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 7/2/2025 **Status:** ✅ Merged **Merged:** 7/4/2025 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `add_whisparr_support` --- ### 📝 Commits (1) - [`40e2cdb`](https://github.com/Cleanuparr/Cleanuparr/commit/40e2cdbcc7fd39b605559fb805ec0a803f4a9f99) added whisparr support ### 📊 Changes **33 files changed** (+2472 additions, -37 deletions) <details> <summary>View changed files</summary> 📝 `code/backend/Cleanuparr.Api/Controllers/ConfigurationController.cs` (+159 -0) 📝 `code/backend/Cleanuparr.Api/DependencyInjection/MainDI.cs` (+3 -2) 📝 `code/backend/Cleanuparr.Api/DependencyInjection/ServicesDI.cs` (+1 -0) ➕ `code/backend/Cleanuparr.Application/Features/Arr/Dtos/UpdateWhisparrConfigDto.cs` (+9 -0) 📝 `code/backend/Cleanuparr.Application/Features/ContentBlocker/ContentBlocker.cs` (+6 -0) 📝 `code/backend/Cleanuparr.Application/Features/DownloadCleaner/DownloadCleaner.cs` (+2 -1) 📝 `code/backend/Cleanuparr.Application/Features/QueueCleaner/QueueCleaner.cs` (+2 -0) 📝 `code/backend/Cleanuparr.Domain/Entities/Arr/Queue/QueueRecord.cs` (+1 -1) 📝 `code/backend/Cleanuparr.Domain/Entities/Arr/SeriesSearchItem.cs` (+5 -4) 📝 `code/backend/Cleanuparr.Domain/Entities/Sonarr/SonarrCommand.cs` (+1 -1) ➕ `code/backend/Cleanuparr.Domain/Entities/Whisparr/WhisparrCommand.cs` (+16 -0) 📝 `code/backend/Cleanuparr.Domain/Enums/SeriesSearchType.cs` (+1 -1) 📝 `code/backend/Cleanuparr.Infrastructure/Features/Arr/ArrClientFactory.cs` (+5 -1) ➕ `code/backend/Cleanuparr.Infrastructure/Features/Arr/Interfaces/IWhisparrClient.cs` (+5 -0) 📝 `code/backend/Cleanuparr.Infrastructure/Features/Arr/SonarrClient.cs` (+19 -18) ➕ `code/backend/Cleanuparr.Infrastructure/Features/Arr/WhisparrClient.cs` (+282 -0) 📝 `code/backend/Cleanuparr.Infrastructure/Features/Jobs/GenericHandler.cs` (+23 -7) 📝 `code/backend/Cleanuparr.Infrastructure/Features/Notifications/NotificationPublisher.cs` (+1 -0) ➕ `code/backend/Cleanuparr.Persistence/Migrations/Data/20250702091059_AddWhisparr.Designer.cs` (+637 -0) ➕ `code/backend/Cleanuparr.Persistence/Migrations/Data/20250702091059_AddWhisparr.cs` (+57 -0) _...and 13 more files_ </details> ### 📄 Description Closes #148 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
giteasync added the
pull-request
label 2025-10-09 17:00:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr#218
No description provided.