[PR #5] [MERGED] add content blocker #313

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

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/5
Author: @Flaminel
Created: 11/18/2024
Status: Merged
Merged: 11/18/2024
Merged by: @Flaminel

Base: mainHead: add_blacklist_support


📝 Commits (5)

  • f1fab44 refactored code
  • 90d08ae increased level on some logs; updated test docker compose; updated dev appsettings
  • c90b0e3 updated docker compose and readme
  • a19afbb moved some logs
  • 398b698 fixed env var typo; fixed sonarr and radarr default download client

📊 Changes

154 files changed (+4752 additions, -789 deletions)

View changed files

📝 .gitignore (+2 -1)
📝 README.md (+94 -541)
code/Common/Configuration/ContentBlocker/ContentBlockerConfig.cs (+40 -0)
code/Common/Configuration/ContentBlocker/PatternConfig.cs (+8 -0)
code/Common/Configuration/DelugeConfig.cs (+32 -0)
code/Common/Configuration/IConfig.cs (+6 -0)
📝 code/Common/Configuration/QBitConfig.cs (+32 -5)
code/Common/Configuration/QueueCleaner/QueueCleanerConfig.cs (+8 -0)
code/Common/Configuration/TransmissionConfig.cs (+37 -0)
📝 code/Common/Configuration/TriggersConfig.cs (+2 -0)
📝 code/Domain/Domain.csproj (+4 -0)
code/Domain/Enums/BlocklistType.cs (+7 -0)
📝 code/Domain/Enums/InstanceType.cs (+1 -1)
📝 code/Domain/Models/Arr/Queue/QueueListResponse.cs (+0 -0)
📝 code/Domain/Models/Arr/Queue/QueueRecord.cs (+1 -0)
code/Domain/Models/Deluge/Exceptions/DelugeClientException.cs (+8 -0)
code/Domain/Models/Deluge/Exceptions/DelugeLoginException.cs (+8 -0)
code/Domain/Models/Deluge/Exceptions/DelugeLogoutException.cs (+8 -0)
code/Domain/Models/Deluge/Request/DelugeRequest.cs (+32 -0)
code/Domain/Models/Deluge/Response/DelugeContents.cs (+12 -0)

...and 80 more files

📄 Description

refactored code
added deluge support
added transmission support
added content blocker
added blacklist and whitelist


🔄 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/5 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 11/18/2024 **Status:** ✅ Merged **Merged:** 11/18/2024 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `add_blacklist_support` --- ### 📝 Commits (5) - [`f1fab44`](https://github.com/Cleanuparr/Cleanuparr/commit/f1fab444617d17e1bf60003c3f0bdc96c34d9b54) refactored code - [`90d08ae`](https://github.com/Cleanuparr/Cleanuparr/commit/90d08ae8b481f60b7927b84027c15b4d9678bd5b) increased level on some logs; updated test docker compose; updated dev appsettings - [`c90b0e3`](https://github.com/Cleanuparr/Cleanuparr/commit/c90b0e37b7200b59cc9e6747b48483fcc4c910d2) updated docker compose and readme - [`a19afbb`](https://github.com/Cleanuparr/Cleanuparr/commit/a19afbb2f0aa0562719bb007b99dac676571fb73) moved some logs - [`398b698`](https://github.com/Cleanuparr/Cleanuparr/commit/398b69804755502de7598d03172ed405a69d17b1) fixed env var typo; fixed sonarr and radarr default download client ### 📊 Changes **154 files changed** (+4752 additions, -789 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -1) 📝 `README.md` (+94 -541) ➕ `code/Common/Configuration/ContentBlocker/ContentBlockerConfig.cs` (+40 -0) ➕ `code/Common/Configuration/ContentBlocker/PatternConfig.cs` (+8 -0) ➕ `code/Common/Configuration/DelugeConfig.cs` (+32 -0) ➕ `code/Common/Configuration/IConfig.cs` (+6 -0) 📝 `code/Common/Configuration/QBitConfig.cs` (+32 -5) ➕ `code/Common/Configuration/QueueCleaner/QueueCleanerConfig.cs` (+8 -0) ➕ `code/Common/Configuration/TransmissionConfig.cs` (+37 -0) 📝 `code/Common/Configuration/TriggersConfig.cs` (+2 -0) 📝 `code/Domain/Domain.csproj` (+4 -0) ➕ `code/Domain/Enums/BlocklistType.cs` (+7 -0) 📝 `code/Domain/Enums/InstanceType.cs` (+1 -1) 📝 `code/Domain/Models/Arr/Queue/QueueListResponse.cs` (+0 -0) 📝 `code/Domain/Models/Arr/Queue/QueueRecord.cs` (+1 -0) ➕ `code/Domain/Models/Deluge/Exceptions/DelugeClientException.cs` (+8 -0) ➕ `code/Domain/Models/Deluge/Exceptions/DelugeLoginException.cs` (+8 -0) ➕ `code/Domain/Models/Deluge/Exceptions/DelugeLogoutException.cs` (+8 -0) ➕ `code/Domain/Models/Deluge/Request/DelugeRequest.cs` (+32 -0) ➕ `code/Domain/Models/Deluge/Response/DelugeContents.cs` (+12 -0) _...and 80 more files_ </details> ### 📄 Description refactored code added deluge support added transmission support added content blocker added blacklist and whitelist --- <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:01:04 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr#313
No description provided.