mirror of https://github.com/morpheus65535/bazarr
349 lines
16 KiB
Python
349 lines
16 KiB
Python
from get_argv import config_dir
|
|
|
|
import os
|
|
import sqlite3
|
|
import ast
|
|
import logging
|
|
import subprocess
|
|
import time
|
|
from datetime import datetime, timedelta
|
|
from babelfish import Language
|
|
from subliminal import region, scan_video, Video, download_best_subtitles, compute_score, save_subtitles
|
|
from get_languages import language_from_alpha3, alpha2_from_alpha3, alpha3_from_alpha2
|
|
from bs4 import UnicodeDammit
|
|
from get_settings import get_general_settings, pp_replace, path_replace, path_replace_movie, path_replace_reverse, path_replace_reverse_movie
|
|
from list_subtitles import store_subtitles, list_missing_subtitles, store_subtitles_movie, list_missing_subtitles_movies
|
|
from utils import history_log, history_log_movie
|
|
from notifier import send_notifications, send_notifications_movie
|
|
|
|
# configure the cache
|
|
region.configure('dogpile.cache.memory')
|
|
|
|
def download_subtitle(path, language, hi, providers, providers_auth, sceneName, type):
|
|
if type == 'series':
|
|
type_of_score = 360
|
|
minimum_score = float(get_general_settings()[8]) / 100 * type_of_score
|
|
elif type == 'movies':
|
|
type_of_score = 120
|
|
minimum_score = float(get_general_settings()[22]) / 100 * type_of_score
|
|
use_scenename = get_general_settings()[9]
|
|
use_postprocessing = get_general_settings()[10]
|
|
postprocessing_cmd = get_general_settings()[11]
|
|
|
|
if language == 'pob':
|
|
lang_obj = Language('por', 'BR')
|
|
else:
|
|
lang_obj = Language(language)
|
|
|
|
try:
|
|
if sceneName is None or use_scenename is False:
|
|
used_sceneName = False
|
|
video = scan_video(path)
|
|
else:
|
|
used_sceneName = True
|
|
video = Video.fromname(sceneName)
|
|
except Exception as e:
|
|
logging.exception('Error trying to extract information from this filename: ' + path)
|
|
return None
|
|
else:
|
|
try:
|
|
best_subtitles = download_best_subtitles([video], {lang_obj}, providers=providers, min_score=minimum_score, hearing_impaired=hi, provider_configs=providers_auth)
|
|
except Exception as e:
|
|
logging.exception('Error trying to get the best subtitles for this file: ' + path)
|
|
return None
|
|
else:
|
|
try:
|
|
best_subtitle = best_subtitles[video][0]
|
|
except:
|
|
logging.debug('No subtitles found for ' + path)
|
|
return None
|
|
else:
|
|
single = get_general_settings()[7]
|
|
try:
|
|
score = round(float(compute_score(best_subtitle, video)) / type_of_score * 100, 2)
|
|
if used_sceneName == True:
|
|
video = scan_video(path)
|
|
if single is True:
|
|
result = save_subtitles(video, [best_subtitle], single=True, encoding='utf-8')
|
|
else:
|
|
result = save_subtitles(video, [best_subtitle], encoding='utf-8')
|
|
except:
|
|
logging.error('Error saving subtitles file to disk.')
|
|
return None
|
|
else:
|
|
downloaded_provider = str(result[0][0]).strip('<>').split(' ')[0][:-8]
|
|
downloaded_language = language_from_alpha3(language)
|
|
downloaded_language_code2 = alpha2_from_alpha3(language)
|
|
downloaded_language_code3 = language
|
|
downloaded_path = result[1]
|
|
if used_sceneName == True:
|
|
message = downloaded_language + " subtitles downloaded from " + downloaded_provider + " with a score of " + unicode(score) + "% using this scene name: " + sceneName
|
|
else:
|
|
message = downloaded_language + " subtitles downloaded from " + downloaded_provider + " with a score of " + unicode(score) + "% using filename guessing."
|
|
|
|
if use_postprocessing is True:
|
|
command = pp_replace(postprocessing_cmd, path, downloaded_path, downloaded_language, downloaded_language_code2, downloaded_language_code3)
|
|
try:
|
|
if os.name == 'nt':
|
|
codepage = subprocess.Popen("chcp", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
# wait for the process to terminate
|
|
out_codepage, err_codepage = codepage.communicate()
|
|
encoding = out_codepage.split(':')[-1].strip()
|
|
|
|
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
# wait for the process to terminate
|
|
out, err = process.communicate()
|
|
|
|
if os.name == 'nt':
|
|
out = out.decode(encoding)
|
|
|
|
except:
|
|
if out == "":
|
|
logging.error('Post-processing result for file ' + path + ' : Nothing returned from command execution')
|
|
else:
|
|
logging.error('Post-processing result for file ' + path + ' : ' + out)
|
|
else:
|
|
if out == "":
|
|
logging.info('Post-processing result for file ' + path + ' : Nothing returned from command execution')
|
|
else:
|
|
logging.info('Post-processing result for file ' + path + ' : ' + out)
|
|
|
|
return message
|
|
|
|
def series_download_subtitles(no):
|
|
if get_general_settings()[24] is True:
|
|
monitored_only_query_string = ' AND monitored = "True"'
|
|
else:
|
|
monitored_only_query_string = ""
|
|
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
episodes_details = c_db.execute('SELECT path, missing_subtitles, sonarrEpisodeId, scene_name FROM table_episodes WHERE sonarrSeriesId = ? AND missing_subtitles != "[]"' + monitored_only_query_string, (no,)).fetchall()
|
|
series_details = c_db.execute("SELECT hearing_impaired FROM table_shows WHERE sonarrSeriesId = ?", (no,)).fetchone()
|
|
enabled_providers = c_db.execute("SELECT * FROM table_settings_providers WHERE enabled = 1").fetchall()
|
|
c_db.close()
|
|
|
|
providers_list = []
|
|
providers_auth = {}
|
|
if len(enabled_providers) > 0:
|
|
for provider in enabled_providers:
|
|
providers_list.append(provider[0])
|
|
try:
|
|
if provider[2] is not '' and provider[3] is not '':
|
|
provider_auth = providers_auth.append(provider[0])
|
|
provider_auth.update({'username':providers[2], 'password':providers[3]})
|
|
else:
|
|
providers_auth = None
|
|
except:
|
|
providers_auth = None
|
|
else:
|
|
providers_list = None
|
|
providers_auth = None
|
|
|
|
for episode in episodes_details:
|
|
for language in ast.literal_eval(episode[1]):
|
|
if language is not None:
|
|
message = download_subtitle(path_replace(episode[0]), str(alpha3_from_alpha2(language)), series_details[0], providers_list, providers_auth, episode[3], 'series')
|
|
if message is not None:
|
|
store_subtitles(path_replace(episode[0]))
|
|
history_log(1, no, episode[2], message)
|
|
send_notifications(no, episode[2], message)
|
|
list_missing_subtitles(no)
|
|
|
|
|
|
def movies_download_subtitles(no):
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
movie = c_db.execute("SELECT path, missing_subtitles, radarrId, sceneName, hearing_impaired FROM table_movies WHERE radarrId = ?", (no,)).fetchone()
|
|
enabled_providers = c_db.execute("SELECT * FROM table_settings_providers WHERE enabled = 1").fetchall()
|
|
c_db.close()
|
|
|
|
providers_list = []
|
|
providers_auth = {}
|
|
if len(enabled_providers) > 0:
|
|
for provider in enabled_providers:
|
|
providers_list.append(provider[0])
|
|
try:
|
|
if provider[2] is not '' and provider[3] is not '':
|
|
provider_auth = providers_auth.append(provider[0])
|
|
provider_auth.update({'username': providers[2], 'password': providers[3]})
|
|
else:
|
|
providers_auth = None
|
|
except:
|
|
providers_auth = None
|
|
else:
|
|
providers_list = None
|
|
providers_auth = None
|
|
|
|
for language in ast.literal_eval(movie[1]):
|
|
if language is not None:
|
|
message = download_subtitle(path_replace_movie(movie[0]), str(alpha3_from_alpha2(language)), movie[4], providers_list, providers_auth, movie[3], 'movies')
|
|
if message is not None:
|
|
store_subtitles_movie(path_replace_movie(movie[0]))
|
|
history_log_movie(1, no, message)
|
|
send_notifications_movie(no, message)
|
|
list_missing_subtitles_movies(no)
|
|
|
|
|
|
def wanted_download_subtitles(path):
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
episodes_details = c_db.execute("SELECT table_episodes.path, table_episodes.missing_subtitles, table_episodes.sonarrEpisodeId, table_episodes.sonarrSeriesId, table_shows.hearing_impaired, table_episodes.scene_name, table_episodes.failedAttempts FROM table_episodes INNER JOIN table_shows on table_shows.sonarrSeriesId = table_episodes.sonarrSeriesId WHERE table_episodes.path = ? AND missing_subtitles != '[]'", (path_replace_reverse(path),)).fetchall()
|
|
enabled_providers = c_db.execute("SELECT * FROM table_settings_providers WHERE enabled = 1").fetchall()
|
|
c_db.close()
|
|
|
|
providers_list = []
|
|
providers_auth = {}
|
|
if len(enabled_providers) > 0:
|
|
for provider in enabled_providers:
|
|
providers_list.append(provider[0])
|
|
try:
|
|
if provider[2] is not '' and provider[3] is not '':
|
|
provider_auth = providers_auth.append(provider[0])
|
|
provider_auth.update({'username':providers[2], 'password':providers[3]})
|
|
else:
|
|
providers_auth = None
|
|
except:
|
|
providers_auth = None
|
|
else:
|
|
providers_list = None
|
|
providers_auth = None
|
|
|
|
for episode in episodes_details:
|
|
attempt = episode[6]
|
|
if type(attempt) == unicode:
|
|
attempt = ast.literal_eval(attempt)
|
|
for language in ast.literal_eval(episode[1]):
|
|
if attempt is None:
|
|
attempt = []
|
|
attempt.append([language, time.time()])
|
|
else:
|
|
att = zip(*attempt)[0]
|
|
if language not in att:
|
|
attempt.append([language, time.time()])
|
|
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
c_db.execute('UPDATE table_episodes SET failedAttempts = ? WHERE sonarrEpisodeId = ?', (unicode(attempt), episode[2]))
|
|
conn_db.commit()
|
|
c_db.close()
|
|
|
|
for i in range(len(attempt)):
|
|
if attempt[i][0] == language:
|
|
if search_active(attempt[i][1]) is True:
|
|
message = download_subtitle(path_replace(episode[0]), str(alpha3_from_alpha2(language)), episode[4], providers_list, providers_auth, episode[5], 'series')
|
|
if message is not None:
|
|
store_subtitles(path_replace(episode[0]))
|
|
list_missing_subtitles(episode[3])
|
|
history_log(1, episode[3], episode[2], message)
|
|
send_notifications(episode[3], episode[2], message)
|
|
else:
|
|
logging.debug('Search is not active for episode ' + episode[0] + ' Language: ' + attempt[i][0])
|
|
|
|
|
|
def wanted_download_subtitles_movie(path):
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
movies_details = c_db.execute("SELECT path, missing_subtitles, radarrId, radarrId, hearing_impaired, sceneName, failedAttempts FROM table_movies WHERE path = ? AND missing_subtitles != '[]'", (path_replace_reverse_movie(path),)).fetchall()
|
|
enabled_providers = c_db.execute("SELECT * FROM table_settings_providers WHERE enabled = 1").fetchall()
|
|
c_db.close()
|
|
|
|
providers_list = []
|
|
providers_auth = {}
|
|
if len(enabled_providers) > 0:
|
|
for provider in enabled_providers:
|
|
providers_list.append(provider[0])
|
|
try:
|
|
if provider[2] is not '' and provider[3] is not '':
|
|
provider_auth = providers_auth.append(provider[0])
|
|
provider_auth.update({'username': providers[2], 'password': providers[3]})
|
|
else:
|
|
providers_auth = None
|
|
except:
|
|
providers_auth = None
|
|
else:
|
|
providers_list = None
|
|
providers_auth = None
|
|
|
|
for movie in movies_details:
|
|
attempt = movie[6]
|
|
if type(attempt) == unicode:
|
|
attempt = ast.literal_eval(attempt)
|
|
for language in ast.literal_eval(movie[1]):
|
|
if attempt is None:
|
|
attempt = []
|
|
attempt.append([language, time.time()])
|
|
else:
|
|
att = zip(*attempt)[0]
|
|
if language not in att:
|
|
attempt.append([language, time.time()])
|
|
|
|
conn_db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
c_db = conn_db.cursor()
|
|
c_db.execute('UPDATE table_movies SET failedAttempts = ? WHERE radarrId = ?', (unicode(attempt), movie[2]))
|
|
conn_db.commit()
|
|
c_db.close()
|
|
|
|
for i in range(len(attempt)):
|
|
if attempt[i][0] == language:
|
|
if search_active(attempt[i][1]) is True:
|
|
message = download_subtitle(path_replace_movie(movie[0]), str(alpha3_from_alpha2(language)), movie[4], providers_list, providers_auth, movie[5], 'movies')
|
|
if message is not None:
|
|
store_subtitles_movie(path_replace_movie(movie[0]))
|
|
list_missing_subtitles_movies(movie[3])
|
|
history_log_movie(1, movie[3], message)
|
|
send_notifications_movie(movie[3], message)
|
|
else:
|
|
logging.info('Search is not active for movie ' + movie[0] + ' Language: ' + attempt[i][0])
|
|
|
|
|
|
def wanted_search_missing_subtitles():
|
|
db = sqlite3.connect(os.path.join(config_dir, 'db/bazarr.db'), timeout=30)
|
|
db.create_function("path_substitution", 1, path_replace)
|
|
db.create_function("path_substitution_movie", 1, path_replace_movie)
|
|
c = db.cursor()
|
|
|
|
if get_general_settings()[24] is True:
|
|
monitored_only_query_string = ' AND monitored = "True"'
|
|
else:
|
|
monitored_only_query_string = ""
|
|
|
|
c.execute("SELECT path_substitution(path) FROM table_episodes WHERE missing_subtitles != '[]'" + monitored_only_query_string)
|
|
episodes = c.fetchall()
|
|
|
|
c.execute("SELECT path_substitution_movie(path) FROM table_movies WHERE missing_subtitles != '[]'" + monitored_only_query_string)
|
|
movies = c.fetchall()
|
|
|
|
c.close()
|
|
|
|
integration = get_general_settings()
|
|
|
|
if integration[12] is True:
|
|
for episode in episodes:
|
|
wanted_download_subtitles(episode[0])
|
|
|
|
if integration[13] is True:
|
|
for movie in movies:
|
|
wanted_download_subtitles_movie(movie[0])
|
|
|
|
logging.info('Finished searching for missing subtitles. Check histories for more information.')
|
|
|
|
|
|
def search_active(timestamp):
|
|
if get_general_settings()[25] is True:
|
|
search_deadline = timedelta(weeks=3)
|
|
search_delta = timedelta(weeks=1)
|
|
aa = datetime.fromtimestamp(float(timestamp))
|
|
attempt_datetime = datetime.strptime(str(aa).split(".")[0], '%Y-%m-%d %H:%M:%S')
|
|
attempt_search_deadline = attempt_datetime + search_deadline
|
|
today = datetime.today()
|
|
attempt_age_in_days = (today.date() - attempt_search_deadline.date()).days
|
|
if today.date() <= attempt_search_deadline.date():
|
|
return True
|
|
elif attempt_age_in_days % search_delta.days == 0:
|
|
return True
|
|
else:
|
|
return False
|
|
else:
|
|
return True
|