2018-12-09 20:23:51 +00:00
|
|
|
<html lang="en">
|
2018-05-02 10:25:42 +00:00
|
|
|
<head>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<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>
|
|
|
|
<link rel="stylesheet" href="{{base_url}}static/semantic/semantic.min.css">
|
|
|
|
|
|
|
|
<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">
|
|
|
|
|
|
|
|
<title>Wanted - Bazarr</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #272727;
|
|
|
|
}
|
|
|
|
#tablehistory {
|
|
|
|
padding-top: 2em;
|
|
|
|
}
|
|
|
|
.fast.backward, .backward, .forward, .fast.forward {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.fast.backward, .backward, .forward, .fast.forward { pointer-events: auto; }
|
|
|
|
.fast.backward.disabled, .backward.disabled, .forward.disabled, .fast.forward.disabled { pointer-events: none; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
%import ast
|
2018-07-30 00:42:24 +00:00
|
|
|
%from get_languages import *
|
2018-05-02 10:25:42 +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-05-02 10:25:42 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui right floated basic buttons">
|
2018-05-27 03:01:57 +00:00
|
|
|
<button id="wanted_search_missing_subtitles_movies" class="ui button"><i class="download icon"></i>Download wanted subtitles</button>
|
2018-05-02 10:25:42 +00:00
|
|
|
</div>
|
|
|
|
<table id="tablehistory" class="ui very basic selectable table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Movies</th>
|
|
|
|
<th>Missing subtitles</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
%import time
|
|
|
|
%import pretty
|
|
|
|
%if len(rows) == 0:
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">No missing movie subtitles.</td>
|
|
|
|
</tr>
|
|
|
|
%end
|
2018-11-08 13:03:34 +00:00
|
|
|
%for row in rows:
|
2018-05-02 10:25:42 +00:00
|
|
|
<tr class="selectable">
|
|
|
|
<td><a href="{{base_url}}movie/{{row[2]}}">{{row[0]}}</a></td>
|
|
|
|
<td>
|
2018-11-08 13:03:34 +00:00
|
|
|
<%
|
|
|
|
missing_languages = ast.literal_eval(row[1])
|
|
|
|
if missing_languages is not None:
|
|
|
|
from get_subtitle import search_active
|
2018-12-15 00:36:28 +00:00
|
|
|
from config import settings
|
2018-11-08 13:03:34 +00:00
|
|
|
for language in missing_languages:
|
2018-12-27 19:19:59 +00:00
|
|
|
if row[6] is not None and settings.general.getboolean('adaptive_searching') and language in row[6]:
|
2018-11-08 13:03:34 +00:00
|
|
|
for lang in ast.literal_eval(row[6]):
|
|
|
|
if language in lang:
|
|
|
|
active = search_active(lang[1])
|
|
|
|
if active:
|
|
|
|
%>
|
2019-02-04 15:05:38 +00:00
|
|
|
<a data-moviePath="{{row[3]}}" data-sceneName="{{row[5]}}" data-language="{{alpha3_from_alpha2(str(language))}}" data-hi="{{row[4]}}" data-radarrId={{row[2]}} data-title="{{row[0].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
2018-11-08 13:03:34 +00:00
|
|
|
{{language}}
|
2018-12-09 20:23:51 +00:00
|
|
|
<i style="margin-left:3px; margin-right:0" class="search icon"></i>
|
2018-11-08 13:03:34 +00:00
|
|
|
</a>
|
|
|
|
%else:
|
2019-02-04 15:05:38 +00:00
|
|
|
<a data-tooltip="Automatic searching delayed (adaptive search)" data-position="top right" data-inverted="" data-moviePath="{{row[3]}}" data-sceneName="{{row[5]}}" data-language="{{alpha3_from_alpha2(str(language))}}" data-hi="{{row[4]}}" data-radarrId={{row[2]}} data-title="{{row[0].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
2018-11-08 13:03:34 +00:00
|
|
|
{{language}}
|
2018-12-09 20:23:51 +00:00
|
|
|
<i style="margin-left:3px; margin-right:0" class="search red icon"></i>
|
2018-11-08 13:03:34 +00:00
|
|
|
</a>
|
|
|
|
%end
|
|
|
|
%end
|
|
|
|
%end
|
|
|
|
%else:
|
2019-01-28 02:35:44 +00:00
|
|
|
<a data-moviePath="{{row[3]}}" data-sceneName="{{row[5]}}" data-language="{{alpha3_from_alpha2(str(language))}}" data-hi="{{row[4]}}" data-radarrId="{{row[2]}}" data-title="{{row[0].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
2018-11-08 13:03:34 +00:00
|
|
|
{{language}}
|
2018-12-09 20:23:51 +00:00
|
|
|
<i style="margin-left:3px; margin-right:0" class="search icon"></i>
|
2018-11-08 13:03:34 +00:00
|
|
|
</a>
|
|
|
|
%end
|
|
|
|
|
2018-05-02 10:25:42 +00:00
|
|
|
%end
|
|
|
|
%end
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
%end
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-07-13 12:15:44 +00:00
|
|
|
%try: page_size
|
|
|
|
%except NameError: page_size = "25"
|
2018-07-13 12:21:45 +00:00
|
|
|
%end
|
2018-07-11 12:50:11 +00:00
|
|
|
%if page_size != -1:
|
2018-05-02 10:25:42 +00:00
|
|
|
<div class="ui grid">
|
|
|
|
<div class="three column row">
|
|
|
|
<div class="column"></div>
|
|
|
|
<div class="center aligned column">
|
|
|
|
<i class="\\
|
|
|
|
%if page == "1":
|
|
|
|
disabled\\
|
|
|
|
%end
|
|
|
|
fast backward icon"></i>
|
|
|
|
<i class="\\
|
|
|
|
%if page == "1":
|
|
|
|
disabled\\
|
|
|
|
%end
|
|
|
|
backward icon"></i>
|
|
|
|
{{page}} / {{max_page}}
|
|
|
|
<i class="\\
|
2019-01-28 02:35:44 +00:00
|
|
|
%if int(page) >= int(max_page):
|
2018-05-02 10:25:42 +00:00
|
|
|
disabled\\
|
|
|
|
%end
|
|
|
|
forward icon"></i>
|
|
|
|
<i class="\\
|
2019-01-28 02:35:44 +00:00
|
|
|
%if int(page) >= int(max_page):
|
2018-05-02 10:25:42 +00:00
|
|
|
disabled\\
|
|
|
|
%end
|
|
|
|
fast forward icon"></i>
|
|
|
|
</div>
|
|
|
|
<div class="right floated right aligned column">Total records: {{missing_count}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-11 12:50:11 +00:00
|
|
|
%end
|
2018-05-02 10:25:42 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-02-25 04:05:58 +00:00
|
|
|
$('a, button:not(#wanted_search_missing_subtitles_movies)').on('click', function(){
|
2018-05-02 10:25:42 +00:00
|
|
|
$('#loader').addClass('active');
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
2018-05-02 10:25:42 +00:00
|
|
|
|
2018-12-09 20:23:51 +00:00
|
|
|
$('.fast.backward').on('click', function(){
|
2018-05-02 10:25:42 +00:00
|
|
|
loadURLmovies(1);
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
|
|
|
$('.backward:not(.fast)').on('click', function(){
|
2018-05-02 10:25:42 +00:00
|
|
|
loadURLmovies({{int(page)-1}});
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
|
|
|
$('.forward:not(.fast)').on('click', function(){
|
2018-05-02 10:25:42 +00:00
|
|
|
loadURLmovies({{int(page)+1}});
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
|
|
|
$('.fast.forward').on('click', function(){
|
2018-05-02 10:25:42 +00:00
|
|
|
loadURLmovies({{int(max_page)}});
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
2018-05-02 10:25:42 +00:00
|
|
|
|
2018-12-09 20:23:51 +00:00
|
|
|
$('#wanted_search_missing_subtitles_movies').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}}wanted_search_missing_subtitles'
|
|
|
|
})
|
2018-12-09 20:23:51 +00:00
|
|
|
});
|
2018-05-02 10:25:42 +00:00
|
|
|
|
2018-12-09 20:23:51 +00:00
|
|
|
$('.get_subtitle').on('click', function(){
|
|
|
|
const values = {
|
2018-05-02 10:25:42 +00:00
|
|
|
moviePath: $(this).attr("data-moviePath"),
|
|
|
|
sceneName: $(this).attr("data-sceneName"),
|
|
|
|
language: $(this).attr("data-language"),
|
|
|
|
hi: $(this).attr("data-hi"),
|
2019-01-19 13:57:16 +00:00
|
|
|
radarrId: $(this).attr("data-radarrId"),
|
2019-01-28 02:35:44 +00:00
|
|
|
title: $(this).attr("data-title")
|
2018-05-02 10:25:42 +00:00
|
|
|
};
|
2018-09-10 21:10:33 +00:00
|
|
|
$('#loader_text').text("Downloading subtitles...");
|
|
|
|
$('#loader').addClass('active');
|
2018-05-02 10:25:42 +00:00
|
|
|
$.ajax({
|
|
|
|
url: "{{base_url}}get_subtitle_movie",
|
|
|
|
type: "POST",
|
|
|
|
dataType: "json",
|
|
|
|
data: values
|
|
|
|
}).always(function () {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
</script>
|