mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Moved extra downloader to download class
This commit is contained in:
committed by
Nikhil Badyal
parent
2d15330df3
commit
e2de08fee3
@@ -6,10 +6,11 @@ from loguru import logger
|
|||||||
|
|
||||||
from src.app import APP
|
from src.app import APP
|
||||||
from src.config import RevancedConfig
|
from src.config import RevancedConfig
|
||||||
|
from src.downloader.download import Downloader
|
||||||
from src.exceptions import AppNotFoundError, BuilderError, PatchesJsonLoadError, PatchingFailedError
|
from src.exceptions import AppNotFoundError, BuilderError, PatchesJsonLoadError, PatchingFailedError
|
||||||
from src.parser import Parser
|
from src.parser import Parser
|
||||||
from src.patches import Patches
|
from src.patches import Patches
|
||||||
from src.utils import check_java, extra_downloads
|
from src.utils import check_java
|
||||||
|
|
||||||
|
|
||||||
def get_app(config: RevancedConfig, app_name: str) -> APP:
|
def get_app(config: RevancedConfig, app_name: str) -> APP:
|
||||||
@@ -24,7 +25,7 @@ def main() -> None:
|
|||||||
env = Env()
|
env = Env()
|
||||||
env.read_env()
|
env.read_env()
|
||||||
config = RevancedConfig(env)
|
config = RevancedConfig(env)
|
||||||
extra_downloads(config)
|
Downloader.extra_downloads(config)
|
||||||
if not config.dry_run:
|
if not config.dry_run:
|
||||||
check_java()
|
check_java()
|
||||||
|
|
||||||
|
|||||||
@@ -132,3 +132,27 @@ class Downloader(object):
|
|||||||
def direct_download(self: Self, dl: str, file_name: str) -> None:
|
def direct_download(self: Self, dl: str, file_name: str) -> None:
|
||||||
"""Download from DL."""
|
"""Download from DL."""
|
||||||
self._download(dl, file_name)
|
self._download(dl, file_name)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def extra_downloads(config: RevancedConfig) -> None:
|
||||||
|
"""The function `extra_downloads` downloads extra files specified.
|
||||||
|
|
||||||
|
Parameters
|
||||||
|
----------
|
||||||
|
config : RevancedConfig
|
||||||
|
The `config` parameter is an instance of the `RevancedConfig` class. It is used to provide
|
||||||
|
configuration settings for the download process.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
for extra in config.extra_download_files:
|
||||||
|
url, file_name = extra.split("@")
|
||||||
|
file_name_without_extension, file_extension = os.path.splitext(file_name)
|
||||||
|
new_file_name = f"{file_name_without_extension}-output{file_extension}"
|
||||||
|
APP.download(
|
||||||
|
url,
|
||||||
|
config,
|
||||||
|
assets_filter=f".*{file_extension}",
|
||||||
|
file_name=new_file_name,
|
||||||
|
)
|
||||||
|
except (ValueError, IndexError):
|
||||||
|
logger.info("Unable to download extra file. Provide input in url@name.apk format.")
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
"""Utilities."""
|
"""Utilities."""
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
@@ -10,7 +9,6 @@ import requests
|
|||||||
from loguru import logger
|
from loguru import logger
|
||||||
from requests import Response, Session
|
from requests import Response, Session
|
||||||
|
|
||||||
from src.config import RevancedConfig
|
|
||||||
from src.downloader.sources import APK_MIRROR_APK_CHECK
|
from src.downloader.sources import APK_MIRROR_APK_CHECK
|
||||||
from src.downloader.utils import status_code_200
|
from src.downloader.utils import status_code_200
|
||||||
from src.exceptions import ScrapingError
|
from src.exceptions import ScrapingError
|
||||||
@@ -173,32 +171,6 @@ def check_java() -> None:
|
|||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
|
|
||||||
def extra_downloads(config: RevancedConfig) -> None:
|
|
||||||
"""The function `extra_downloads` downloads extra files specified.
|
|
||||||
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
config : RevancedConfig
|
|
||||||
The `config` parameter is an instance of the `RevancedConfig` class. It is used to provide
|
|
||||||
configuration settings for the download process.
|
|
||||||
"""
|
|
||||||
from src.app import APP
|
|
||||||
|
|
||||||
try:
|
|
||||||
for extra in config.extra_download_files:
|
|
||||||
url, file_name = extra.split("@")
|
|
||||||
file_name_without_extension, file_extension = os.path.splitext(file_name)
|
|
||||||
new_file_name = f"{file_name_without_extension}-output{file_extension}"
|
|
||||||
APP.download(
|
|
||||||
url,
|
|
||||||
config,
|
|
||||||
assets_filter=f".*{file_extension}",
|
|
||||||
file_name=new_file_name,
|
|
||||||
)
|
|
||||||
except (ValueError, IndexError):
|
|
||||||
logger.info("Unable to download extra file. Provide input in url@name.apk format.")
|
|
||||||
|
|
||||||
|
|
||||||
def delete_old_changelog() -> None:
|
def delete_old_changelog() -> None:
|
||||||
"""The function `delete_old_changelog` deleted old changelog file."""
|
"""The function `delete_old_changelog` deleted old changelog file."""
|
||||||
Path(changelog_file).unlink(missing_ok=True)
|
Path(changelog_file).unlink(missing_ok=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user