[PR #52] [MERGED] Add Notifiarr support #279

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

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/52
Author: @Flaminel
Created: 1/31/2025
Status: Merged
Merged: 2/2/2025
Merged by: @Flaminel

Base: devHead: add_notifiarr_support


📝 Commits (10+)

📊 Changes

46 files changed (+834 additions, -25 deletions)

View changed files

📝 README.md (+20 -0)
code/Common/Configuration/Notification/NotificationConfig.cs (+19 -0)
code/Domain/Enums/DeleteReason.cs (+8 -0)
code/Domain/Models/Arr/Queue/Image.cs (+8 -0)
code/Domain/Models/Arr/Queue/LidarrImage.cs (+8 -0)
code/Domain/Models/Arr/Queue/QueueAlbum.cs (+6 -0)
code/Domain/Models/Arr/Queue/QueueMovie.cs (+6 -0)
📝 code/Domain/Models/Arr/Queue/QueueRecord.cs (+6 -0)
code/Domain/Models/Arr/Queue/QueueSeries.cs (+6 -0)
📝 code/Executable/DependencyInjection/LoggingDI.cs (+1 -0)
📝 code/Executable/DependencyInjection/MainDI.cs (+23 -1)
code/Executable/DependencyInjection/NotificationsDI.cs (+16 -0)
📝 code/Executable/appsettings.Development.json (+7 -0)
📝 code/Executable/appsettings.json (+7 -0)
📝 code/Infrastructure/Infrastructure.csproj (+2 -0)
📝 code/Infrastructure/Verticals/Arr/ArrClient.cs (+2 -2)
📝 code/Infrastructure/Verticals/Arr/SonarrClient.cs (+2 -1)
📝 code/Infrastructure/Verticals/ContentBlocker/ContentBlocker.cs (+15 -2)
code/Infrastructure/Verticals/Context/ContextProvider.cs (+24 -0)
📝 code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs (+14 -3)

...and 26 more files

📄 Description

No description provided


🔄 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/52 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 1/31/2025 **Status:** ✅ Merged **Merged:** 2/2/2025 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `dev` ← **Head:** `add_notifiarr_support` --- ### 📝 Commits (10+) - [`cd01c9f`](https://github.com/Cleanuparr/Cleanuparr/commit/cd01c9ff232534b278df62aa95b242909c8c896f) added Notifiarr notifications - [`102f855`](https://github.com/Cleanuparr/Cleanuparr/commit/102f8553200832b98c0666561ee0202f992e8eab) increased delay between notifications - [`442a3f5`](https://github.com/Cleanuparr/Cleanuparr/commit/442a3f53a44fb7af8eece5e2489505d8bafe0ef1) updated test data - [`5691fc9`](https://github.com/Cleanuparr/Cleanuparr/commit/5691fc959330bf4fb3e621b8594b2ebee56b9232) updated README - [`77fea47`](https://github.com/Cleanuparr/Cleanuparr/commit/77fea47cf54afe27aac181c5c36385979cbc15d2) fixed notification fields - [`0c639f8`](https://github.com/Cleanuparr/Cleanuparr/commit/0c639f895b0e99c921f250f929e4e6bb3e4b8d7c) refactored duplicated code - [`491ea7b`](https://github.com/Cleanuparr/Cleanuparr/commit/491ea7b31a53657842f5ab463adec6cb82ac207c) revert - [`b895505`](https://github.com/Cleanuparr/Cleanuparr/commit/b8955058f2985793d0ab0987a9e7c642c5baf8de) integrated in-memory MassTransit to process notifications - [`573c696`](https://github.com/Cleanuparr/Cleanuparr/commit/573c696ad0b33513256577f73bd5f40511ef1181) increased log level for MassTransit - [`75f33ec`](https://github.com/Cleanuparr/Cleanuparr/commit/75f33ecb9063f7a5b8b6dcbf470540dd6ec7cd5b) fixed typo ### 📊 Changes **46 files changed** (+834 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+20 -0) ➕ `code/Common/Configuration/Notification/NotificationConfig.cs` (+19 -0) ➕ `code/Domain/Enums/DeleteReason.cs` (+8 -0) ➕ `code/Domain/Models/Arr/Queue/Image.cs` (+8 -0) ➕ `code/Domain/Models/Arr/Queue/LidarrImage.cs` (+8 -0) ➕ `code/Domain/Models/Arr/Queue/QueueAlbum.cs` (+6 -0) ➕ `code/Domain/Models/Arr/Queue/QueueMovie.cs` (+6 -0) 📝 `code/Domain/Models/Arr/Queue/QueueRecord.cs` (+6 -0) ➕ `code/Domain/Models/Arr/Queue/QueueSeries.cs` (+6 -0) 📝 `code/Executable/DependencyInjection/LoggingDI.cs` (+1 -0) 📝 `code/Executable/DependencyInjection/MainDI.cs` (+23 -1) ➕ `code/Executable/DependencyInjection/NotificationsDI.cs` (+16 -0) 📝 `code/Executable/appsettings.Development.json` (+7 -0) 📝 `code/Executable/appsettings.json` (+7 -0) 📝 `code/Infrastructure/Infrastructure.csproj` (+2 -0) 📝 `code/Infrastructure/Verticals/Arr/ArrClient.cs` (+2 -2) 📝 `code/Infrastructure/Verticals/Arr/SonarrClient.cs` (+2 -1) 📝 `code/Infrastructure/Verticals/ContentBlocker/ContentBlocker.cs` (+15 -2) ➕ `code/Infrastructure/Verticals/Context/ContextProvider.cs` (+24 -0) 📝 `code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs` (+14 -3) _...and 26 more files_ </details> ### 📄 Description _No description provided_ --- <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:42 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr-Cleanuparr#279
No description provided.