bazarr/libs/subliminal_patch/providers/titulky.py

938 lines
36 KiB
Python
Raw Normal View History

2019-09-08 12:46:01 +00:00
# -*- coding: utf-8 -*-
import io
import logging
2021-10-27 18:23:58 +00:00
import math
import re
2019-09-08 12:46:01 +00:00
import zipfile
2021-10-27 18:23:58 +00:00
from random import randint
from urllib.parse import urlparse, parse_qs, quote
2021-10-27 18:23:58 +00:00
from threading import Thread
2019-09-08 12:46:01 +00:00
import rarfile
from guessit import guessit
from requests import Session
2021-10-27 18:23:58 +00:00
from requests.adapters import HTTPAdapter
from requests.exceptions import HTTPError
from subliminal.cache import region as cache
2021-10-27 18:23:58 +00:00
from subliminal.exceptions import AuthenticationError, ConfigurationError, DownloadLimitExceeded, Error, ProviderError
from subliminal.providers import ParserBeautifulSoup
from subliminal.subtitle import fix_line_ending
2019-09-08 12:46:01 +00:00
from subliminal.video import Episode, Movie
from subliminal_patch.exceptions import ParseResponseError
from subliminal_patch.providers import Provider
from subliminal_patch.providers.mixins import ProviderSubtitleArchiveMixin
2021-10-27 18:23:58 +00:00
from subliminal_patch.score import framerate_equal
from subliminal_patch.subtitle import Subtitle, guess_matches, sanitize
from dogpile.cache.api import NO_VALUE
2021-10-27 18:23:58 +00:00
from subzero.language import Language
2019-09-08 12:46:01 +00:00
2021-10-27 18:23:58 +00:00
from .utils import FIRST_THOUSAND_OR_SO_USER_AGENTS as AGENT_LIST
2019-09-08 12:46:01 +00:00
2021-10-27 18:23:58 +00:00
logger = logging.getLogger(__name__)
2019-09-08 12:46:01 +00:00
class TitulkySubtitle(Subtitle):
2021-10-27 18:23:58 +00:00
"""Titulky.com subtitle"""
2019-09-08 12:46:01 +00:00
provider_name = 'titulky'
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
hash_verifiable = False
hearing_impaired_verifiable = False
2021-11-14 20:30:54 +00:00
def __init__(self,
sub_id,
imdb_id,
language,
names,
season,
episode,
year,
releases,
fps,
uploader,
approved,
page_link,
download_link,
skip_wrong_fps=False,
asked_for_episode=None):
2021-10-27 18:23:58 +00:00
super().__init__(language, page_link=page_link)
2021-10-29 19:24:10 +00:00
self.names = names
2021-10-27 18:23:58 +00:00
self.year = year
self.sub_id = sub_id
self.imdb_id = imdb_id
2021-10-27 18:23:58 +00:00
self.fps = fps
2019-09-08 12:46:01 +00:00
self.season = season
self.episode = episode
self.releases = releases
self.release_info = ', '.join(releases)
2021-10-27 18:23:58 +00:00
self.language = language
self.approved = approved
2019-09-08 12:46:01 +00:00
self.page_link = page_link
2021-10-27 18:23:58 +00:00
self.uploader = uploader
self.download_link = download_link
self.skip_wrong_fps = skip_wrong_fps
self.asked_for_episode = asked_for_episode
2021-10-27 18:23:58 +00:00
self.matches = None
# Try to parse S00E00 string from the main subtitle name
2021-11-14 20:30:54 +00:00
season_episode_string = re.findall(r'S(\d+)E(\d+)', self.names[0],
re.IGNORECASE)
# If we did not search for subtitles with season and episode numbers in search query,
# try to parse it from the main subtitle name that most likely contains it
if season_episode_string:
if self.season is None:
self.season = int(season_episode_string[0][0])
if self.episode is None:
self.episode = int(season_episode_string[0][1])
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
@property
def id(self):
2021-10-27 18:23:58 +00:00
return self.sub_id
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
def get_fps(self):
return self.fps
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
def get_matches(self, video):
matches = set()
2021-10-27 18:23:58 +00:00
_type = 'movie' if isinstance(video, Movie) else 'episode'
2021-11-14 20:30:54 +00:00
sub_names = self._remove_season_episode_string(self.names)
2021-10-27 18:23:58 +00:00
if _type == 'episode':
## EPISODE
# match imdb_id of a series
if video.series_imdb_id and video.series_imdb_id == self.imdb_id:
matches.add('series_imdb_id')
2021-11-14 20:30:54 +00:00
# match season/episode
2021-10-27 18:23:58 +00:00
if self.season and self.season == video.season:
2019-09-08 12:46:01 +00:00
matches.add('season')
2021-10-27 18:23:58 +00:00
if self.episode and self.episode == video.episode:
matches.add('episode')
2021-11-14 20:30:54 +00:00
# match series name
series_names = [video.series] + video.alternative_series
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Finding exact match between subtitle names {sub_names} and series names {series_names}"
)
if _contains_element(_from=series_names,
_in=sub_names,
exactly=True):
2021-10-27 18:23:58 +00:00
matches.add('series')
2021-10-29 19:24:10 +00:00
# match episode title
episode_titles = [video.title]
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Finding exact match between subtitle names {sub_names} and episode titles {episode_titles}"
)
if _contains_element(_from=episode_titles,
_in=sub_names,
exactly=True):
matches.add('episode_title')
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
elif _type == 'movie':
## MOVIE
2021-11-14 20:30:54 +00:00
# match imdb_id of a movie
if video.imdb_id and video.imdb_id == self.imdb_id:
matches.add('imdb_id')
2021-11-14 20:30:54 +00:00
# match movie title
video_titles = [video.title] + video.alternative_titles
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Finding exact match between subtitle names {sub_names} and video titles {video_titles}"
)
if _contains_element(_from=video_titles,
_in=sub_names,
exactly=True):
2021-10-29 19:24:10 +00:00
matches.add('title')
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
## MOVIE OR EPISODE
2021-11-14 20:30:54 +00:00
# match year
2021-10-27 18:23:58 +00:00
if video.year and video.year == self.year:
matches.add('year')
2019-09-08 12:46:01 +00:00
# match other properties based on release infos
for release in self.releases:
matches |= guess_matches(video, guessit(release, {"type": _type}))
2021-11-14 20:30:54 +00:00
# If turned on in settings, then do not match if video FPS is not equal to subtitle FPS
2021-11-14 20:30:54 +00:00
if self.skip_wrong_fps and video.fps and self.fps and not framerate_equal(
video.fps, self.fps):
2021-10-27 18:23:58 +00:00
logger.info(f"Titulky.com: Skipping subtitle {self}: wrong FPS")
matches.clear()
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
self.matches = matches
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
return matches
2021-11-14 20:30:54 +00:00
# Remove the S00E00 from elements of names array
def _remove_season_episode_string(self, names):
result = names.copy()
for i, name in enumerate(result):
cleaned_name = re.sub(r'S\d+E\d+', '', name, flags=re.IGNORECASE)
cleaned_name = cleaned_name.strip()
result[i] = cleaned_name
return result
2019-09-08 12:46:01 +00:00
class TitulkyProvider(Provider, ProviderSubtitleArchiveMixin):
2021-10-27 18:23:58 +00:00
"""Titulky.com provider"""
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
languages = {Language(l) for l in ['ces', 'slk']}
video_types = (Episode, Movie)
2021-10-27 18:23:58 +00:00
hash_verifiable = False
hearing_impaired_verifiable = False
server_url = 'https://premium.titulky.com'
login_url = server_url
logout_url = f"{server_url}?action=logout"
download_url = f"{server_url}/download.php?id="
timeout = 30
max_threads = 5
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
subtitle_class = TitulkySubtitle
2021-11-14 20:30:54 +00:00
def __init__(self,
username=None,
password=None,
skip_wrong_fps=None,
approved_only=None,
multithreading=None):
2021-10-27 18:23:58 +00:00
if not all([username, password]):
raise ConfigurationError("Username and password must be specified!")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
if type(skip_wrong_fps) is not bool:
2021-11-14 20:30:54 +00:00
raise ConfigurationError(
f"Skip_wrong_fps {skip_wrong_fps} must be a boolean!")
2021-10-27 18:23:58 +00:00
if type(approved_only) is not bool:
2021-11-14 20:30:54 +00:00
raise ConfigurationError(
f"Approved_only {approved_only} must be a boolean!")
2021-10-27 18:23:58 +00:00
if type(multithreading) is not bool:
2021-11-14 20:30:54 +00:00
raise ConfigurationError(
f"Multithreading {multithreading} must be a boolean!")
2019-09-08 12:46:01 +00:00
self.username = username
self.password = password
2021-10-27 18:23:58 +00:00
self.skip_wrong_fps = skip_wrong_fps
self.approved_only = approved_only
self.multithreading = multithreading
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
self.session = None
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
def initialize(self):
self.session = Session()
2021-10-27 18:23:58 +00:00
# Set max pool size to the max number of threads we will use (i .e. the max number of search result rows)
# or set it to the default value if multithreading is disabled.
pool_maxsize = self.max_threads + 3 if self.max_threads > 10 else 10
self.session.mount('https://', HTTPAdapter(pool_maxsize=pool_maxsize))
self.session.mount('http://', HTTPAdapter(pool_maxsize=pool_maxsize))
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Set headers
cached_user_agent = cache.get('titulky_user_agent')
if cached_user_agent == NO_VALUE:
new_user_agent = AGENT_LIST[ randint(0, len(AGENT_LIST) - 1) ]
cache.set('titulky_user_agent', new_user_agent)
self.session.headers['User-Agent'] = new_user_agent
else:
self.session.headers['User-Agent'] = cached_user_agent
2021-10-27 18:23:58 +00:00
self.session.headers['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
self.session.headers['Accept-Language'] = 'sk,cz,en;q=0.5'
self.session.headers['Accept-Encoding'] = 'gzip, deflate'
self.session.headers['DNT'] = '1'
self.session.headers['Connection'] = 'keep-alive'
self.session.headers['Upgrade-Insecure-Requests'] = '1'
self.session.headers['Cache-Control'] = 'max-age=0'
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
self.login()
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
def terminate(self):
self.session.close()
2022-04-16 17:50:57 +00:00
def login(self, bypass_cache=False):
# Reuse all cookies if found in cache and skip login.
cached_cookiejar = cache.get('titulky_cookiejar')
2022-04-16 17:50:57 +00:00
if not bypass_cache and cached_cookiejar != NO_VALUE:
logger.info("Titulky.com: Reusing cached cookies.")
self.session.cookies.update(cached_cookiejar)
return True
2021-11-14 20:30:54 +00:00
logger.info("Titulky.com: Logging in...")
2021-11-14 20:30:54 +00:00
data = {'LoginName': self.username, 'LoginPassword': self.password}
res = self.session.post(self.server_url,
data,
allow_redirects=False,
timeout=self.timeout,
headers={'Referer': self.server_url})
2021-11-14 20:30:54 +00:00
location_qs = parse_qs(urlparse(res.headers['Location']).query)
2021-10-27 18:23:58 +00:00
# If the response is a redirect and doesnt point to an error message page, then we are logged in
if res.status_code == 302 and location_qs['msg_type'][0] == 'i':
if 'omezené' in location_qs['msg'][0]:
raise AuthenticationError("V.I.P. account is required for this provider to work!")
else:
logger.info("Titulky.com: Successfully logged in, caching cookies for future connections...")
cache.set('titulky_cookiejar', self.session.cookies.copy())
return True
2021-10-27 18:23:58 +00:00
else:
raise AuthenticationError("Login failed")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
def logout(self):
logger.info("Titulky.com: Logging out")
2021-11-14 20:30:54 +00:00
res = self.session.get(self.logout_url,
allow_redirects=False,
timeout=self.timeout,
headers={'Referer': self.server_url})
2021-11-14 20:30:54 +00:00
location_qs = parse_qs(urlparse(res.headers['Location']).query)
logger.info("Titulky.com: Clearing cache...")
cache.delete('titulky_cookiejar')
cache.delete('titulky_user_agent')
2021-10-27 18:23:58 +00:00
# If the response is a redirect and doesnt point to an error message page, then we are logged out
if res.status_code == 302 and location_qs['msg_type'][0] == 'i':
2021-10-27 18:23:58 +00:00
return True
else:
raise AuthenticationError("Logout failed.")
# GET request a page. This functions acts as a requests.session.get proxy handling expired cached cookies
# and subsequent relogging and sending the original request again. If all went well, returns the response.
2022-04-16 17:50:57 +00:00
def get_request(self, url, ref=server_url, recursion=0):
# That's deep... recursion... Stop. We don't have infinite memmory. And don't want to
# spam titulky's server either. So we have to just accept the defeat. Let it throw!
2022-04-16 17:50:57 +00:00
if recursion >= 5:
logger.debug(f"Titulky.com: Got into a loop while trying to send a request after relogging.")
raise AuthenticationError("Got into a loop and couldn't get authenticated!")
2021-10-27 18:23:58 +00:00
logger.debug(f"Titulky.com: Fetching url: {url}")
2021-11-14 20:30:54 +00:00
res = self.session.get(
url,
timeout=self.timeout,
allow_redirects=False,
headers={'Referer': quote(ref) if ref else None}) # URL encode ref if it has value
2021-11-14 20:30:54 +00:00
# Check if we got redirected because login cookies expired.
# Note: microoptimization - don't bother parsing qs for non 302 responses.
if res.status_code == 302:
location_qs = parse_qs(urlparse(res.headers['Location']).query)
if location_qs['msg_type'][0] == 'e' and "Přihlašte se" in location_qs['msg'][0]:
logger.debug(f"Titulky.com: Login cookies expired.")
2022-04-16 17:50:57 +00:00
self.login(True)
return self.get_request(url, ref=ref, recursion=(recursion + 1))
return res
def fetch_page(self, url, ref=None):
logger.debug(f"Titulky.com: Fetching url: {url}")
res = self.get_request(url, ref=ref)
2021-10-27 18:23:58 +00:00
if res.status_code != 200:
raise HTTPError(f"Fetch failed with status code {res.status_code}")
2021-10-27 18:23:58 +00:00
if not res.text:
raise ProviderError("No response returned from the provider")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
return res.text
def build_search_url(self, params):
result = f"{self.server_url}/?"
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
params['action'] = 'search'
2021-11-14 20:30:54 +00:00
# Requires subtitle names to match full search keyword
params['fsf'] = 1
2021-10-27 18:23:58 +00:00
for key, value in params.items():
result += f'{key}={value}&'
2021-11-14 20:30:54 +00:00
# Remove the last &
2021-10-27 18:23:58 +00:00
result = result[:-1]
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Remove spaces
result = result.replace(' ', '+')
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
return result
2021-11-14 20:30:54 +00:00
# Parse details of an individual subtitle: imdb_id, release, language, uploader, fps and year
2021-11-14 20:30:54 +00:00
def parse_details(self, details_url, search_url):
html_src = self.fetch_page(details_url, ref=search_url)
details_page_soup = ParserBeautifulSoup(html_src,
['lxml', 'html.parser'])
2021-10-27 18:23:58 +00:00
details_container = details_page_soup.find('div', class_='detail')
if not details_container:
# The subtitles could be removed and got redirected to a different page. Better treat this silently.
2021-11-14 20:30:54 +00:00
logger.info("Titulky.com: Could not find details div container. Skipping.")
2021-10-27 18:23:58 +00:00
return False
2021-11-14 20:30:54 +00:00
### IMDB ID
imdb_id = None
imdb_tag = details_container.find('a', attrs={'target': 'imdb'})
2021-11-14 20:30:54 +00:00
if imdb_tag:
imdb_url = imdb_tag.get('href')
imdb_id = re.findall(r'tt(\d+)', imdb_url)[0]
2021-11-14 20:30:54 +00:00
if not imdb_id:
logger.debug("Titulky.com: No IMDB ID supplied on details page.")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
### RELEASE
2021-10-29 19:24:10 +00:00
release = None
2021-10-27 18:23:58 +00:00
release_tag = details_container.find('div', class_='releas')
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
if not release_tag:
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find release tag. Did the HTML source change?")
2021-10-27 18:23:58 +00:00
release = release_tag.get_text(strip=True)
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not release:
2021-11-14 20:30:54 +00:00
logger.debug("Titulky.com: No release information supplied on details page.")
2021-10-29 19:24:10 +00:00
2021-10-27 18:23:58 +00:00
### LANGUAGE
language = None
czech_flag = details_container.select('img[src*=\'flag-CZ\']')
slovak_flag = details_container.select('img[src*=\'flag-SK\']')
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
if czech_flag and not slovak_flag:
language = Language('ces')
2021-11-14 20:30:54 +00:00
elif slovak_flag and not czech_flag:
2021-10-27 18:23:58 +00:00
language = Language('slk')
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not language:
logger.debug("Titulky.com: No language information supplied on details page.")
### UPLOADER
uploader = None
uploader_tag = details_container.find('div', class_='ulozil')
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not uploader_tag:
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find uploader tag. Did the HTML source change?")
2021-10-29 19:24:10 +00:00
uploader_anchor_tag = uploader_tag.find('a')
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not uploader_anchor_tag:
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find uploader anchor tag. Did the HTML source change?"
)
uploader = uploader_anchor_tag.string.strip(
) if uploader_anchor_tag else None
2021-10-29 19:24:10 +00:00
if not uploader:
logger.debug("Titulky.com: No uploader name supplied on details page.")
2021-10-27 18:23:58 +00:00
### FPS
fps = None
2021-11-14 20:30:54 +00:00
fps_icon_tag_selection = details_container.select(
'img[src*=\'Movieroll\']')
if not fps_icon_tag_selection and not hasattr(fps_icon_tag_selection[0],
'parent'):
raise ParseResponseError(
"Could not find parent of the fps icon tag. Did the HTML source change?"
)
2021-10-29 19:24:10 +00:00
fps_icon_tag = fps_icon_tag_selection[0]
parent_text = fps_icon_tag.parent.get_text(strip=True)
match = re.findall(r'(\d+,\d+) fps', parent_text)
2021-11-14 20:30:54 +00:00
# If the match is found, change the decimal separator to a dot and convert to float
2021-10-29 19:24:10 +00:00
fps = float(match[0].replace(',', '.')) if len(match) > 0 else None
if not fps:
logger.debug("Titulky.com: No fps supplied on details page.")
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
### YEAR
year = None
h1_tag = details_container.find('h1', id='titulky')
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not h1_tag:
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find h1 tag. Did the HTML source change?")
2021-10-29 19:24:10 +00:00
# The h1 tag contains the name of the subtitle and a year
h1_texts = [text for text in h1_tag.stripped_strings]
year = int(h1_texts[1]) if len(h1_texts) > 1 else None
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
if not year:
logger.debug("Titulky.com: No year supplied on details page.")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Clean up
details_page_soup.decompose()
details_page_soup = None
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Return the subtitle details
return {
2021-11-14 20:30:54 +00:00
'releases': [release],
'language': language,
'uploader': uploader,
2021-10-29 19:24:10 +00:00
'fps': fps,
'year': year,
'imdb_id': imdb_id
2021-10-27 18:23:58 +00:00
}
2021-11-14 20:30:54 +00:00
def process_row(self,
row,
video_names,
search_url,
thread_id=None,
threads_data=None):
2021-10-27 18:23:58 +00:00
try:
2021-10-29 19:24:10 +00:00
# The first anchor tag is an image preview, the second is the name
2021-10-27 18:23:58 +00:00
anchor_tag = row.find_all('a')[1]
# The details link is relative, so we need to remove the dot at the beginning
details_link = f"{self.server_url}{anchor_tag.get('href')[1:]}"
id_match = re.findall(r'id=(\d+)', details_link)
2021-10-27 18:23:58 +00:00
sub_id = id_match[0] if len(id_match) > 0 else None
download_link = f"{self.download_url}{sub_id}"
# Approved subtitles have a pbl1 class for their row, others have a pbl0 class
approved = True if 'pbl1' in row.get('class') else False
2021-11-14 20:30:54 +00:00
# Subtitle name + its alternative names
2021-11-14 20:30:54 +00:00
table_columns = row.findAll('td')
main_sub_name = anchor_tag.get_text(strip=True)
2021-11-14 20:30:54 +00:00
alt_sub_names = [
alt_sub_name.strip()
for alt_sub_name in table_columns[2].string.split('/')
] if table_columns[2].string else []
sub_names = [main_sub_name] + alt_sub_names
# Does at least one subtitle name contain one of the video names?
# Skip subtitles that do not match
# Video names -> the main title and alternative titles of a movie or an episode and so on...
# Subtitle names -> the main name and alternative names of a subtitle displayed in search results.
# Could be handled in TitulkySubtitle class, however we want to keep the number of requests
# as low as possible and this prevents the from requesting the details page unnecessarily
if not _contains_element(_from=video_names, _in=sub_names):
2021-11-14 20:30:54 +00:00
logger.info(
f"Titulky.com: Skipping subtitle with names: {sub_names}, because there was no match with video names: {video_names}"
)
2021-10-27 18:23:58 +00:00
if type(threads_data) is list and type(thread_id) is int:
threads_data[thread_id] = {
'sub_info': None,
'exception': None
}
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
return None
2021-11-14 20:30:54 +00:00
details = self.parse_details(details_link, search_url)
2021-10-27 18:23:58 +00:00
if not details:
# Details parsing was NOT successful, skipping
if type(threads_data) is list and type(thread_id) is int:
threads_data[thread_id] = {
'sub_info': None,
'exception': None
}
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
return None
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
# Combine all subtitle data into one dict
result = {
'names': sub_names,
2021-10-29 19:24:10 +00:00
'id': sub_id,
'approved': approved,
'details_link': details_link,
'download_link': download_link
}
2021-11-14 20:30:54 +00:00
2021-10-29 19:24:10 +00:00
result.update(details)
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
if type(threads_data) is list and type(thread_id) is int:
threads_data[thread_id] = {
2021-10-29 19:24:10 +00:00
'sub_info': result,
2021-10-27 18:23:58 +00:00
'exception': None
}
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
return details
2021-10-29 19:24:10 +00:00
except Exception as e:
2021-10-27 18:23:58 +00:00
if type(threads_data) is list and type(thread_id) is int:
2021-11-14 20:30:54 +00:00
threads_data[thread_id] = {'sub_info': None, 'exception': e}
2021-10-27 18:23:58 +00:00
raise e
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# There are multiple ways to find subs from this provider:
# 1. SEARCH by sub title
2021-11-14 20:30:54 +00:00
# - parameter: .................. Fulltext=<SUB NAME>
2021-10-27 18:23:58 +00:00
# 2. SEARCH by imdb id
# - parameter: .................. IMDB=<IMDB ID>
# 3. SEARCH by season/episode
# - parameter: .................. Sezona=<SEASON>
# - parameter: .................. Epizoda=<EPISODE>
# 4. SEARCH by year
# - parameter: .................. Rok=<YEAR>
# 5. SEARCH by video type
# - parameter: .................. Serial=<('S' for series | 'F' for movies | '' for all)>
# 6. SEARCH by language
# - parameter: .................. Jazyk=<('CZ' for czech | 'SK' for slovak | '' for all)>
# 7. SEARCH by status
# - parameter: .................. ASchvalene=<('1' for approved only | '-0' for subs awaiting approval | '' for all)>
# - redirects should NOT be allowed here
#
# 8. BROWSE subtitles by IMDB ID
# - Subtitles are here categorised by seasons and episodes
# - URL: https://premium.titulky.com/?action=serial&step=<SEASON>&id=<IMDB ID>
# - it seems that the url redirects to a page with their own internal ID, redirects should be allowed here
2021-11-14 20:30:54 +00:00
def query(self,
language,
video_names,
type,
keyword=None,
year=None,
season=None,
episode=None,
imdb_id=None):
2021-10-27 18:23:58 +00:00
## Build the search URL
params = {}
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Keyword
if keyword:
params['Fulltext'] = keyword
# Video type
if type == 'episode':
params['Serial'] = 'S'
else:
params['Serial'] = 'F'
# Season / Episode
if season:
params['Sezona'] = season
if episode:
params['Epizoda'] = episode
# IMDB ID
if imdb_id:
2021-11-14 20:30:54 +00:00
params['IMDB'] = imdb_id[2:] # Remove the tt from the imdb id
2021-10-27 18:23:58 +00:00
# Year
if year:
params['Rok'] = year
# Language
if language == Language('ces'):
params['Jazyk'] = 'CZ'
elif language == Language('slk'):
params['Jazyk'] = 'SK'
elif language == None:
params['Jazyk'] = ''
else:
return []
# Status
if self.approved_only:
2021-11-14 20:30:54 +00:00
logger.debug(f"Titulky.com: Searching only for approved subtitles")
2021-10-27 18:23:58 +00:00
params['ASchvalene'] = '1'
else:
2021-10-27 18:23:58 +00:00
params['ASchvalene'] = ''
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
search_url = self.build_search_url(params)
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
## Search results page parsing
html_src = self.fetch_page(search_url)
2021-11-14 20:30:54 +00:00
search_page_soup = ParserBeautifulSoup(html_src,
['lxml', 'html.parser'])
2021-10-27 18:23:58 +00:00
# If there is a message containing "Žádny odpovídající záznam", it means that there are no results
# If that's the case, return an empty list
error_message = search_page_soup.select('.panel-body > strong')
2021-11-14 20:30:54 +00:00
if len(
error_message
) > 0 and 'Žádný odpovídající záznam' in error_message[0].get_text(
strip=True):
2021-10-27 18:23:58 +00:00
logger.info("Titulky.com: No results found")
2019-09-08 12:46:01 +00:00
return []
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Get the table containing the search results
table = search_page_soup.find('table', class_='table')
if not table:
logger.debug("Titulky.com: Could not find table")
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find table. Did the HTML source change?")
2021-10-27 18:23:58 +00:00
# Get table body containing rows of subtitles
table_body = table.find('tbody')
if not table_body:
logger.debug("Titulky.com: Could not find table body")
2021-11-14 20:30:54 +00:00
raise ParseResponseError(
"Could not find table body. Did the HTML source change?")
2021-10-27 18:23:58 +00:00
## Loop over all subtitles on the first page and put them in a list
subtitles = []
rows = table_body.find_all('tr')
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
if not self.multithreading:
# Process the rows sequentially
logger.info("Titulky.com: processing results in sequence")
for i, row in enumerate(rows):
2021-11-14 20:30:54 +00:00
sub_info = self.process_row(row, video_names, search_url)
# If subtitle info was returned, then everything was okay
2021-10-27 18:23:58 +00:00
# and we can instationate it and add it to the list
if sub_info:
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Sucessfully retrieved subtitle info, row: {i}"
)
# If we found the subtitle by IMDB ID, no need to get it from details page
sub_imdb_id = imdb_id or sub_info['imdb_id']
2021-10-29 19:24:10 +00:00
2021-11-14 20:30:54 +00:00
subtitle_instance = self.subtitle_class(
sub_info['id'],
sub_imdb_id,
sub_info['language'],
sub_info['names'],
season,
episode,
sub_info['year'],
sub_info['releases'],
sub_info['fps'],
sub_info['uploader'],
sub_info['approved'],
sub_info['details_link'],
sub_info['download_link'],
skip_wrong_fps=self.skip_wrong_fps,
asked_for_episode=(type == 'episode'))
2021-10-27 18:23:58 +00:00
subtitles.append(subtitle_instance)
else:
# No subtitle info was returned, i. e. something unexpected
# happend during subtitle details page fetching and processing.
logger.debug(f"Titulky.com: No subtitle info retrieved, row: {i}")
else:
# Process the rows in paralell
2021-11-14 20:30:54 +00:00
logger.info(
f"Titulky.com: processing results in parelell, {self.max_threads} rows at a time."
)
2021-10-27 18:23:58 +00:00
threads = [None] * len(rows)
threads_data = [None] * len(rows)
# Process rows in parallel, self.max_threads at a time.
2021-11-14 20:30:54 +00:00
cycles = math.ceil(len(rows) / self.max_threads)
2021-10-27 18:23:58 +00:00
for i in range(cycles):
# Batch number i
2021-11-14 20:30:54 +00:00
starting_index = i * self.max_threads # Inclusive
ending_index = starting_index + self.max_threads # Non-inclusive
2021-10-27 18:23:58 +00:00
# Create threads for all rows in this batch
for j in range(starting_index, ending_index):
# Check if j-th row exists
if j < len(rows):
# Row number j
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Creating thread {j} (batch: {i})")
2021-10-27 18:23:58 +00:00
# Create a thread for row j and start it
2021-11-14 20:30:54 +00:00
threads[j] = Thread(
target=self.process_row,
args=[rows[j], video_names, search_url],
kwargs={
'thread_id': j,
'threads_data': threads_data
})
2021-10-27 18:23:58 +00:00
threads[j].start()
# Wait for all created threads to finish before moving to another batch of rows
for j in range(starting_index, ending_index):
# Check if j-th row exists
if j < len(rows):
threads[j].join()
# Process the resulting data from all threads
for i in range(len(threads_data)):
thread_data = threads_data[i]
# If the thread returned didn't return anything, but expected a dict object
if not thread_data:
raise ProviderError(f"No data returned from thread ID: {i}")
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# If an exception was raised in a thread, raise it again here
2021-10-29 19:24:10 +00:00
if 'exception' in thread_data and thread_data['exception']:
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: An error occured while processing a row in the thread ID {i}"
)
2021-10-27 18:23:58 +00:00
raise thread_data['exception']
# If the thread returned a subtitle info, great, instantiate it and add it to the list
if 'sub_info' in thread_data and thread_data['sub_info']:
# Instantiate the subtitle object
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: Sucessfully retrieved subtitle info, thread ID: {i}"
)
2021-10-27 18:23:58 +00:00
sub_info = thread_data['sub_info']
2021-10-29 19:24:10 +00:00
# If we found the subtitle by IMDB ID, no need to get it from details page
sub_imdb_id = imdb_id or sub_info['imdb_id']
2021-11-14 20:30:54 +00:00
subtitle_instance = self.subtitle_class(
sub_info['id'],
sub_imdb_id,
sub_info['language'],
sub_info['names'],
season,
episode,
sub_info['year'],
sub_info['releases'],
sub_info['fps'],
sub_info['uploader'],
sub_info['approved'],
sub_info['details_link'],
sub_info['download_link'],
skip_wrong_fps=self.skip_wrong_fps,
asked_for_episode=(type == 'episode'))
2021-10-27 18:23:58 +00:00
subtitles.append(subtitle_instance)
else:
# The thread returned data, but it didn't contain a subtitle info, i. e. something unexpected
# happend during subtitle details page fetching and processing.
2021-11-14 20:30:54 +00:00
logger.debug(
f"Titulky.com: No subtitle info retrieved, thread ID: {i}"
)
2021-10-27 18:23:58 +00:00
# Clean up
search_page_soup.decompose()
search_page_soup = None
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
logger.debug(f"Titulky.com: Found subtitles: {subtitles}")
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
return subtitles
2021-11-14 20:30:54 +00:00
def list_subtitles(self, video, languages):
2019-09-08 12:46:01 +00:00
subtitles = []
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# Possible paths:
# (1) Search by IMDB ID [and season/episode for tv series]
# (2) Search by keyword: video (title|series) [and season/episode for tv series]
# (3) Search by keyword: video series + S00E00 (tv series only)
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
for language in languages:
2019-09-08 12:46:01 +00:00
if isinstance(video, Episode):
2021-11-14 20:30:54 +00:00
video_names = [video.series, video.title
] + video.alternative_series
2021-10-27 18:23:58 +00:00
# (1)
2021-11-14 20:30:54 +00:00
logger.info(
"Titulky.com: Finding subtitles by IMDB ID, Season and Episode (1)"
)
2021-10-27 18:23:58 +00:00
if video.series_imdb_id:
2021-11-14 20:30:54 +00:00
partial_subs = self.query(language,
video_names,
'episode',
imdb_id=video.series_imdb_id,
season=video.season,
episode=video.episode)
if (len(partial_subs) > 0):
2021-10-27 18:23:58 +00:00
subtitles += partial_subs
continue
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# (2)
2021-11-14 20:30:54 +00:00
logger.info(
"Titulky.com: Finding subtitles by keyword, Season and Episode (2)"
)
2021-10-27 18:23:58 +00:00
keyword = video.series
2021-11-14 20:30:54 +00:00
partial_subs = self.query(language,
video_names,
'episode',
keyword=keyword,
season=video.season,
episode=video.episode)
if (len(partial_subs) > 0):
2021-10-27 18:23:58 +00:00
subtitles += partial_subs
continue
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# (3)
2021-11-14 20:30:54 +00:00
logger.info("Titulky.com: Finding subtitles by keyword only (3)")
2021-10-27 18:23:58 +00:00
keyword = f"{video.series} S{video.season:02d}E{video.episode:02d}"
2021-11-14 20:30:54 +00:00
partial_subs = self.query(language,
video_names,
'episode',
keyword=keyword)
2021-10-27 18:23:58 +00:00
subtitles += partial_subs
2019-09-08 12:46:01 +00:00
elif isinstance(video, Movie):
video_names = [video.title] + video.alternative_titles
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# (1)
2021-11-14 20:30:54 +00:00
logger.info("Titulky.com: Finding subtitles by IMDB ID (1)")
2021-10-27 18:23:58 +00:00
if video.imdb_id:
2021-11-14 20:30:54 +00:00
partial_subs = self.query(language,
video_names,
'movie',
imdb_id=video.imdb_id)
if (len(partial_subs) > 0):
2021-10-27 18:23:58 +00:00
subtitles += partial_subs
continue
2021-11-14 20:30:54 +00:00
2021-10-27 18:23:58 +00:00
# (2)
2021-11-14 20:30:54 +00:00
logger.info("Titulky.com: Finding subtitles by keyword (2)")
2021-10-27 18:23:58 +00:00
keyword = video.title
2021-11-14 20:30:54 +00:00
partial_subs = self.query(language,
video_names,
'movie',
keyword=keyword)
2021-10-27 18:23:58 +00:00
subtitles += partial_subs
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
return subtitles
2021-11-14 20:30:54 +00:00
2019-09-08 12:46:01 +00:00
def download_subtitle(self, subtitle):
res = self.get_request(subtitle.download_link, ref=subtitle.page_link)
2021-11-14 20:30:54 +00:00
try:
res.raise_for_status()
except:
2021-11-14 20:30:54 +00:00
raise HTTPError(
f"An error occured during the download request to {subtitle.download_link}"
)
2021-10-27 18:23:58 +00:00
archive_stream = io.BytesIO(res.content)
2019-09-08 12:46:01 +00:00
archive = None
if rarfile.is_rarfile(archive_stream):
2021-10-27 18:23:58 +00:00
logger.debug("Titulky.com: Identified rar archive")
2019-09-08 12:46:01 +00:00
archive = rarfile.RarFile(archive_stream)
subtitle_content = self.get_subtitle_from_archive(subtitle, archive)
2019-09-08 12:46:01 +00:00
elif zipfile.is_zipfile(archive_stream):
2021-10-27 18:23:58 +00:00
logger.debug("Titulky.com: Identified zip archive")
2019-09-08 12:46:01 +00:00
archive = zipfile.ZipFile(archive_stream)
subtitle_content = self.get_subtitle_from_archive(subtitle, archive)
2019-09-08 12:46:01 +00:00
else:
subtitle_content = fix_line_ending(res.content)
2021-11-14 20:30:54 +00:00
if not subtitle_content:
2021-11-14 20:30:54 +00:00
logger.debug(
"Titulky.com: No subtitle content found. The downloading limit has been most likely exceeded."
)
raise DownloadLimitExceeded(
"Subtitles download limit has been exceeded")
subtitle.content = subtitle_content
2021-11-14 20:30:54 +00:00
# Check if any element from source array is contained partially or exactly in any element from target array
# Returns on the first match
2021-11-14 20:30:54 +00:00
def _contains_element(_from=None, _in=None, exactly=False):
source_array = _from
target_array = _in
2021-11-14 20:30:54 +00:00
for source in source_array:
for target in target_array:
2021-11-14 20:30:54 +00:00
if exactly:
if sanitize(source) == sanitize(target):
return True
else:
if sanitize(source) in sanitize(target):
return True
return False