mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 06:21:05 +00:00
Subdivx Provider: major updates
This commit is contained in:
parent
6c488063e7
commit
d9629df3af
3 changed files with 94 additions and 103 deletions
|
@ -1,7 +1,9 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
|
from json import JSONDecodeError
|
||||||
import logging
|
import logging
|
||||||
|
import random
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from requests import Session
|
from requests import Session
|
||||||
|
@ -13,6 +15,7 @@ from subliminal_patch.providers import Provider
|
||||||
from subliminal_patch.providers.utils import get_archive_from_bytes
|
from subliminal_patch.providers.utils import get_archive_from_bytes
|
||||||
from subliminal_patch.providers.utils import get_subtitle_from_archive
|
from subliminal_patch.providers.utils import get_subtitle_from_archive
|
||||||
from subliminal_patch.providers.utils import update_matches
|
from subliminal_patch.providers.utils import update_matches
|
||||||
|
from subliminal_patch.providers.utils import USER_AGENTS
|
||||||
from subliminal_patch.subtitle import Subtitle
|
from subliminal_patch.subtitle import Subtitle
|
||||||
from subzero.language import Language
|
from subzero.language import Language
|
||||||
|
|
||||||
|
@ -38,9 +41,7 @@ _SEASON_NUM_RE = re.compile(
|
||||||
r"(s|(season|temporada)\s)(?P<x>\d{1,2})", flags=re.IGNORECASE
|
r"(s|(season|temporada)\s)(?P<x>\d{1,2})", flags=re.IGNORECASE
|
||||||
)
|
)
|
||||||
_EPISODE_YEAR_RE = re.compile(r"\((?P<x>(19\d{2}|20[0-2]\d))\)")
|
_EPISODE_YEAR_RE = re.compile(r"\((?P<x>(19\d{2}|20[0-2]\d))\)")
|
||||||
_UNSUPPORTED_RE = re.compile(
|
_UNSUPPORTED_RE = re.compile(r"(extras|forzado(s)?|forced)\s?$", flags=re.IGNORECASE)
|
||||||
r"(\)?\d{4}\)?|[sS]\d{1,2})\s.{,3}(extras|forzado(s)?|forced)", flags=re.IGNORECASE
|
|
||||||
)
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -78,16 +79,12 @@ class SubdivxSubtitle(Subtitle):
|
||||||
# episode
|
# episode
|
||||||
if isinstance(video, Episode):
|
if isinstance(video, Episode):
|
||||||
# already matched within provider
|
# already matched within provider
|
||||||
matches.update(["title", "series", "season", "episode"])
|
matches.update(["title", "series", "season", "episode", "year"])
|
||||||
if str(video.year) in self.release_info:
|
|
||||||
matches.update(["year"])
|
|
||||||
|
|
||||||
# movie
|
# movie
|
||||||
elif isinstance(video, Movie):
|
elif isinstance(video, Movie):
|
||||||
# already matched within provider
|
# already matched within provider
|
||||||
matches.update(["title"])
|
matches.update(["title", "year"])
|
||||||
if str(video.year) in self.release_info:
|
|
||||||
matches.update(["year"])
|
|
||||||
|
|
||||||
update_matches(matches, video, self._description)
|
update_matches(matches, video, self._description)
|
||||||
|
|
||||||
|
@ -111,85 +108,76 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
multi_result_throttle = 2
|
multi_result_throttle = 2
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.session = None
|
self.session = Session()
|
||||||
|
|
||||||
def initialize(self):
|
def initialize(self):
|
||||||
self.session = Session()
|
# self.session.headers["User-Agent"] = f"Subliminal/{__short_version__}"
|
||||||
self.session.headers["User-Agent"] = f"Subliminal/{__short_version__}"
|
self.session.headers["User-Agent"] = random.choice(USER_AGENTS)
|
||||||
self.session.cookies.update({"iduser_cookie": _IDUSER_COOKIE})
|
self.session.cookies.update({"iduser_cookie": _IDUSER_COOKIE})
|
||||||
|
|
||||||
def terminate(self):
|
def terminate(self):
|
||||||
self.session.close()
|
self.session.close()
|
||||||
|
|
||||||
def query(self, video, languages):
|
def _query(self, video, languages):
|
||||||
subtitles = []
|
subtitles = []
|
||||||
|
|
||||||
# Determine if the video is a movie or a TV episode and set the search accordingly
|
episode = isinstance(video, Episode)
|
||||||
|
|
||||||
if isinstance(video, Episode):
|
titles = [video.series if episode else video.title]
|
||||||
# For TV episodes, use alternative_series if available
|
|
||||||
titles_to_search = [video.series] + getattr(video, 'alternative_series', [])
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
titles.extend(video.alternative_titles)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
titles = titles[:5] # limit alt titles
|
||||||
|
|
||||||
|
logger.debug("Titles to look at: %s", titles)
|
||||||
|
|
||||||
|
if episode:
|
||||||
# TODO: cache pack queries (TV SHOW S01).
|
# TODO: cache pack queries (TV SHOW S01).
|
||||||
# Too many redundant server calls.
|
# Too many redundant server calls.
|
||||||
|
for title in titles:
|
||||||
|
for query in (
|
||||||
|
f"{title} S{video.season:02}E{video.episode:02}",
|
||||||
|
f"{title} S{video.season:02}",
|
||||||
|
):
|
||||||
|
subtitles += self._query_results(query, video)
|
||||||
|
|
||||||
# For TV episodes, construct queries with each main and alternative series title
|
# Try only with series title
|
||||||
for title in titles_to_search:
|
if len(subtitles) <= 5:
|
||||||
# Perform the existing search logic for each title
|
subtitles += self._query_results(title, video)
|
||||||
subtitles += self._handle_search(f"{title} S{video.season:02}E{video.episode:02}", video)
|
else:
|
||||||
|
break
|
||||||
|
|
||||||
# If nothing found under SxxExx, try with only season number
|
# Try with episode title as last resort
|
||||||
if not subtitles:
|
if not subtitles and video.title and video.title != title:
|
||||||
for title in titles_to_search:
|
subtitles += self._query_results(video.title, video)
|
||||||
# Perform the existing search logic for each title
|
|
||||||
subtitles += self._handle_search(f"{title} S{video.season:02}", video)
|
|
||||||
|
|
||||||
# If still nothing found, try with only series title (each main and alternative series title)
|
|
||||||
if not subtitles:
|
|
||||||
for title in titles_to_search:
|
|
||||||
subtitles += self._handle_search(title, video, 1)
|
|
||||||
|
|
||||||
# Try with episode title as last resort
|
|
||||||
if not subtitles and video.title != video.series:
|
|
||||||
subtitles += self._handle_search(video.title, video, 1)
|
|
||||||
|
|
||||||
# Additional logic for handling insufficient subtitle results can go here
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# For movies, use alternative_titles if available
|
for title in titles:
|
||||||
titles_to_search = [video.title] + getattr(video, 'alternative_titles', [])
|
for query in (title, f"{title} ({video.year})"):
|
||||||
|
subtitles += self._query_results(query, video)
|
||||||
# For movies, first search with the title (each main and alternative movie title)
|
# Second query is a fallback
|
||||||
for title in titles_to_search:
|
if subtitles:
|
||||||
subtitles += self._handle_search(title, video)
|
break
|
||||||
|
|
||||||
# Then, if available, search with title and year
|
|
||||||
if video.year:
|
|
||||||
for title in titles_to_search:
|
|
||||||
subtitles += self._handle_search(f"{title} ({video.year})", video)
|
|
||||||
|
|
||||||
# Additional logic for handling insufficient subtitle results can go here
|
|
||||||
|
|
||||||
return subtitles
|
return subtitles
|
||||||
|
|
||||||
def _handle_search(self, query, video):
|
def _query_results(self, query, video):
|
||||||
# URL for the POST request
|
|
||||||
search_link = f"{_SERVER_URL}/inc/ajax.php"
|
search_link = f"{_SERVER_URL}/inc/ajax.php"
|
||||||
|
|
||||||
# Payload for POST
|
payload = {"tabla": "resultados", "filtros": "", "buscar": query}
|
||||||
payload = {
|
|
||||||
'tabla': 'resultados',
|
|
||||||
'filtros': '', # Not used now
|
|
||||||
'buscar': query
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug("Query: %s", query)
|
logger.debug("Query: %s", query)
|
||||||
|
|
||||||
# Make the POST request
|
|
||||||
response = self.session.post(search_link, data=payload)
|
response = self.session.post(search_link, data=payload)
|
||||||
|
|
||||||
if response.status_code == 500:
|
if response.status_code == 500:
|
||||||
logger.debug("Error 500 (probably bad encoding of query causing issue on provider side): %s", query)
|
logger.debug(
|
||||||
|
"Error 500 (probably bad encoding of query causing issue on provider side): %s",
|
||||||
|
query,
|
||||||
|
)
|
||||||
return []
|
return []
|
||||||
|
|
||||||
# Ensure it was successful
|
# Ensure it was successful
|
||||||
|
@ -197,32 +185,45 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
|
|
||||||
# Processing the JSON result
|
# Processing the JSON result
|
||||||
subtitles = []
|
subtitles = []
|
||||||
data = response.json()
|
try:
|
||||||
|
data = response.json()
|
||||||
|
except JSONDecodeError:
|
||||||
|
logger.debug("JSONDecodeError: %s", response.content)
|
||||||
|
return []
|
||||||
|
|
||||||
|
title_checker = _check_episode if isinstance(video, Episode) else _check_movie
|
||||||
|
|
||||||
# Iterate over each subtitle in the response
|
# Iterate over each subtitle in the response
|
||||||
for item in data['aaData']:
|
for item in data["aaData"]:
|
||||||
# Extract the relevant information
|
id = item["id"]
|
||||||
id_subtitulo = item['id']
|
page_link = f"{_SERVER_URL}/descargar.php?id={id}"
|
||||||
# There is no direct link to view sub details, this is just the download link
|
title = _clean_title(item["titulo"])
|
||||||
page_link = f"{_SERVER_URL}/descargar.php?id={id_subtitulo}"
|
description = item["descripcion"]
|
||||||
title = item['titulo']
|
uploader = item["nick"]
|
||||||
description = item['descripcion']
|
|
||||||
uploader = item['nick']
|
|
||||||
|
|
||||||
# Build the download URL - assuming RAR for now
|
download_url = f"{_SERVER_URL}/descargar.php?id={id}"
|
||||||
download_url = f"{_SERVER_URL}/descargar.php?id={id_subtitulo}"
|
|
||||||
|
|
||||||
language = Language('spa', 'MX') # Subdivx is always latin spanish
|
if _UNSUPPORTED_RE.search(title) is not None:
|
||||||
|
logger.debug("Skipping unsupported subtitles: %s", title)
|
||||||
|
continue
|
||||||
|
|
||||||
# Create the SubdivxSubtitle instance
|
if not title_checker(video, title):
|
||||||
subtitle = self.subtitle_class(language, video, page_link, title, description, uploader, download_url)
|
continue
|
||||||
|
|
||||||
|
spain = _SPANISH_RE.search(description.lower()) is not None
|
||||||
|
language = Language.fromalpha2("es") if spain else Language("spa", "MX")
|
||||||
|
|
||||||
|
subtitle = self.subtitle_class(
|
||||||
|
language, video, page_link, title, description, uploader, download_url
|
||||||
|
)
|
||||||
|
|
||||||
|
logger.debug("Found subtitle %r", subtitle)
|
||||||
subtitles.append(subtitle)
|
subtitles.append(subtitle)
|
||||||
|
|
||||||
return subtitles # The JSON contains all subs, not paged
|
return subtitles
|
||||||
|
|
||||||
def list_subtitles(self, video, languages):
|
def list_subtitles(self, video, languages):
|
||||||
return self.query(video, languages)
|
return self._query(video, languages)
|
||||||
|
|
||||||
def download_subtitle(self, subtitle):
|
def download_subtitle(self, subtitle):
|
||||||
# download the subtitle
|
# download the subtitle
|
||||||
|
@ -245,6 +246,8 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
if isinstance(subtitle.video, Episode):
|
if isinstance(subtitle.video, Episode):
|
||||||
episode = subtitle.video.episode
|
episode = subtitle.video.episode
|
||||||
|
|
||||||
|
logger.debug("Episode number: %s", episode)
|
||||||
|
|
||||||
subtitle.content = get_subtitle_from_archive(archive, episode=episode)
|
subtitle.content = get_subtitle_from_archive(archive, episode=episode)
|
||||||
|
|
||||||
|
|
||||||
|
@ -267,22 +270,16 @@ def _check_episode(video, title):
|
||||||
# Only check if both video and Subdivx's title have year metadata
|
# Only check if both video and Subdivx's title have year metadata
|
||||||
if year is not None and video.year:
|
if year is not None and video.year:
|
||||||
year = int(year.group("x"))
|
year = int(year.group("x"))
|
||||||
# Tolerance of 1 year difference
|
# Tolerancy of 1 year difference
|
||||||
if abs(year - (video.year or 0)) > 1:
|
if abs(year - (video.year or 0)) > 1:
|
||||||
logger.debug("Series year doesn't match: %s", title)
|
logger.debug("Series year doesn't match: %s", title)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Prepare a list of all series names to check against (include alternative series names)
|
|
||||||
series_names = [video.series] + getattr(video, 'alternative_series', [])
|
|
||||||
|
|
||||||
# Normalize the title for comparison
|
|
||||||
normalized_title = _clean_title(title).lower()
|
|
||||||
|
|
||||||
# Check if the normalized title contains any of the series names (main or alternative)
|
|
||||||
series_clean_match = any(series_name.lower() in normalized_title for series_name in series_names)
|
|
||||||
|
|
||||||
# Include matches where the episode title is present
|
# Include matches where the episode title is present
|
||||||
if series_clean_match and (video.title or "").lower() in title.lower():
|
if (
|
||||||
|
video.series.lower() in title.lower()
|
||||||
|
and (video.title or "").lower() in title.lower()
|
||||||
|
):
|
||||||
logger.debug("Episode title found in title: %s ~ %s", video.title, title)
|
logger.debug("Episode title found in title: %s ~ %s", video.title, title)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -303,7 +300,7 @@ def _check_episode(video, title):
|
||||||
|
|
||||||
distance = abs(len(series_title) - len(video.series))
|
distance = abs(len(series_title) - len(video.series))
|
||||||
|
|
||||||
series_matched = (distance < 4 and ep_matches) or series_clean_match
|
series_matched = distance < 4 and ep_matches
|
||||||
|
|
||||||
logger.debug(
|
logger.debug(
|
||||||
"Series matched? %s [%s -> %s] [title distance: %d]",
|
"Series matched? %s [%s -> %s] [title distance: %d]",
|
||||||
|
|
|
@ -18,6 +18,8 @@ from subliminal_patch.subtitle import guess_matches
|
||||||
|
|
||||||
from ._agent_list import FIRST_THOUSAND_OR_SO_USER_AGENTS
|
from ._agent_list import FIRST_THOUSAND_OR_SO_USER_AGENTS
|
||||||
|
|
||||||
|
USER_AGENTS = FIRST_THOUSAND_OR_SO_USER_AGENTS
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -35,14 +35,6 @@ def test_list_subtitles_movie_with_one_difference_year(movies):
|
||||||
assert provider.list_subtitles(item, {Language("spa", "MX")})
|
assert provider.list_subtitles(item, {Language("spa", "MX")})
|
||||||
|
|
||||||
|
|
||||||
def test_handle_multi_page_search(episodes):
|
|
||||||
with SubdivxSubtitlesProvider() as provider:
|
|
||||||
for _ in provider._handle_multi_page_search(
|
|
||||||
"Game Of Thrones", episodes["got_s03e10"]
|
|
||||||
):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"episode_key,expected", [("breaking_bad_s01e01", 15), ("inexistent", 0)]
|
"episode_key,expected", [("breaking_bad_s01e01", 15), ("inexistent", 0)]
|
||||||
)
|
)
|
||||||
|
@ -106,7 +98,7 @@ def test_download_subtitle(movies):
|
||||||
"Dune",
|
"Dune",
|
||||||
"",
|
"",
|
||||||
"",
|
"",
|
||||||
"https://www.subdivx.com/bajar.php?id=631101&u=9",
|
"https://www.subdivx.com/descargar.php?id=631101",
|
||||||
)
|
)
|
||||||
with SubdivxSubtitlesProvider() as provider:
|
with SubdivxSubtitlesProvider() as provider:
|
||||||
provider.download_subtitle(subtitle)
|
provider.download_subtitle(subtitle)
|
||||||
|
@ -124,7 +116,7 @@ def test_download_subtitle_episode_pack(episodes):
|
||||||
"Breaking Bad S01E01-07",
|
"Breaking Bad S01E01-07",
|
||||||
"Son los del torrent que vienen Formato / Dimensiones 624x352 / Tamaño 351 MB -Incluye los Torrents-",
|
"Son los del torrent que vienen Formato / Dimensiones 624x352 / Tamaño 351 MB -Incluye los Torrents-",
|
||||||
"",
|
"",
|
||||||
"https://www.subdivx.com/bajar.php?id=365610&u=7",
|
"https://www.subdivx.com/descargar.php?id=365610",
|
||||||
)
|
)
|
||||||
with SubdivxSubtitlesProvider() as provider:
|
with SubdivxSubtitlesProvider() as provider:
|
||||||
provider.download_subtitle(subtitle)
|
provider.download_subtitle(subtitle)
|
||||||
|
@ -168,7 +160,7 @@ def test_subtitle_matches(video):
|
||||||
"otras seguramente, gracias por sus comentarios, saludos."
|
"otras seguramente, gracias por sus comentarios, saludos."
|
||||||
),
|
),
|
||||||
"tolobich",
|
"tolobich",
|
||||||
"https://www.subdivx.com/bajar.php?id=635101&u=9",
|
"https://www.subdivx.com/descargar.php?id=635101",
|
||||||
)
|
)
|
||||||
|
|
||||||
matches = subtitle.get_matches(video)
|
matches = subtitle.get_matches(video)
|
||||||
|
|
Loading…
Reference in a new issue