mirror of https://github.com/morpheus65535/bazarr
Merge pull request #977 from redglory/development
Fixed daily download limit reached exception and wait until next day
This commit is contained in:
commit
ed5a6d7498
|
@ -52,7 +52,7 @@ PROVIDER_THROTTLE_MAP = {
|
||||||
},
|
},
|
||||||
"legendasdivx": {
|
"legendasdivx": {
|
||||||
TooManyRequests: (datetime.timedelta(hours=3), "3 hours"),
|
TooManyRequests: (datetime.timedelta(hours=3), "3 hours"),
|
||||||
DownloadLimitExceeded: (datetime.timedelta(hours=6), "6 hours"),
|
DownloadLimitExceeded: (datetime.timedelta(hours=hours_until_end_of_day), "{} hours".format(str(hours_until_end_of_day))),
|
||||||
IPAddressBlocked: (datetime.timedelta(hours=hours_until_end_of_day), "{} hours".format(str(hours_until_end_of_day))),
|
IPAddressBlocked: (datetime.timedelta(hours=hours_until_end_of_day), "{} hours".format(str(hours_until_end_of_day))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -209,9 +209,6 @@ class LegendasdivxProvider(Provider):
|
||||||
if "bloqueado" in res.text.lower(): # ip blocked on server
|
if "bloqueado" in res.text.lower(): # ip blocked on server
|
||||||
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
if 'limite' in res.text.lower(): # daily downloads limit reached
|
|
||||||
logger.error("LegendasDivx.pt :: Daily download limit reached!")
|
|
||||||
raise DownloadLimitExceeded("Legendasdivx.pt :: Daily download limit reached!")
|
|
||||||
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -322,9 +319,6 @@ class LegendasdivxProvider(Provider):
|
||||||
if "bloqueado" in res.text.lower(): # ip blocked on server
|
if "bloqueado" in res.text.lower(): # ip blocked on server
|
||||||
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
if 'limite' in res.text.lower(): # daily downloads limit reached
|
|
||||||
logger.error("LegendasDivx.pt :: Daily download limit reached!")
|
|
||||||
raise DownloadLimitExceeded("Legendasdivx.pt :: Daily download limit reached!")
|
|
||||||
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -364,23 +358,25 @@ class LegendasdivxProvider(Provider):
|
||||||
return self.query(video, languages)
|
return self.query(video, languages)
|
||||||
|
|
||||||
def download_subtitle(self, subtitle):
|
def download_subtitle(self, subtitle):
|
||||||
res = self.session.get(subtitle.page_link)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
res = self.session.get(subtitle.page_link)
|
||||||
res.raise_for_status()
|
res.raise_for_status()
|
||||||
except HTTPError as e:
|
except HTTPError as e:
|
||||||
if "bloqueado" in res.text.lower(): # ip blocked on server
|
if "bloqueado" in res.text.lower(): # ip blocked on server
|
||||||
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
logger.error("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
raise IPAddressBlocked("LegendasDivx.pt :: Your IP is blocked on this server.")
|
||||||
if 'limite' in res.text.lower(): # daily downloads limit reached
|
|
||||||
logger.error("LegendasDivx.pt :: Daily download limit reached!")
|
|
||||||
raise DownloadLimitExceeded("Legendasdivx.pt :: Daily download limit reached!")
|
|
||||||
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
logger.error("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
raise TooManyRequests("Legendasdivx.pt :: HTTP Error %s", e)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("LegendasDivx.pt :: Uncaught error: %r", e)
|
logger.error("LegendasDivx.pt :: Uncaught error: %r", e)
|
||||||
raise ServiceUnavailable("LegendasDivx.pt :: Uncaught error: %r", e)
|
raise ServiceUnavailable("LegendasDivx.pt :: Uncaught error: %r", e)
|
||||||
|
|
||||||
|
# make sure we haven't maxed out our daily limit
|
||||||
|
if (res.status_code == 200 and 'limite' in res.text.lower()): # daily downloads limit reached
|
||||||
|
logger.error("LegendasDivx.pt :: Daily download limit reached!")
|
||||||
|
raise DownloadLimitExceeded("Legendasdivx.pt :: Daily download limit reached!")
|
||||||
|
|
||||||
archive = self._get_archive(res.content)
|
archive = self._get_archive(res.content)
|
||||||
# extract the subtitle
|
# extract the subtitle
|
||||||
subtitle_content = self._get_subtitle_from_archive(archive, subtitle)
|
subtitle_content = self._get_subtitle_from_archive(archive, subtitle)
|
||||||
|
@ -394,13 +390,13 @@ class LegendasdivxProvider(Provider):
|
||||||
# stole^H^H^H^H^H inspired from subvix provider
|
# stole^H^H^H^H^H inspired from subvix provider
|
||||||
archive_stream = io.BytesIO(content)
|
archive_stream = io.BytesIO(content)
|
||||||
if rarfile.is_rarfile(archive_stream):
|
if rarfile.is_rarfile(archive_stream):
|
||||||
logger.debug('Identified rar archive')
|
logger.debug('Legendasdivx.pt :: Identified rar archive')
|
||||||
archive = rarfile.RarFile(archive_stream)
|
archive = rarfile.RarFile(archive_stream)
|
||||||
elif zipfile.is_zipfile(archive_stream):
|
elif zipfile.is_zipfile(archive_stream):
|
||||||
logger.debug('Identified zip archive')
|
logger.debug('Legendasdivx.pt :: Identified zip archive')
|
||||||
archive = zipfile.ZipFile(archive_stream)
|
archive = zipfile.ZipFile(archive_stream)
|
||||||
else:
|
else:
|
||||||
raise ValueError('Unsupported compressed format')
|
raise ValueError('Legendasdivx.pt :: Unsupported compressed format')
|
||||||
|
|
||||||
return archive
|
return archive
|
||||||
|
|
||||||
|
@ -423,24 +419,24 @@ class LegendasdivxProvider(Provider):
|
||||||
|
|
||||||
_guess = guessit(name)
|
_guess = guessit(name)
|
||||||
if isinstance(subtitle.video, Episode):
|
if isinstance(subtitle.video, Episode):
|
||||||
logger.debug("guessing %s", name)
|
logger.debug("Legendasdivx.pt :: guessing %s", name)
|
||||||
logger.debug("subtitle S%sE%s video S%sE%s", _guess['season'], _guess['episode'], subtitle.video.season, subtitle.video.episode)
|
logger.debug("Legendasdivx.pt :: subtitle S%sE%s video S%sE%s", _guess['season'], _guess['episode'], subtitle.video.season, subtitle.video.episode)
|
||||||
|
|
||||||
if subtitle.video.episode != _guess['episode'] or subtitle.video.season != _guess['season']:
|
if subtitle.video.episode != _guess['episode'] or subtitle.video.season != _guess['season']:
|
||||||
logger.debug('subtitle does not match video, skipping')
|
logger.debug('Legendasdivx.pt :: subtitle does not match video, skipping')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
matches = set()
|
matches = set()
|
||||||
matches |= guess_matches(subtitle.video, _guess)
|
matches |= guess_matches(subtitle.video, _guess)
|
||||||
logger.debug('srt matches: %s', matches)
|
logger.debug('Legendasdivx.pt :: srt matches: %s', matches)
|
||||||
_score = sum((_scores.get(match, 0) for match in matches))
|
_score = sum((_scores.get(match, 0) for match in matches))
|
||||||
if _score > _max_score:
|
if _score > _max_score:
|
||||||
_max_name = name
|
_max_name = name
|
||||||
_max_score = _score
|
_max_score = _score
|
||||||
logger.debug("new max: %s %s", name, _score)
|
logger.debug("Legendasdivx.pt :: new max: %s %s", name, _score)
|
||||||
|
|
||||||
if _max_score > 0:
|
if _max_score > 0:
|
||||||
logger.debug("returning from archive: %s scored %s", _max_name, _max_score)
|
logger.debug("Legendasdivx.pt :: returning from archive: %s scored %s", _max_name, _max_score)
|
||||||
return archive.read(_max_name)
|
return archive.read(_max_name)
|
||||||
|
|
||||||
raise ValueError("No subtitle found on compressed file. Max score was 0")
|
raise ValueError("Legendasdivx.pt :: No subtitle found on compressed file. Max score was 0")
|
||||||
|
|
Loading…
Reference in New Issue