mirror of https://github.com/morpheus65535/bazarr
389 lines
19 KiB
Python
389 lines
19 KiB
Python
# coding=utf-8
|
|
|
|
from __future__ import absolute_import
|
|
import gc
|
|
import os
|
|
import babelfish
|
|
import logging
|
|
import ast
|
|
import langdetect
|
|
import subliminal
|
|
import subliminal_patch
|
|
import operator
|
|
from subliminal import core
|
|
from subliminal_patch import search_external_subtitles
|
|
from subzero.language import Language
|
|
from bs4 import UnicodeDammit
|
|
import six
|
|
from binaryornot.check import is_binary
|
|
|
|
from get_args import args
|
|
from database import database
|
|
from get_languages import alpha2_from_alpha3, get_language_set
|
|
from config import settings
|
|
from helper import path_replace, path_replace_movie, path_replace_reverse, \
|
|
path_replace_reverse_movie, get_subtitle_destination_folder
|
|
|
|
from queueconfig import notifications
|
|
from embedded_subs_reader import embedded_subs_reader
|
|
import six
|
|
|
|
gc.enable()
|
|
|
|
|
|
def store_subtitles(original_path, reversed_path):
|
|
logging.debug('BAZARR started subtitles indexing for this file: ' + reversed_path)
|
|
actual_subtitles = []
|
|
if os.path.exists(reversed_path):
|
|
if settings.general.getboolean('use_embedded_subs'):
|
|
logging.debug("BAZARR is trying to index embedded subtitles.")
|
|
try:
|
|
subtitle_languages = embedded_subs_reader.list_languages(reversed_path)
|
|
for subtitle_language, subtitle_forced, subtitle_codec in subtitle_languages:
|
|
try:
|
|
if settings.general.getboolean("ignore_pgs_subs") and subtitle_codec == "hdmv_pgs_subtitle":
|
|
logging.debug("BAZARR skipping pgs sub for language: " + str(alpha2_from_alpha3(subtitle_language)))
|
|
continue
|
|
|
|
if alpha2_from_alpha3(subtitle_language) is not None:
|
|
lang = str(alpha2_from_alpha3(subtitle_language))
|
|
if subtitle_forced:
|
|
lang = lang + ":forced"
|
|
logging.debug("BAZARR embedded subtitles detected: " + lang)
|
|
actual_subtitles.append([lang, None])
|
|
except:
|
|
logging.debug("BAZARR unable to index this unrecognized language: " + subtitle_language)
|
|
pass
|
|
except Exception as e:
|
|
logging.exception(
|
|
"BAZARR error when trying to analyze this %s file: %s" % (os.path.splitext(reversed_path)[1], reversed_path))
|
|
pass
|
|
|
|
brazilian_portuguese = [".pt-br", ".pob", "pb"]
|
|
brazilian_portuguese_forced = [".pt-br.forced", ".pob.forced", "pb.forced"]
|
|
try:
|
|
dest_folder = get_subtitle_destination_folder()
|
|
subliminal_patch.core.CUSTOM_PATHS = [dest_folder] if dest_folder else []
|
|
subtitles = search_external_subtitles(reversed_path, languages=get_language_set(),
|
|
only_one=settings.general.getboolean('single_language'))
|
|
subtitles = guess_external_subtitles(get_subtitle_destination_folder() or os.path.dirname(reversed_path), subtitles)
|
|
except Exception as e:
|
|
logging.exception("BAZARR unable to index external subtitles.")
|
|
pass
|
|
else:
|
|
for subtitle, language in six.iteritems(subtitles):
|
|
subtitle_path = get_external_subtitles_path(reversed_path, subtitle)
|
|
if str(os.path.splitext(subtitle)[0]).lower().endswith(tuple(brazilian_portuguese)):
|
|
logging.debug("BAZARR external subtitles detected: " + "pb")
|
|
actual_subtitles.append(
|
|
[str("pb"), path_replace_reverse(subtitle_path)])
|
|
elif str(os.path.splitext(subtitle)[0]).lower().endswith(tuple(brazilian_portuguese_forced)):
|
|
logging.debug("BAZARR external subtitles detected: " + "pb:forced")
|
|
actual_subtitles.append(
|
|
[str("pb:forced"), path_replace_reverse(subtitle_path)])
|
|
elif not language:
|
|
continue
|
|
elif str(language) != 'und':
|
|
logging.debug("BAZARR external subtitles detected: " + str(language))
|
|
actual_subtitles.append(
|
|
[str(language), path_replace_reverse(subtitle_path)])
|
|
|
|
database.execute("UPDATE table_episodes SET subtitles=? WHERE path=?",
|
|
(str(actual_subtitles), original_path))
|
|
matching_episodes = database.execute("SELECT sonarrEpisodeId FROM table_episodes WHERE path=?",
|
|
(original_path,))
|
|
|
|
for episode in matching_episodes:
|
|
if episode:
|
|
logging.debug("BAZARR storing those languages to DB: " + str(actual_subtitles))
|
|
list_missing_subtitles(epno=episode['sonarrEpisodeId'])
|
|
else:
|
|
logging.debug("BAZARR haven't been able to update existing subtitles to DB : " + str(actual_subtitles))
|
|
else:
|
|
logging.debug("BAZARR this file doesn't seems to exist or isn't accessible.")
|
|
|
|
logging.debug('BAZARR ended subtitles indexing for this file: ' + reversed_path)
|
|
|
|
return actual_subtitles
|
|
|
|
|
|
def store_subtitles_movie(original_path, reversed_path):
|
|
logging.debug('BAZARR started subtitles indexing for this file: ' + reversed_path)
|
|
actual_subtitles = []
|
|
if os.path.exists(reversed_path):
|
|
if settings.general.getboolean('use_embedded_subs'):
|
|
logging.debug("BAZARR is trying to index embedded subtitles.")
|
|
try:
|
|
subtitle_languages = embedded_subs_reader.list_languages(reversed_path)
|
|
for subtitle_language, subtitle_forced, subtitle_codec in subtitle_languages:
|
|
try:
|
|
if settings.general.getboolean("ignore_pgs_subs") and subtitle_codec == "hdmv_pgs_subtitle":
|
|
logging.debug("BAZARR skipping pgs sub for language: " + str(alpha2_from_alpha3(subtitle_language)))
|
|
continue
|
|
|
|
if alpha2_from_alpha3(subtitle_language) is not None:
|
|
lang = str(alpha2_from_alpha3(subtitle_language))
|
|
if subtitle_forced:
|
|
lang = lang + ':forced'
|
|
logging.debug("BAZARR embedded subtitles detected: " + lang)
|
|
actual_subtitles.append([lang, None])
|
|
except:
|
|
logging.debug("BAZARR unable to index this unrecognized language: " + subtitle_language)
|
|
pass
|
|
except Exception as e:
|
|
logging.exception(
|
|
"BAZARR error when trying to analyze this %s file: %s" % (os.path.splitext(reversed_path)[1], reversed_path))
|
|
pass
|
|
|
|
brazilian_portuguese = [".pt-br", ".pob", "pb"]
|
|
brazilian_portuguese_forced = [".pt-br.forced", ".pob.forced", "pb.forced"]
|
|
try:
|
|
dest_folder = get_subtitle_destination_folder() or ''
|
|
subliminal_patch.core.CUSTOM_PATHS = [dest_folder] if dest_folder else []
|
|
subtitles = search_external_subtitles(reversed_path, languages=get_language_set())
|
|
subtitles = guess_external_subtitles(get_subtitle_destination_folder() or os.path.dirname(reversed_path), subtitles)
|
|
except Exception as e:
|
|
logging.exception("BAZARR unable to index external subtitles.")
|
|
pass
|
|
else:
|
|
for subtitle, language in six.iteritems(subtitles):
|
|
subtitle_path = get_external_subtitles_path(reversed_path, subtitle)
|
|
if str(os.path.splitext(subtitle)[0]).lower().endswith(tuple(brazilian_portuguese)):
|
|
logging.debug("BAZARR external subtitles detected: " + "pb")
|
|
actual_subtitles.append([str("pb"), path_replace_reverse_movie(subtitle_path)])
|
|
elif str(os.path.splitext(subtitle)[0]).lower().endswith(tuple(brazilian_portuguese_forced)):
|
|
logging.debug("BAZARR external subtitles detected: " + "pb:forced")
|
|
actual_subtitles.append([str("pb:forced"), path_replace_reverse_movie(subtitle_path)])
|
|
elif not language:
|
|
continue
|
|
elif str(language) != 'und':
|
|
logging.debug("BAZARR external subtitles detected: " + str(language))
|
|
actual_subtitles.append([str(language), path_replace_reverse_movie(subtitle_path)])
|
|
|
|
database.execute("UPDATE table_movies SET subtitles=? WHERE path=?",
|
|
(str(actual_subtitles), original_path))
|
|
matching_movies = database.execute("SELECT radarrId FROM table_movies WHERE path=?", (original_path,))
|
|
|
|
for movie in matching_movies:
|
|
if movie:
|
|
logging.debug("BAZARR storing those languages to DB: " + str(actual_subtitles))
|
|
list_missing_subtitles_movies(no=movie['radarrId'])
|
|
else:
|
|
logging.debug("BAZARR haven't been able to update existing subtitles to DB : " + str(actual_subtitles))
|
|
else:
|
|
logging.debug("BAZARR this file doesn't seems to exist or isn't accessible.")
|
|
|
|
logging.debug('BAZARR ended subtitles indexing for this file: ' + reversed_path)
|
|
|
|
return actual_subtitles
|
|
|
|
|
|
def list_missing_subtitles(no=None, epno=None):
|
|
if no is not None:
|
|
episodes_subtitles_clause = " WHERE table_episodes.sonarrSeriesId=" + str(no)
|
|
elif epno is not None:
|
|
episodes_subtitles_clause = " WHERE table_episodes.sonarrEpisodeId=" + str(epno)
|
|
else:
|
|
episodes_subtitles_clause = ""
|
|
episodes_subtitles = database.execute("SELECT table_shows.sonarrSeriesId, table_episodes.sonarrEpisodeId, "
|
|
"table_episodes.subtitles, table_shows.languages, table_shows.forced "
|
|
"FROM table_episodes LEFT JOIN table_shows "
|
|
"on table_episodes.sonarrSeriesId = table_shows.sonarrSeriesId" +
|
|
episodes_subtitles_clause)
|
|
|
|
missing_subtitles_global = []
|
|
use_embedded_subs = settings.general.getboolean('use_embedded_subs')
|
|
for episode_subtitles in episodes_subtitles:
|
|
actual_subtitles_temp = []
|
|
desired_subtitles_temp = []
|
|
actual_subtitles = []
|
|
desired_subtitles = []
|
|
missing_subtitles = []
|
|
if episode_subtitles['subtitles'] is not None:
|
|
if use_embedded_subs:
|
|
actual_subtitles = ast.literal_eval(episode_subtitles['subtitles'])
|
|
else:
|
|
actual_subtitles_temp = ast.literal_eval(episode_subtitles['subtitles'])
|
|
for subtitle in actual_subtitles_temp:
|
|
if subtitle[1] is not None:
|
|
actual_subtitles.append(subtitle)
|
|
if episode_subtitles['languages'] is not None:
|
|
desired_subtitles = ast.literal_eval(episode_subtitles['languages'])
|
|
if episode_subtitles['forced'] == "True" and desired_subtitles is not None:
|
|
for i, desired_subtitle in enumerate(desired_subtitles):
|
|
desired_subtitles[i] = desired_subtitle + ":forced"
|
|
elif episode_subtitles['forced'] == "Both" and desired_subtitles is not None:
|
|
for desired_subtitle in desired_subtitles:
|
|
desired_subtitles_temp.append(desired_subtitle)
|
|
desired_subtitles_temp.append(desired_subtitle + ":forced")
|
|
desired_subtitles = desired_subtitles_temp
|
|
actual_subtitles_list = []
|
|
if desired_subtitles is None:
|
|
missing_subtitles_global.append(tuple(['[]', episode_subtitles['sonarrEpisodeId']]))
|
|
else:
|
|
for item in actual_subtitles:
|
|
if item[0] == "pt-BR":
|
|
actual_subtitles_list.append("pb")
|
|
elif item[0] == "pt-BR:forced":
|
|
actual_subtitles_list.append("pb:forced")
|
|
else:
|
|
actual_subtitles_list.append(item[0])
|
|
missing_subtitles = list(set(desired_subtitles) - set(actual_subtitles_list))
|
|
missing_subtitles_global.append(tuple([str(missing_subtitles), episode_subtitles['sonarrEpisodeId']]))
|
|
|
|
for missing_subtitles_item in missing_subtitles_global:
|
|
database.execute("UPDATE table_episodes SET missing_subtitles=? WHERE sonarrEpisodeId=?",
|
|
(missing_subtitles_item[0], missing_subtitles_item[1]))
|
|
|
|
|
|
def list_missing_subtitles_movies(no=None):
|
|
if no is not None:
|
|
movies_subtitles_clause = " WHERE radarrId=" + str(no)
|
|
else:
|
|
movies_subtitles_clause = ""
|
|
|
|
movies_subtitles = database.execute("SELECT radarrId, subtitles, languages, forced FROM table_movies" +
|
|
movies_subtitles_clause)
|
|
|
|
missing_subtitles_global = []
|
|
use_embedded_subs = settings.general.getboolean('use_embedded_subs')
|
|
for movie_subtitles in movies_subtitles:
|
|
actual_subtitles_temp = []
|
|
desired_subtitles_temp = []
|
|
actual_subtitles = []
|
|
desired_subtitles = []
|
|
missing_subtitles = []
|
|
if movie_subtitles['subtitles'] is not None:
|
|
if use_embedded_subs:
|
|
actual_subtitles = ast.literal_eval(movie_subtitles['subtitles'])
|
|
else:
|
|
actual_subtitles_temp = ast.literal_eval(movie_subtitles['subtitles'])
|
|
for subtitle in actual_subtitles_temp:
|
|
if subtitle[1] is not None:
|
|
actual_subtitles.append(subtitle)
|
|
if movie_subtitles['languages'] is not None:
|
|
desired_subtitles = ast.literal_eval(movie_subtitles['languages'])
|
|
if movie_subtitles['forced'] == "True" and desired_subtitles is not None:
|
|
for i, desired_subtitle in enumerate(desired_subtitles):
|
|
desired_subtitles[i] = desired_subtitle + ":forced"
|
|
elif movie_subtitles['forced'] == "Both" and desired_subtitles is not None:
|
|
for desired_subtitle in desired_subtitles:
|
|
desired_subtitles_temp.append(desired_subtitle)
|
|
desired_subtitles_temp.append(desired_subtitle + ":forced")
|
|
desired_subtitles = desired_subtitles_temp
|
|
actual_subtitles_list = []
|
|
if desired_subtitles is None:
|
|
missing_subtitles_global.append(tuple(['[]', movie_subtitles['radarrId']]))
|
|
else:
|
|
for item in actual_subtitles:
|
|
if item[0] == "pt-BR":
|
|
actual_subtitles_list.append("pb")
|
|
elif item[0] == "pt-BR:forced":
|
|
actual_subtitles_list.append("pb:forced")
|
|
else:
|
|
actual_subtitles_list.append(item[0])
|
|
missing_subtitles = list(set(desired_subtitles) - set(actual_subtitles_list))
|
|
missing_subtitles_global.append(tuple([str(missing_subtitles), movie_subtitles['radarrId']]))
|
|
|
|
for missing_subtitles_item in missing_subtitles_global:
|
|
database.execute("UPDATE table_movies SET missing_subtitles=? WHERE radarrId=?",
|
|
(missing_subtitles_item[0], missing_subtitles_item[1]))
|
|
|
|
|
|
def series_full_scan_subtitles():
|
|
episodes = database.execute("SELECT path FROM table_episodes")
|
|
count_episodes = len(episodes)
|
|
|
|
for i, episode in enumerate(episodes, 1):
|
|
notifications.write(msg='Updating all episodes subtitles from disk...',
|
|
queue='list_subtitles_series', item=i, length=count_episodes)
|
|
store_subtitles(episode['path'], path_replace(episode['path']))
|
|
|
|
gc.collect()
|
|
|
|
|
|
def movies_full_scan_subtitles():
|
|
movies = database.execute("SELECT path FROM table_movies")
|
|
count_movies = len(movies)
|
|
|
|
for i, movie in enumerate(movies, 1):
|
|
notifications.write(msg='Updating all movies subtitles from disk...',
|
|
queue='list_subtitles_movies', item=i, length=count_movies)
|
|
store_subtitles_movie(movie['path'], path_replace_movie(movie['path']))
|
|
|
|
gc.collect()
|
|
|
|
|
|
def series_scan_subtitles(no):
|
|
episodes = database.execute("SELECT path FROM table_episodes WHERE sonarrSeriesId=?", (no,))
|
|
|
|
for episode in episodes:
|
|
store_subtitles(episode['path'], path_replace(episode['path']))
|
|
|
|
|
|
def movies_scan_subtitles(no):
|
|
movies = database.execute("SELECT path FROM table_movies WHERE radarrId=?", (no,))
|
|
|
|
for movie in movies:
|
|
store_subtitles_movie(movie['path'], path_replace_movie(movie['path']))
|
|
|
|
|
|
def get_external_subtitles_path(file, subtitle):
|
|
fld = os.path.dirname(file)
|
|
|
|
if settings.general.subfolder == "current":
|
|
path = os.path.join(fld, subtitle)
|
|
elif settings.general.subfolder == "absolute":
|
|
custom_fld = settings.general.subfolder_custom
|
|
if os.path.exists(os.path.join(fld, subtitle)):
|
|
path = os.path.join(fld, subtitle)
|
|
elif os.path.exists(os.path.join(custom_fld, subtitle)):
|
|
path = os.path.join(custom_fld, subtitle)
|
|
else:
|
|
path = None
|
|
elif settings.general.subfolder == "relative":
|
|
custom_fld = os.path.join(fld, settings.general.subfolder_custom)
|
|
if os.path.exists(os.path.join(fld, subtitle)):
|
|
path = os.path.join(fld, subtitle)
|
|
elif os.path.exists(os.path.join(custom_fld, subtitle)):
|
|
path = os.path.join(custom_fld, subtitle)
|
|
else:
|
|
path = None
|
|
else:
|
|
path = None
|
|
|
|
return path
|
|
|
|
|
|
def guess_external_subtitles(dest_folder, subtitles):
|
|
for subtitle, language in six.iteritems(subtitles):
|
|
if not language:
|
|
subtitle_path = os.path.join(dest_folder, subtitle)
|
|
if os.path.exists(subtitle_path) and os.path.splitext(subtitle_path)[1] in core.SUBTITLE_EXTENSIONS:
|
|
logging.debug("BAZARR falling back to file content analysis to detect language.")
|
|
if is_binary(subtitle_path):
|
|
logging.debug("BAZARR subtitles file doesn't seems to be text based. Skipping this file: " +
|
|
subtitle_path)
|
|
continue
|
|
detected_language = None
|
|
with open(subtitle_path, 'r', errors='ignore') as f:
|
|
text = f.read()
|
|
try:
|
|
encoding = UnicodeDammit(text)
|
|
if six.PY2:
|
|
text = text.decode(encoding.original_encoding)
|
|
detected_language = langdetect.detect(text)
|
|
except Exception as e:
|
|
logging.exception('BAZARR Error trying to detect language for this subtitles file: ' +
|
|
subtitle_path + ' You should try to delete this subtitles file manually and ask '
|
|
'Bazarr to download it again.')
|
|
else:
|
|
if detected_language:
|
|
logging.debug("BAZARR external subtitles detected and guessed this language: " + str(
|
|
detected_language))
|
|
try:
|
|
subtitles[subtitle] = Language.rebuild(Language.fromietf(detected_language))
|
|
except:
|
|
pass
|
|
return subtitles
|