mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 05:51:10 +00:00
commit
3d7c032118
1 changed files with 49 additions and 37 deletions
|
@ -17,11 +17,15 @@ else:
|
||||||
|
|
||||||
from subliminal import __short_version__
|
from subliminal import __short_version__
|
||||||
from subliminal.exceptions import ServiceUnavailable
|
from subliminal.exceptions import ServiceUnavailable
|
||||||
from subliminal.providers import ParserBeautifulSoup, Provider
|
from subliminal.providers import ParserBeautifulSoup
|
||||||
from subliminal.subtitle import SUBTITLE_EXTENSIONS, Subtitle, fix_line_ending,guess_matches
|
from subliminal.subtitle import SUBTITLE_EXTENSIONS, fix_line_ending,guess_matches
|
||||||
from subliminal.video import Episode, Movie
|
from subliminal.video import Episode, Movie
|
||||||
from subliminal_patch.exceptions import APIThrottled
|
from subliminal_patch.exceptions import APIThrottled
|
||||||
from six.moves import range
|
from six.moves import range
|
||||||
|
from subliminal_patch.score import get_scores
|
||||||
|
from subliminal_patch.subtitle import Subtitle
|
||||||
|
from subliminal_patch.providers import Provider
|
||||||
|
from guessit import guessit
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -30,20 +34,20 @@ class SubdivxSubtitle(Subtitle):
|
||||||
provider_name = 'subdivx'
|
provider_name = 'subdivx'
|
||||||
hash_verifiable = False
|
hash_verifiable = False
|
||||||
|
|
||||||
def __init__(self, language, page_link, title, description, uploader):
|
def __init__(self, language, video, page_link, title, description, uploader):
|
||||||
super(SubdivxSubtitle, self).__init__(language, hearing_impaired=False, page_link=page_link)
|
super(SubdivxSubtitle, self).__init__(language, hearing_impaired=False, page_link=page_link)
|
||||||
|
self.video = video
|
||||||
self.title = title
|
self.title = title
|
||||||
self.description = description
|
self.description = description
|
||||||
self.uploader = uploader
|
self.uploader = uploader
|
||||||
|
self.release_info = self.title
|
||||||
|
if self.description and self.description.strip():
|
||||||
|
self.release_info += ' | ' + self.description
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def id(self):
|
def id(self):
|
||||||
return self.page_link
|
return self.page_link
|
||||||
|
|
||||||
@property
|
|
||||||
def release_info(self):
|
|
||||||
return self.description
|
|
||||||
|
|
||||||
def get_matches(self, video):
|
def get_matches(self, video):
|
||||||
matches = set()
|
matches = set()
|
||||||
|
|
||||||
|
@ -112,12 +116,14 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
def terminate(self):
|
def terminate(self):
|
||||||
self.session.close()
|
self.session.close()
|
||||||
|
|
||||||
def query(self, keyword, season=None, episode=None, year=None):
|
def query(self, video, languages):
|
||||||
query = keyword
|
|
||||||
if season and episode:
|
if isinstance(video, Episode):
|
||||||
query += ' S{season:02d}E{episode:02d}'.format(season=season, episode=episode)
|
query = "{} S{:02d}E{:02d}".format(video.series, video.season, video.episode)
|
||||||
elif year:
|
else:
|
||||||
query += ' {:4d}'.format(year)
|
query = video.title
|
||||||
|
if video.year:
|
||||||
|
query += ' {:4d}'.format(video.year)
|
||||||
|
|
||||||
params = {
|
params = {
|
||||||
'q': query, # search string
|
'q': query, # search string
|
||||||
|
@ -135,7 +141,7 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
self._check_response(response)
|
self._check_response(response)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
page_subtitles = self._parse_subtitles_page(response, language)
|
page_subtitles = self._parse_subtitles_page(video, response, language)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error('Error parsing subtitles list: ' + str(e))
|
logger.error('Error parsing subtitles list: ' + str(e))
|
||||||
break
|
break
|
||||||
|
@ -151,24 +157,7 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
return subtitles
|
return subtitles
|
||||||
|
|
||||||
def list_subtitles(self, video, languages):
|
def list_subtitles(self, video, languages):
|
||||||
if isinstance(video, Episode):
|
return self.query(video, languages)
|
||||||
titles = [video.series] + video.alternative_series
|
|
||||||
elif isinstance(video, Movie):
|
|
||||||
titles = [video.title] + video.alternative_titles
|
|
||||||
else:
|
|
||||||
titles = []
|
|
||||||
|
|
||||||
subtitles = []
|
|
||||||
for title in titles:
|
|
||||||
if isinstance(video, Episode):
|
|
||||||
subtitles += [s for s in self.query(title, season=video.season,
|
|
||||||
episode=video.episode, year=video.year)
|
|
||||||
if s.language in languages]
|
|
||||||
elif isinstance(video, Movie):
|
|
||||||
subtitles += [s for s in self.query(title, year=video.year)
|
|
||||||
if s.language in languages]
|
|
||||||
|
|
||||||
return subtitles
|
|
||||||
|
|
||||||
def download_subtitle(self, subtitle):
|
def download_subtitle(self, subtitle):
|
||||||
if isinstance(subtitle, SubdivxSubtitle):
|
if isinstance(subtitle, SubdivxSubtitle):
|
||||||
|
@ -186,14 +175,14 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
archive = self._get_archive(response.content)
|
archive = self._get_archive(response.content)
|
||||||
|
|
||||||
# extract the subtitle
|
# extract the subtitle
|
||||||
subtitle_content = self._get_subtitle_from_archive(archive)
|
subtitle_content = self._get_subtitle_from_archive(archive, subtitle)
|
||||||
subtitle.content = fix_line_ending(subtitle_content)
|
subtitle.content = fix_line_ending(subtitle_content)
|
||||||
|
|
||||||
def _check_response(self, response):
|
def _check_response(self, response):
|
||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
raise ServiceUnavailable('Bad status code: ' + str(response.status_code))
|
raise ServiceUnavailable('Bad status code: ' + str(response.status_code))
|
||||||
|
|
||||||
def _parse_subtitles_page(self, response, language):
|
def _parse_subtitles_page(self, video, response, language):
|
||||||
subtitles = []
|
subtitles = []
|
||||||
|
|
||||||
page_soup = ParserBeautifulSoup(response.content.decode('iso-8859-1', 'ignore'), ['lxml', 'html.parser'])
|
page_soup = ParserBeautifulSoup(response.content.decode('iso-8859-1', 'ignore'), ['lxml', 'html.parser'])
|
||||||
|
@ -214,7 +203,7 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
# uploader
|
# uploader
|
||||||
uploader = body_soup.find("a", {'class': 'link1'}).text
|
uploader = body_soup.find("a", {'class': 'link1'}).text
|
||||||
|
|
||||||
subtitle = self.subtitle_class(language, page_link, title, description, uploader)
|
subtitle = self.subtitle_class(language, video, page_link, title, description, uploader)
|
||||||
|
|
||||||
logger.debug('Found subtitle %r', subtitle)
|
logger.debug('Found subtitle %r', subtitle)
|
||||||
subtitles.append(subtitle)
|
subtitles.append(subtitle)
|
||||||
|
@ -253,7 +242,10 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
|
|
||||||
return archive
|
return archive
|
||||||
|
|
||||||
def _get_subtitle_from_archive(self, archive):
|
def _get_subtitle_from_archive(self, archive, subtitle):
|
||||||
|
_max_score = 0
|
||||||
|
_scores = get_scores (subtitle.video)
|
||||||
|
|
||||||
for name in archive.namelist():
|
for name in archive.namelist():
|
||||||
# discard hidden files
|
# discard hidden files
|
||||||
if os.path.split(name)[-1].startswith('.'):
|
if os.path.split(name)[-1].startswith('.'):
|
||||||
|
@ -263,6 +255,26 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
if not name.lower().endswith(SUBTITLE_EXTENSIONS):
|
if not name.lower().endswith(SUBTITLE_EXTENSIONS):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return archive.read(name)
|
_guess = guessit (name)
|
||||||
|
if isinstance(subtitle.video, Episode):
|
||||||
|
logger.debug ("guessing %s" % name)
|
||||||
|
logger.debug("subtitle S{}E{} video S{}E{}".format(_guess['season'],_guess['episode'],subtitle.video.season,subtitle.video.episode))
|
||||||
|
|
||||||
|
if subtitle.video.episode != _guess['episode'] or subtitle.video.season != _guess['season']:
|
||||||
|
logger.debug('subtitle does not match video, skipping')
|
||||||
|
continue
|
||||||
|
|
||||||
|
matches = set()
|
||||||
|
matches |= guess_matches (subtitle.video, _guess)
|
||||||
|
_score = sum ((_scores.get (match, 0) for match in matches))
|
||||||
|
logger.debug('srt matches: %s, score %d' % (matches, _score))
|
||||||
|
if _score > _max_score:
|
||||||
|
_max_name = name
|
||||||
|
_max_score = _score
|
||||||
|
logger.debug("new max: {} {}".format(name, _score))
|
||||||
|
|
||||||
|
if _max_score > 0:
|
||||||
|
logger.debug("returning from archive: {} scored {}".format(_max_name, _max_score))
|
||||||
|
return archive.read(_max_name)
|
||||||
|
|
||||||
raise APIThrottled('Can not find the subtitle in the compressed file')
|
raise APIThrottled('Can not find the subtitle in the compressed file')
|
||||||
|
|
Loading…
Reference in a new issue