Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: Torbox Removal #971

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ RIVEN_DOWNLOADERS_REAL_DEBRID_ENABLED=false
RIVEN_DOWNLOADERS_REAL_DEBRID_API_KEY=
RIVEN_DOWNLOADERS_ALL_DEBRID_ENABLED=false
RIVEN_DOWNLOADERS_ALL_DEBRID_API_KEY=
RIVEN_DOWNLOADERS_TORBOX_ENABLED=false
RIVEN_DOWNLOADERS_TORBOX_API_KEY=

#-------------------------------------
# Content
Expand Down Expand Up @@ -144,8 +142,6 @@ RIVEN_SCRAPING_ORIONOID_PARAMETERS_VIDEOQUALITY=sd_hd8k # See the Orionoid API
RIVEN_SCRAPING_ORIONOID_PARAMETERS_LIMITCOUNT=5 # See the Orionoid API docs for more information on these parameters.
RIVEN_SCRAPING_ORIONOID_TIMEOUT=30
RIVEN_SCRAPING_ORIONOID_RATELIMIT=true
RIVEN_SCRAPING_TORBOX_SCRAPER_ENABLED=false
RIVEN_SCRAPING_TORBOX_SCRAPER_TIMEOUT=30
RIVEN_SCRAPING_MEDIAFUSION_ENABLED=false
RIVEN_SCRAPING_MEDIAFUSION_URL=https://mediafusion.elfhosted.com
RIVEN_SCRAPING_MEDIAFUSION_TIMEOUT=30
Expand Down
1,615 changes: 834 additions & 781 deletions poetry.lock

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions src/program/services/downloaders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@
TorrentInfo,
)
from program.services.downloaders.shared import parse_filename
from program.settings.manager import settings_manager

from .alldebrid import AllDebridDownloader
from .realdebrid import RealDebridDownloader
from .torbox import TorBoxDownloader


class Downloader:
Expand All @@ -28,7 +26,6 @@ def __init__(self):
self.initialized = False
self.services = {
RealDebridDownloader: RealDebridDownloader(),
TorBoxDownloader: TorBoxDownloader(),
AllDebridDownloader: AllDebridDownloader()
}
self.service = next((service for service in self.services.values() if service.initialized), None)
Expand Down
195 changes: 0 additions & 195 deletions src/program/services/downloaders/torbox.py

This file was deleted.

2 changes: 0 additions & 2 deletions src/program/services/scrapers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from program.services.scrapers.orionoid import Orionoid
from program.services.scrapers.prowlarr import Prowlarr
from program.services.scrapers.shared import _parse_results
from program.services.scrapers.torbox import TorBoxScraper
from program.services.scrapers.torrentio import Torrentio
from program.services.scrapers.zilean import Zilean
from program.settings.manager import settings_manager
Expand All @@ -28,7 +27,6 @@ def __init__(self):
Torrentio: Torrentio(),
Knightcrawler: Knightcrawler(),
Orionoid: Orionoid(),
TorBoxScraper: TorBoxScraper(),
Mediafusion: Mediafusion(),
Comet: Comet()
}
Expand Down
101 changes: 0 additions & 101 deletions src/program/services/scrapers/torbox.py

This file was deleted.

Loading
Loading