2019-04-20 21:15:00 +00:00
<!DOCTYPE html>
2018-12-09 20:23:51 +00:00
< html lang = "en" >
2018-04-19 23:45:10 +00:00
< head >
< script src = "{{base_url}}static/jquery/jquery-latest.min.js" > < / script >
< script src = "{{base_url}}static/semantic/semantic.min.js" > < / script >
< script src = "{{base_url}}static/jquery/tablesort.js" > < / script >
2018-09-10 21:10:33 +00:00
< script src = "{{base_url}}static/datatables/jquery.dataTables.min.js" > < / script >
< script src = "{{base_url}}static/datatables/dataTables.semanticui.min.js" > < / script >
< link rel = "stylesheet" href = "{{base_url}}static/semantic/semantic.css" >
< link rel = "stylesheet" type = "text/css" href = "{{base_url}}static/datatables/datatables.min.css" / >
< link rel = "stylesheet" type = "text/css" href = "{{base_url}}static/datatables/semanticui.min.css" / >
2018-04-19 23:45:10 +00:00
< link rel = "apple-touch-icon" sizes = "120x120" href = "{{base_url}}static/apple-touch-icon.png" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "{{base_url}}static/favicon-32x32.png" >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "{{base_url}}static/favicon-16x16.png" >
< link rel = "manifest" href = "{{base_url}}static/manifest.json" >
< link rel = "mask-icon" href = "{{base_url}}static/safari-pinned-tab.svg" color = "#5bbad5" >
< link rel = "shortcut icon" href = "{{base_url}}static/favicon.ico" >
< meta name = "msapplication-config" content = "{{base_url}}static/browserconfig.xml" >
< meta name = "theme-color" content = "#ffffff" >
2019-10-27 03:17:14 +00:00
< title > {{details['title']}} - Bazarr< / title >
2018-04-19 23:45:10 +00:00
< style >
body {
background-color: #1b1c1d;
2019-10-27 03:17:14 +00:00
background-image: url("{{base_url}}image_proxy_movies{{details['fanart']}}");
2018-04-19 23:45:10 +00:00
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position:center center;
}
#divdetails {
2018-09-26 10:35:46 +00:00
background-color: rgba(0, 0, 0, 0.9);
2018-04-19 23:45:10 +00:00
color: #ffffff;
margin-top: 6em;
margin-bottom: 3em;
padding: 2em;
border-radius: 1px;
2018-12-09 20:23:51 +00:00
box-shadow: 0 0 5px 5px #000000;
2018-04-19 23:45:10 +00:00
min-height: calc(250px + 4em);
}
#fondblanc {
background-color: #ffffff;
2019-11-20 03:02:59 +00:00
color: #000000;
2018-04-19 23:45:10 +00:00
opacity: 0.9;
border-radius: 1px;
2018-12-09 20:23:51 +00:00
box-shadow: 0 0 3px 3px #ffffff;
2018-04-19 23:45:10 +00:00
margin-top: 32px;
margin-bottom: 3em;
padding-top: 2em;
padding-left: 2em;
padding-right: 2em;
padding-bottom: 1em;
2018-05-02 10:25:42 +00:00
text-color: black;
2018-10-12 17:01:32 +00:00
overflow-x:auto;
2018-04-19 23:45:10 +00:00
}
.ui.basic.button:hover, .ui.basic.buttons .button:hover {
background: transparent !important;
}
.ui.basic.button:active, .ui.basic.buttons .button:active {
background: transparent !important;
}
.ui.basic.button:focus, .ui.basic.buttons .button:focus {
background: transparent !important;
}
.ui.basic.button:visited, .ui.basic.buttons .button:visited {
background: transparent !important;
}
2018-09-10 21:10:33 +00:00
.criteria_matched {
background-color: #e6ffe6 !important;
line-height: 0 !important;
}
.criteria_not_matched {
background-color: #ffcccc !important;
line-height: 0 !important;
}
2018-04-19 23:45:10 +00:00
< / style >
< / head >
< body >
%import ast
2019-10-01 18:56:53 +00:00
%from os import path
2018-07-30 00:42:24 +00:00
%from get_languages import *
2018-12-15 00:36:28 +00:00
%from config import settings
2018-12-15 00:53:24 +00:00
%from helper import path_replace_movie
2018-12-27 19:19:59 +00:00
%single_language = settings.general.getboolean('single_language')
2019-10-27 03:17:14 +00:00
< div style = "display: none;" > < img src = "{{base_url}}image_proxy_movies{{details['fanart']}}" > < / div >
2018-04-19 23:45:10 +00:00
< div id = 'loader' class = "ui page dimmer" >
2018-09-10 21:10:33 +00:00
< div id = "loader_text" class = "ui indeterminate text loader" > Loading...< / div >
2018-04-19 23:45:10 +00:00
< / div >
% include('menu.tpl')
2018-04-24 14:48:52 +00:00
< div style = 'padding-left: 2em; padding-right: 2em;' class = 'ui container' >
2018-04-19 23:45:10 +00:00
< div id = "divdetails" class = "ui container" >
2019-04-20 21:15:00 +00:00
< div class = "ui stackable grid" >
< div class = "three wide column" >
2019-10-27 03:17:14 +00:00
< img class = "left floated ui image" style = "max-height:250px;" src = "{{base_url}}image_proxy_movies{{details['poster']}}" >
2019-04-20 21:15:00 +00:00
< / div >
< div class = "thirteen wide column" >
< div class = "ui stackable grid" >
< div class = "ui row" >
< div class = "twelve wide left aligned column" >
< h2 >
2019-10-27 03:17:14 +00:00
%if details['monitored'] == 'True':
2019-09-17 14:57:34 +00:00
< span data-tooltip = "Movie is Monitored in Radarr" > < i class = "bookmark icon" > < / i > < / span >
2019-04-20 21:15:00 +00:00
%else:
2019-09-17 14:57:34 +00:00
< span data-tooltip = "Movie is not Monitored in Radarr" > < i class = "bookmark outline icon" > < / i > < / span >
2019-04-20 21:15:00 +00:00
%end
2019-10-27 03:17:14 +00:00
{{details['title']}}
2019-04-20 21:15:00 +00:00
< / h2 >
< / div >
< div class = "four wide right aligned column" >
< div class = "ui right floated basic icon buttons" >
2019-09-17 14:57:34 +00:00
< button id = "scan_disk" class = "ui button" data-tooltip = "Scan Disk For Subtitles" data-inverted = "" > < i class = "ui inverted large compact refresh icon" > < / i > < / button >
< button id = "search_missing_subtitles_movie" class = "ui button" data-tooltip = "Download Missing Subtitles" data-inverted = "" > < i class = "ui inverted huge compact search icon" > < / i > < / button >
2019-04-20 21:15:00 +00:00
< %
2019-10-27 03:17:14 +00:00
subs_languages = ast.literal_eval(str(details['languages']))
2019-04-20 21:15:00 +00:00
subs_languages_list = []
if subs_languages is not None:
for subs_language in subs_languages:
subs_languages_list.append(subs_language)
end
end
%>
%if subs_languages is not None:
2019-10-27 03:17:14 +00:00
< button class = "manual_search ui button" data-tooltip = "Manually Search For Subtitles" data-inverted = "" data-moviePath = "{{details['path']}}" data-scenename = "{{details['sceneName']}}" data-language = "{{subs_languages_list}}" data-hi = "{{details['hearing_impaired']}}" data-forced = "{{details['forced']}}" data-movie_title = "{{details['title']}}" data-radarrId = "{{details['radarrId']}}" > < i class = "ui inverted large compact user icon" > < / i > < / button >
2019-11-05 04:32:55 +00:00
< button class = "manual_upload ui button" data-tooltip = "Upload Subtitle File" data-inverted = "" data-moviePath = "{{details['path']}}" data-scenename = "{{details['sceneName']}}" data-language = "{{subs_languages_list}}" data-hi = "{{details['hearing_impaired']}}" data-movie_title = "{{details['title']}}" data-radarrId = "{{details['radarrId']}}" > < i class = "ui inverted large compact cloud upload icon" > < / i > < / button >
2019-04-20 21:15:00 +00:00
%end
2019-10-27 03:17:14 +00:00
< button id = "config" class = "ui button" data-tooltip = "Edit Movie" data-inverted = "" data-tmdbid = "{{details['tmdbId']}}" data-title = "{{details['title']}}" data-poster = "{{details['poster']}}" data-audio = "{{details['audio_language']}}" data-languages = "{{!subs_languages_list}}" data-hearing-impaired = "{{details['hearing_impaired']}}" data-forced = "{{details['forced']}}" > < i class = "ui inverted large compact configure icon" > < / i > < / button >
2019-04-20 21:15:00 +00:00
< / div >
< / div >
< / div >
< div class = "ui row" >
2019-10-27 03:17:14 +00:00
{{details['overview']}}
2019-04-20 21:15:00 +00:00
< / div >
< div class = "ui row" >
2019-10-27 03:17:14 +00:00
< div class = "ui tiny inverted label" style = 'background-color: #777777;' > {{details['audio_language']}}< / div >
< div class = "ui tiny inverted label" style = 'background-color: #35c5f4;' > {{details['path']}}< / div >
% if details['sceneName'] is not None:
< div class = "ui tiny inverted label" style = 'background-color: orange;' > {{details['sceneName']}}< / div >
2019-04-20 21:15:00 +00:00
% end
< / div >
2019-05-21 13:13:49 +00:00
< div class = "ui row" style = "padding-bottom: 0.5em;" >
2019-04-20 21:15:00 +00:00
%for language in subs_languages_list:
< div class = "ui tiny inverted label" style = 'background-color: #35c5f4;' > {{language}}< / div >
%end
< / div >
2019-05-21 13:13:49 +00:00
< div class = "ui row" style = "padding-top: 0em;" >
2019-10-27 03:17:14 +00:00
< div class = "ui tiny inverted label" style = 'background-color: #777777;' > Hearing-impaired: {{details['hearing_impaired']}}< / div >
< div class = "ui tiny inverted label" style = 'background-color: #777777;' > Forced: {{details['forced']}}< / div >
2019-05-21 13:13:49 +00:00
< / div >
2019-04-20 21:15:00 +00:00
< / div >
< / div >
2018-04-19 23:45:10 +00:00
< / div >
2018-04-24 14:48:52 +00:00
< div id = "fondblanc" class = "ui container" >
2019-11-20 03:02:59 +00:00
< div class = "ui top attached tabular menu" >
< a id = "subtitles_tab" class = "tabs item active" data-tab = "subtitles" > Subtitles< / a >
< a id = "history_tab" class = "tabs item" data-tab = "history" > History< / a >
< / div >
< div class = "ui bottom attached tab active segment" data-tab = "subtitles" >
< div class = "content" >
< table class = "ui very basic single line selectable table" >
< thead >
< tr >
< th > Subtitles Path< / th >
< th > Language(s)< / th >
< th > < / th >
< / tr >
< / thead >
< tbody >
< %
subtitles_files = ast.literal_eval(str(details['subtitles']))
2019-11-20 03:04:54 +00:00
subtitles_files.sort(key=lambda x: x[0])
2019-11-20 03:02:59 +00:00
if subtitles_files is not None:
for subtitles_file in subtitles_files:
if subtitles_file[0].endswith(':forced'):
forced = True
else:
forced = False
end
%>
< tr >
%if subtitles_file[1] is not None:
< td > < span data-tooltip = "Path is: {{path_replace_movie(subtitles_file[1])}}" data-inverted = '' data-position = "top left" > {{path.basename(path_replace_movie(subtitles_file[1]))}}< / span > < / td >
%else:
< td > Video File Subtitles Track< / td >
%end
< td > < div class = "ui tiny inverted label" style = 'background-color: #777777;' > {{language_from_alpha2(subtitles_file[0].split(':')[0])}}{{' forced' if forced else ''}}< / div > < / td >
< td >
%if subtitles_file[1] is not None:
< a class = "remove_subtitles ui inverted basic compact icon" data-tooltip = "Delete Subtitle File" data-inverted = "" data-position = "top right" data-moviePath = "{{details['path']}}" data-subtitlesPath = "{{path_replace_movie(subtitles_file[1])}}" data-language = "{{alpha3_from_alpha2(subtitles_file[0].split(':')[0])}}" data-radarrId = {{details['radarrId']}} >
< i class = "ui black delete icon" > < / i >
< / a >
%end
< / td >
< / tr >
< %
end
if len(subtitles_files) == 0:
%>
< tr > < td colspan = "3" > No Subtitles Detected For This Movie.< / td > < / tr >
< %
end
end
%>
< / tbody >
< / table >
< %
if details['missing_subtitles'] is not None:
missing_subs_languages = ast.literal_eval(details['missing_subtitles'])
else:
missing_subs_languages = []
end
from get_subtitle import search_active
if missing_subs_languages is not None:
%>
< table class = "ui very basic single line selectable table" >
< thead >
< tr >
< th > Missing Subtitles< / th >
< / tr >
< / thead >
< / table >
2018-05-02 10:25:42 +00:00
< %
2019-11-20 03:02:59 +00:00
for missing_subs_language in missing_subs_languages:
if len(missing_subs_language) > 2:
forced = missing_subs_language[2]
forced_bool = True
2019-03-29 01:39:18 +00:00
else:
forced = False
2019-11-20 03:02:59 +00:00
forced_bool = False
2019-03-29 01:39:18 +00:00
end
2019-11-20 03:02:59 +00:00
if details['failedAttempts'] is not None and settings.general.getboolean('adaptive_searching') and missing_subs_language in details['failedAttempts']:
for lang in ast.literal_eval(details['failedAttempts']):
if missing_subs_language in lang:
if search_active(lang[1]):
2018-05-02 10:25:42 +00:00
%>
2019-11-20 03:02:59 +00:00
< a class = "get_subtitle ui small blue label" data-moviePath = "{{details['path']}}" data-scenename = "{{details['sceneName']}}" data-language = "{{alpha3_from_alpha2(str(missing_subs_language.split(':')[0]))}}" data-hi = "{{details['hearing_impaired']}}" data-forced = "{{details['forced']}}" data-radarrId = {{details['radarrId']}} >
{{language_from_alpha2(str(missing_subs_language.split(':')[0]))}}{{' forced' if forced else ''}}
< i style = "margin-left:3px; margin-right:0" class = "search icon" > < / i >
< / a >
%else:
< a data-tooltip = "Automatic Searching Delayed (Adaptive Search)" data-position = "top left" data-inverted = "" class = "get_subtitle ui small red label" data-moviePath = "{{details['path']}}" data-scenename = "{{details['sceneName']}}" data-language = "{{alpha3_from_alpha2(str(missing_subs_language.split(':')[0]))}}" data-hi = "{{details['hearing_impaired']}}" data-forced = "{{details['forced']}}" data-radarrId = {{details['radarrId']}} >
{{language_from_alpha2(str(missing_subs_language.split(':')[0]))}}{{' forced' if forced else ''}}
< i style = "margin-left:3px; margin-right:0" class = "search icon" > < / i >
2018-05-02 10:25:42 +00:00
< / a >
< %
2019-11-20 03:02:59 +00:00
end
end
end
else:
2018-05-02 10:25:42 +00:00
%>
2019-11-20 03:02:59 +00:00
< a class = "get_subtitle ui small blue label" data-moviePath = "{{details['path']}}" data-scenename = "{{details['sceneName']}}" data-language = "{{alpha3_from_alpha2(str(missing_subs_language.split(':')[0]))}}" data-hi = "{{details['hearing_impaired']}}" data-forced = "{{details['forced']}}" data-radarrId = {{details['radarrId']}} >
{{language_from_alpha2(str(missing_subs_language.split(':')[0]))}}{{' forced' if forced else ''}}
< i style = "margin-left:3px; margin-right:0" class = "search icon" > < / i >
< / a >
2018-05-02 10:25:42 +00:00
< %
2019-11-20 03:02:59 +00:00
end
2018-05-02 10:25:42 +00:00
end
end
%>
2019-11-20 03:02:59 +00:00
< / div >
< / div >
< div class = "ui bottom attached tab segment" data-tab = "history" >
< div class = "content" >
< table id = "movie_result" class = "display" style = "width:100%" >
< thead >
< tr >
< th > < / th >
< th style = "text-align: left;" > Language.:< / th >
< th style = "text-align: left;" > Provider:< / th >
< th style = "text-align: left;" > Score:< / th >
< th style = "text-align: left;" > Date:< / th >
< / tr >
< / thead >
< / table >
< / div >
< / div >
2018-04-24 14:48:52 +00:00
< / div >
2018-04-19 23:45:10 +00:00
< / div >
< / div >
2018-09-10 21:10:33 +00:00
< div class = "config_dialog ui small modal" >
2018-04-19 23:45:10 +00:00
< i class = "close icon" > < / i >
< div class = "header" >
< div id = "movie_title" > < / div >
< / div >
< div class = "content" >
< form name = "movie_form" id = "movie_form" action = "" method = "post" class = "ui form" >
< div class = "ui grid" >
< div class = "four wide column" >
< img id = "movie_poster" class = "ui image" src = "" >
< / div >
< div class = "twelve wide column" >
< div class = "ui grid" >
< div class = "middle aligned row" >
< div class = "right aligned five wide column" >
2019-09-17 14:57:34 +00:00
< label > Audio Language< / label >
2018-04-19 23:45:10 +00:00
< / div >
< div class = "nine wide column" >
< div id = "movie_audio_language" > < / div >
< / div >
< / div >
< div class = "middle aligned row" >
< div class = "right aligned five wide column" >
2019-09-17 14:57:34 +00:00
< label > Subtitle Languages< / label >
2018-04-19 23:45:10 +00:00
< / div >
< div class = "nine wide column" >
2018-08-23 19:58:15 +00:00
< select name = "languages" id = "movie_languages" { { ! ' multiple = "" ' if single_language is False else ' ' } } class = "ui fluid selection dropdown" >
2018-04-19 23:45:10 +00:00
< option value = "" > Languages< / option >
2019-02-23 23:26:19 +00:00
%if single_language:
< option value = "None" > None< / option >
%end
2018-04-19 23:45:10 +00:00
%for language in languages:
2019-10-27 03:17:14 +00:00
< option value = "{{language['code2']}}" > {{language['name']}}< / option >
2018-04-19 23:45:10 +00:00
%end
< / select >
< / div >
< / div >
< div class = "middle aligned row" >
< div class = "right aligned five wide column" >
2019-09-17 14:57:34 +00:00
< label > Hearing-Impaired< / label >
2018-04-19 23:45:10 +00:00
< / div >
< div class = "nine wide column" >
< div id = "movie_hearing-impaired_div" class = "ui toggle checkbox" >
< input name = "hearing_impaired" id = "movie_hearing-impaired" type = "checkbox" >
< label > < / label >
< / div >
< / div >
< / div >
2019-05-22 03:33:59 +00:00
< div class = "middle aligned row" >
< div class = "right aligned five wide column" >
< label > Forced< / label >
< / div >
< div class = "nine wide column" >
< select name = "forced" id = "movie_forced" class = "ui fluid selection dropdown" >
< option value = "False" > False< / option >
< option value = "True" > True< / option >
< option value = "Both" > Both< / option >
< / select >
< / div >
< / div >
2018-04-19 23:45:10 +00:00
< / div >
< / div >
< / div >
< / form >
< / div >
< div class = "actions" >
< button class = "ui cancel button" > Cancel< / button >
< button type = "submit" name = "save" value = "save" form = "movie_form" class = "ui blue approve button" > Save< / button >
< / div >
< / div >
2018-09-10 21:10:33 +00:00
< div class = "search_dialog ui modal" >
< i class = "close icon" > < / i >
< div class = "header" >
< span id = "movie_title_span" > < / span >
2019-10-07 19:45:35 +00:00
< br > < h5 > Movie path is: < div class = "ui tiny inverted label" style = "background-color: #35c5f4;" > < span id = "movie_path_span" > < / span > < / div >
< br > Scenename is: < div class = "ui tiny inverted label" style = "background-color: orange;" > < span id = "movie_scenename_span" > < / span > < / div > < / h5 >
2018-09-10 21:10:33 +00:00
< / div >
< div class = "scrolling content" >
< table id = "search_result" class = "display" style = "width:100%" >
< thead >
< tr >
< th style = "text-align: left;" > Score:< / th >
2019-10-01 03:29:08 +00:00
< th style = "text-align: left;" > Lang.:< / th >
< th style = "text-align: left;" > HI:< / th >
2018-09-10 21:10:33 +00:00
< th style = "text-align: left;" > Provider:< / th >
2019-10-01 03:29:08 +00:00
< th style = "text-align: left;" > Matching:< / th >
2019-10-20 12:09:43 +00:00
< th style = "text-align: left;" > Releases:< / th >
2019-10-27 03:17:14 +00:00
< th > < / th > details
2018-09-10 21:10:33 +00:00
< / tr >
< / thead >
< / table >
< / div >
< div class = "actions" >
< button class = "ui cancel button" > Cancel< / button >
< / div >
< / div >
2019-08-23 00:02:11 +00:00
< div class = "upload_dialog ui small modal" >
< i class = "close icon" > < / i >
< div class = "header" >
< span id = "movie_title_upload_span" > < / span >
< / div >
< div class = "scrolling content" >
< form class = "ui form" name = "upload_form" id = "upload_form" action = "{{base_url}}manual_upload_subtitle_movie" method = "post" enctype = "multipart/form-data" >
< div class = "ui grid" >
< div class = "middle aligned row" >
< div class = "right aligned three wide column" >
< label > Language< / label >
< / div >
< div class = "thirteen wide column" >
< select class = "ui search dropdown" id = "language" name = "language" >
%for language in subs_languages_list:
< option value = "{{language}}" > {{language_from_alpha2(language)}}< / option >
%end
< / select >
< / div >
< / div >
< div class = "middle aligned row" >
< div class = "right aligned three wide column" >
< label > Forced< / label >
< / div >
< div class = "thirteen wide column" >
< div class = "ui toggle checkbox" >
< input name = "forced" type = "checkbox" value = "1" >
< label > < / label >
< / div >
< / div >
< / div >
< div class = "middle aligned row" >
< div class = "right aligned three wide column" >
< label > File< / label >
< / div >
< div class = "thirteen wide column" >
< input type = "file" name = "upload" >
< / div >
< / div >
< / div >
< input type = "hidden" id = "upload_moviePath" name = "moviePath" value = "" / >
< input type = "hidden" id = "upload_sceneName" name = "sceneName" value = "" / >
< input type = "hidden" id = "upload_radarrId" name = "radarrId" value = "" / >
< input type = "hidden" id = "upload_title" name = "title" value = "" / >
< / form >
< / div >
< div class = "actions" >
< button class = "ui cancel button" > Cancel< / button >
< button type = "submit" name = "save" value = "save" form = "upload_form" class = "ui blue approve button" > Save< / button >
< / div >
< / div >
2018-04-19 23:45:10 +00:00
% include('footer.tpl')
< / body >
< / html >
< script >
2019-11-20 03:02:59 +00:00
$('.menu .item')
.tab();
2018-12-09 20:23:51 +00:00
$('#scan_disk').on('click', function(){
2019-09-17 14:57:34 +00:00
$('#loader_text').text("Scanning Disk For Existing Subtitles...");
2018-04-24 14:48:52 +00:00
window.location = '{{base_url}}scan_disk_movie/{{no}}';
2018-12-09 20:23:51 +00:00
});
2018-04-19 23:45:10 +00:00
2019-02-25 04:05:58 +00:00
$('#search_missing_subtitles_movie').on('click', function(){
2019-02-26 00:48:43 +00:00
$(this).addClass('disabled');
2019-02-25 04:05:58 +00:00
$(this).find('i:first').addClass('loading');
$.ajax({
url: '{{base_url}}search_missing_subtitles_movie/{{no}}'
})
2018-12-09 20:23:51 +00:00
});
2018-04-19 23:45:10 +00:00
2018-12-09 20:23:51 +00:00
$('.remove_subtitles').on('click', function(){
const values = {
2018-09-10 21:10:33 +00:00
moviePath: $(this).attr("data-moviePath"),
language: $(this).attr("data-language"),
subtitlesPath: $(this).attr("data-subtitlesPath"),
radarrId: $(this).attr("data-radarrId"),
tmdbid: {{tmdbid}}
};
2019-09-17 14:57:34 +00:00
$('#loader_text').text("Deleting Subtitle...");
2018-09-10 21:10:33 +00:00
$.ajax({
url: "{{base_url}}remove_subtitles_movie",
type: "POST",
dataType: "json",
data: values
});
$(document).ajaxStart(function(){
$('#loader').addClass('active');
});
$(document).ajaxStop(function(){
window.location.reload();
});
2018-12-09 20:23:51 +00:00
});
2018-04-19 23:45:10 +00:00
2018-12-09 20:23:51 +00:00
$('.get_subtitle').on('click', function(){
const values = {
2018-09-10 21:10:33 +00:00
moviePath: $(this).attr("data-moviePath"),
sceneName: $(this).attr("data-sceneName"),
language: $(this).attr("data-language"),
hi: $(this).attr("data-hi"),
2019-03-31 03:09:52 +00:00
forced: $(this).attr("data-forced"),
2018-09-10 21:10:33 +00:00
radarrId: $(this).attr("data-radarrId"),
2018-11-29 13:03:44 +00:00
tmdbid: {{tmdbid}},
2019-10-27 03:17:14 +00:00
title: "{{!details['title'].replace("'", "\\'")}}"
2018-09-10 21:10:33 +00:00
};
2019-09-17 14:57:34 +00:00
$('#loader_text').text("Downloading Subtitle File...");
2018-09-10 21:10:33 +00:00
$.ajax({
url: "{{base_url}}get_subtitle_movie",
type: "POST",
dataType: "json",
data: values
});
$(document).ajaxStart(function(){
$('#loader').addClass('active');
});
$(document).ajaxStop(function(){
window.location.reload();
});
2018-12-09 20:23:51 +00:00
});
2018-04-19 23:45:10 +00:00
2019-11-20 03:02:59 +00:00
$('a:not(.tabs), button:not(#config, .cancel, .manual_search, .manual_upload, #search_missing_subtitles_movie)').on('click', function(){
2018-04-19 23:45:10 +00:00
$('#loader').addClass('active');
2018-12-09 20:23:51 +00:00
});
2018-04-19 23:45:10 +00:00
2018-12-09 20:23:51 +00:00
$('#config').on('click', function(){
2018-04-19 23:45:10 +00:00
$('#movie_form').attr('action', '{{base_url}}edit_movie/{{no}}');
$("#movie_title").html($(this).data("title"));
$("#movie_poster").attr("src", "{{base_url}}image_proxy_movies" + $(this).data("poster"));
$("#movie_audio_language").html($(this).data("audio"));
$('#movie_languages').dropdown('clear');
2018-12-09 20:23:51 +00:00
const languages_array = eval($(this).data("languages"));
2018-04-19 23:45:10 +00:00
$('#movie_languages').dropdown('set selected',languages_array);
2019-05-22 03:33:59 +00:00
$('#movie_forced').dropdown('clear');
$('#movie_forced').dropdown('set selected',$(this).data("forced"));
2018-12-09 20:23:51 +00:00
if ($(this).data("hearing-impaired") === "True") {
2018-04-19 23:45:10 +00:00
$("#movie_hearing-impaired_div").checkbox('check');
} else {
$("#movie_hearing-impaired_div").checkbox('uncheck');
}
2019-08-23 00:02:11 +00:00
$('.config_dialog')
.modal({
centered: false,
autofocus: false
})
.modal('show');
2018-12-09 20:23:51 +00:00
});
2018-09-10 21:10:33 +00:00
2019-11-20 03:02:59 +00:00
$('#history_tab').on('click', function(){
$('#movie_result').DataTable( {
destroy: true,
language: {
loadingRecords: '< br > < div class = "ui active inverted dimmer" style = "width: 95%;" > < div class = "ui centered inline loader" > < / div > < / div > < br > ',
zeroRecords: 'No History Records Found For This Movie'
},
paging: true,
lengthChange: false,
pageLength: 5,
searching: true,
ordering: true,
processing: false,
serverSide: false,
ajax: {
url: '{{base_url}}movie_history/{{no}}'
},
drawCallback: function(settings) {
$('.inline.dropdown').dropdown();
$('.ui.accordion').accordion();
},
columns: [
{ data: 'action'},
{ data: 'language' },
{ data: 'provider' },
{ data: 'score'},
{ data: 'timestamp' }
]
} );
});
2018-12-09 20:23:51 +00:00
$('.manual_search').on('click', function(){
2018-09-10 21:10:33 +00:00
$("#movie_title_span").html($(this).data("movie_title"));
2019-10-01 03:29:08 +00:00
$("#movie_path_span").html($(this).attr("data-moviePath"));
$("#movie_scenename_span").html($(this).attr("data-sceneName"));
2018-09-10 21:10:33 +00:00
2018-12-09 20:23:51 +00:00
moviePath = $(this).attr("data-moviePath");
sceneName = $(this).attr("data-sceneName");
language = $(this).attr("data-language");
hi = $(this).attr("data-hi");
2019-03-31 03:09:52 +00:00
forced = $(this).attr("data-forced");
2018-12-09 20:23:51 +00:00
radarrId = $(this).attr("data-radarrId");
2019-03-20 00:16:19 +00:00
var languages = Array.from({{!subs_languages_list}});
var is_pb = languages.includes('pb');
var is_pt = languages.includes('pt');
2018-09-10 21:10:33 +00:00
2018-12-09 20:23:51 +00:00
const values = {
2018-09-10 21:10:33 +00:00
moviePath: moviePath,
sceneName: sceneName,
language: language,
hi: hi,
2019-03-31 03:09:52 +00:00
forced: forced,
2018-11-29 11:20:39 +00:00
radarrId: radarrId,
2019-10-27 03:17:14 +00:00
title: "{{!details['title'].replace("'", "\'")}}"
2018-09-10 21:10:33 +00:00
};
$('#search_result').DataTable( {
destroy: true,
language: {
loadingRecords: '< br > < div class = "ui active inverted dimmer" style = "width: 95%;" > < div class = "ui centered inline loader" > < / div > < / div > < br > ',
2019-09-17 14:57:34 +00:00
zeroRecords: 'No Subtitles Found For This Movie'
2018-09-10 21:10:33 +00:00
},
paging: true,
2019-01-28 02:19:56 +00:00
lengthChange: false,
pageLength: 5,
2018-09-10 21:10:33 +00:00
searching: false,
ordering: false,
processing: false,
serverSide: false,
2019-01-28 02:19:56 +00:00
ajax: {
2018-09-10 21:10:33 +00:00
url: '{{base_url}}manual_search_movie',
type: 'POST',
data: values
},
drawCallback: function(settings) {
$('.inline.dropdown').dropdown();
2019-10-01 03:29:08 +00:00
$('.ui.accordion').accordion();
2018-09-10 21:10:33 +00:00
},
columns: [
{ data: 'score',
render: function ( data, type, row ) {
return data +'%';
}
},
2019-03-20 00:16:19 +00:00
{ data: null,
render: function ( data, type, row ) {
if ( data.language === "pt" & & is_pb === true & & is_pt === false) {
return 'pb'
2019-04-04 11:11:53 +00:00
} else if ( data.language === "pt:forced" & & is_pb === true & & is_pt === false) {
return 'pb:forced'
2019-03-20 00:16:19 +00:00
} else {
return data.language
}
}
},
2018-09-10 21:10:33 +00:00
{ data: 'hearing_impaired' },
{ data: null,
render: function ( data, type, row ) {
return '< a href = "'+data.url+'" target = "_blank" > '+data.provider+'< / a > ';
}
},
{ data: null,
render: function ( data, type, row ) {
2018-12-09 20:23:51 +00:00
const array_matches = data.matches;
const array_dont_matches = data.dont_matches;
let i;
let text = '< div class = "ui inline dropdown" > < i class = "green check icon" > < / i > < div class = "text" > ';
2018-09-10 21:10:33 +00:00
text += array_matches.length;
2018-12-09 20:23:51 +00:00
text += '< / div > < i class = "dropdown icon" > < / i > < div class = "menu" > ';
2018-09-10 21:10:33 +00:00
for (i = 0; i < array_matches.length ; i + + ) {
text += '< div class = "criteria_matched disabled item" > ' + array_matches[i] + '< / div > ';
}
text += '< / div > < / div > ';
2018-12-09 20:23:51 +00:00
text += '< div class = "ui inline dropdown" > < i class = "red times icon" > < / i > < div class = "text" > ';
2018-09-10 21:10:33 +00:00
text += array_dont_matches.length;
2018-12-09 20:23:51 +00:00
text += '< / div > < i class = "dropdown icon" > < / i > < div class = "menu" > ';
2018-09-10 21:10:33 +00:00
for (i = 0; i < array_dont_matches.length ; i + + ) {
text += '< div class = "criteria_not_matched disabled item" > ' + array_dont_matches[i] + '< / div > ';
}
text += '< / div > < / div > ';
return text;
}
},
{ data: null,
render: function ( data, type, row ) {
2019-10-01 03:29:08 +00:00
const array_release_info = data.release_info;
let i;
let text = '< div class = "ui fluid accordion" > < div class = "title" > < i class = "dropdown icon" > < / i > ...< / div > < div class = "content" > ';
for (i = 0; i < array_release_info.length ; i + + ) {
text += '< div class = "ui tiny label" style = "margin-bottom: 2px;" > ' + array_release_info[i] + '< / div > ';
}
text += '< / div > < / div > ';
return text;
}
},
{ data: null,
render: function ( data, type, row ) {
2018-09-10 21:10:33 +00:00
return '< a href = "#" class = "ui tiny label" onclick = "manual_get(this, moviePath, sceneName, hi, radarrId)" data-subtitle = "'+data.subtitle+'" data-provider = "'+data.provider+'" data-language = "'+data.language+'" > < i class = "ui download icon" style = "margin-right:0px" > < / i > < / a > ';
}
}
]
} );
$('.search_dialog')
.modal({
2019-08-23 00:02:11 +00:00
centered: false,
autofocus: false
})
.modal('show')
;
});
$('.manual_upload').on('click', function() {
$("#movie_title_upload_span").html($(this).data("movie_title"));
moviePath = $(this).attr("data-moviePath");
sceneName = $(this).attr("data-sceneName");
language = $(this).attr("data-language");
radarrId = $(this).attr("data-radarrId");
2019-10-27 03:17:14 +00:00
var title = "{{!details['title'].replace("'", "\'")}}";
2019-08-23 00:02:11 +00:00
$('#language').dropdown();
$('#upload_moviePath').val(moviePath);
$('#upload_sceneName').val(sceneName);
$('#upload_radarrId').val(radarrId);
$('#upload_title').val(title);
$('.upload_dialog')
.modal({
centered: false,
autofocus: false
2018-09-10 21:10:33 +00:00
})
.modal('show')
;
2018-12-09 20:23:51 +00:00
});
2018-09-10 21:10:33 +00:00
2019-01-19 13:57:16 +00:00
function manual_get(button, episodePath, sceneName, hi){
2018-12-09 20:23:51 +00:00
const values = {
2018-09-10 21:10:33 +00:00
subtitle: $(button).attr("data-subtitle"),
provider: $(button).attr("data-provider"),
moviePath: moviePath,
sceneName: sceneName,
language: $(button).attr("data-language"),
hi: hi,
2018-11-29 13:40:31 +00:00
radarrId: radarrId,
2019-10-27 03:17:14 +00:00
title: "{{!details['title'].replace("'", "\\'")}}"
2018-09-10 21:10:33 +00:00
};
2019-09-17 14:57:34 +00:00
$('#loader_text').text("Downloading Subtitle File...");
2018-09-10 21:10:33 +00:00
$('#loader').addClass('active');
$('.search_dialog').modal('hide');
$.ajax({
url: "{{base_url}}manual_get_subtitle_movie",
type: "POST",
dataType: "json",
data: values
});
$(document).ajaxStop(function(){
window.location.reload();
});
2018-12-15 00:36:28 +00:00
}
2019-09-17 14:57:34 +00:00
< / script >