2019-12-27 22:15:56 +00:00
|
|
|
{% extends '_main.html' %}
|
2018-12-09 20:23:51 +00:00
|
|
|
|
2019-12-27 22:15:56 +00:00
|
|
|
{% block title %}Series - Bazarr{% endblock %}
|
2018-12-09 20:23:51 +00:00
|
|
|
|
2020-01-01 22:15:50 +00:00
|
|
|
{% block bcleft %}
|
|
|
|
<div class="d-flex">
|
|
|
|
<button class="btn btn-outline">
|
|
|
|
<i class="fas fa-sync align-top text-themecolor text-center" aria-hidden="true"></i>
|
|
|
|
<span class="align-bottom">Update</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{% endblock bcleft %}
|
2018-12-09 20:23:51 +00:00
|
|
|
|
2020-01-01 22:15:50 +00:00
|
|
|
{% block bcright %}
|
|
|
|
<div class="d-flex m-t-5 justify-content-end">
|
|
|
|
<h5 class="m-t-0 text-themecolor">Some page settings</h5>
|
|
|
|
</div>
|
|
|
|
{% endblock bcright %}
|
2018-12-09 20:23:51 +00:00
|
|
|
|
2019-12-28 16:43:48 +00:00
|
|
|
{% block body %}
|
2020-01-01 22:15:50 +00:00
|
|
|
<table id="series" class="table table-striped" style="width:100%">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Path Exist</th>
|
|
|
|
<th>Audio Language</th>
|
|
|
|
<th>Subtitles Languages</th>
|
|
|
|
<th>Hearing-Impaired</th>
|
|
|
|
<th>Forced</th>
|
|
|
|
<th>Subtitles</th>
|
2020-01-25 17:08:20 +00:00
|
|
|
<th></th>
|
2020-01-01 22:15:50 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
|
2020-01-25 17:08:20 +00:00
|
|
|
<div id="editModal" class="modal" tabindex="-1" role="dialog">
|
|
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title"><span id="edit_series_title_span"></span></h5><br>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<form class="form" name="edit_form" id="edit_form">
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-3 text-right">
|
|
|
|
Audio Language
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-sm-8 pl-sm-0">
|
|
|
|
<span id="edit_audio_language_span"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-3 text-right">
|
|
|
|
Subtitles Language(s)
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-sm-8 pl-sm-0">
|
|
|
|
<select class="selectpicker" id="edit_languages_select" name="languages" multiple data-live-search="true"></select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-3 text-right">
|
|
|
|
Hearing-Impaired
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-sm-1 pl-sm-0">
|
|
|
|
<label class="custom-control custom-checkbox">
|
|
|
|
<input type="checkbox" class="custom-control-input" id="hi_checkbox" name="hi">
|
|
|
|
<span class="custom-control-label" for="hi_checkbox"></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-3 text-right">
|
|
|
|
Forced
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-sm-8 pl-sm-0">
|
|
|
|
<select class="selectpicker" id="edit_forced_select" name="forced">
|
|
|
|
<option value="False">False</option>
|
|
|
|
<option value="True">True</option>
|
|
|
|
<option value="Both">Both</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<input type="hidden" id="edit_sonarrSeriesId" name="sonarrSeriesId" value="" />
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="submit" id="edit_save_button" class="btn btn-primary">Save</button>
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-12-27 22:15:56 +00:00
|
|
|
{% endblock body %}
|
2018-12-09 20:23:51 +00:00
|
|
|
|
2019-12-28 16:43:48 +00:00
|
|
|
{% block tail %}
|
2019-12-29 10:56:34 +00:00
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
2020-01-25 17:08:20 +00:00
|
|
|
getLanguages();
|
|
|
|
getEnabledLanguages();
|
|
|
|
|
|
|
|
events.on('event', function(event) {
|
|
|
|
var event_json = JSON.parse(event);
|
|
|
|
if (event_json.type === 'series' && event_json.action === 'insert') {
|
|
|
|
$.ajax({
|
|
|
|
url: "{{ url_for('api.series') }}?seriesid=" + event_json.series,
|
|
|
|
success: function (data) {
|
|
|
|
if (data.data.length) {
|
|
|
|
$('#series').DataTable().rows.add(data.data);
|
|
|
|
$('#series').DataTable().columns.adjust().draw(false);
|
|
|
|
$('[data-toggle="tooltip"]').tooltip({html: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else if (event_json.type === 'series' && event_json.action === 'update') {
|
|
|
|
var rowId = $('#series').DataTable().row('#row_' + event_json.series);
|
|
|
|
if (rowId.length) {
|
|
|
|
$.ajax({
|
|
|
|
url: "{{ url_for('api.series') }}?seriesid=" + event_json.series,
|
|
|
|
success: function (data) {
|
|
|
|
if (data.data.length) {
|
|
|
|
$('#series').DataTable().row(rowId).data(data.data[0]);
|
|
|
|
$('[data-toggle="tooltip"]').tooltip({html: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} else if (event_json.type === 'series' && event_json.action === 'delete') {
|
|
|
|
var rowId = $('#series').DataTable().row('#row_' + event_json.series);
|
|
|
|
if (rowId.length) {
|
|
|
|
$('#series').DataTable().row(rowId).remove();
|
|
|
|
$('#series').DataTable().columns.adjust().draw(false);
|
|
|
|
$('[data-toggle="tooltip"]').tooltip({html: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-12-29 10:56:34 +00:00
|
|
|
var table = $('#series').DataTable({
|
2019-12-29 16:29:07 +00:00
|
|
|
"processing": false,
|
2019-12-29 10:56:34 +00:00
|
|
|
"serverSide": true,
|
|
|
|
"searching": false,
|
|
|
|
"ordering": false,
|
2020-01-01 22:15:50 +00:00
|
|
|
"lengthChange": true,
|
2019-12-30 14:07:49 +00:00
|
|
|
"responsive": true,
|
2020-01-01 22:15:50 +00:00
|
|
|
"pageLength": {{ settings.general.page_size }},
|
2019-12-29 10:56:34 +00:00
|
|
|
"ajax": "{{ url_for('api.series') }}",
|
|
|
|
"columns": [
|
2020-01-02 06:16:00 +00:00
|
|
|
{"data": null,
|
|
|
|
"render": function (data) {
|
|
|
|
return '<a href="{{ url_for( 'episodes' ) }}' + data.sonarrSeriesId + '">' + data.title + '</a>'
|
|
|
|
}
|
|
|
|
},
|
2019-12-29 10:56:34 +00:00
|
|
|
{
|
2019-12-29 16:29:07 +00:00
|
|
|
"data": null,
|
|
|
|
"className": "dt-center",
|
2019-12-30 14:07:49 +00:00
|
|
|
"responsivePriority": 1,
|
2019-12-29 10:56:34 +00:00
|
|
|
"render": function (data) {
|
2019-12-29 16:29:07 +00:00
|
|
|
if (data.exist === false) {
|
2020-01-01 22:15:50 +00:00
|
|
|
return '<i class="fas fa-exclamation-triangle" data-toggle="tooltip" data-placement="right" title="This path doesn\'t seem to be valid: ' + data.mapped_path + '"></i>';
|
2019-12-29 16:29:07 +00:00
|
|
|
} else if (data.exist === true) {
|
2020-01-01 22:15:50 +00:00
|
|
|
return '<i class="fas fa-check" data-toggle="tooltip" data-placement="right" title="This path seems to be valid: ' + data.mapped_path + '"></i>';
|
2019-12-29 10:56:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{"data": "audio_language.name"},
|
|
|
|
{
|
|
|
|
"data": "languages",
|
|
|
|
"render": function (data) {
|
|
|
|
if (data !== 'None') {
|
|
|
|
var languages = '';
|
|
|
|
data.forEach(appendFunc);
|
|
|
|
return languages;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2019-12-29 04:39:13 +00:00
|
|
|
|
2019-12-29 10:56:34 +00:00
|
|
|
function appendFunc(value) {
|
|
|
|
languages = languages + '<span class="badge badge-secondary" data-toggle="tooltip" data-placement="right" title="' + value.name + '">' + value.code2 + '</span> ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-01-01 22:15:50 +00:00
|
|
|
{
|
|
|
|
"data": "hearing_impaired",
|
2020-01-22 04:54:32 +00:00
|
|
|
"className": "dt-center"
|
2019-12-29 16:29:07 +00:00
|
|
|
},
|
2020-01-01 22:15:50 +00:00
|
|
|
{
|
|
|
|
"data": "forced",
|
2020-01-22 04:54:32 +00:00
|
|
|
"className": "dt-center"
|
2019-12-29 16:29:07 +00:00
|
|
|
},
|
2019-12-29 10:56:34 +00:00
|
|
|
{
|
|
|
|
"data": null,
|
2019-12-30 14:07:49 +00:00
|
|
|
"responsivePriority": 2,
|
2019-12-29 10:56:34 +00:00
|
|
|
"render": function (data) {
|
|
|
|
var total = data.episodeFileCount;
|
|
|
|
var completed = data.episodeFileCount - data.episodeMissingCount;
|
|
|
|
var completed_style = '';
|
|
|
|
var completed_text = '';
|
2020-01-25 17:08:20 +00:00
|
|
|
if (data.episodeFileCount && data.languages !== 'None') {
|
2019-12-29 10:56:34 +00:00
|
|
|
completed_style = ' style="width: ' + completed / total * 100 + '%;"';
|
|
|
|
completed_text = completed + '/' + total;
|
|
|
|
}
|
|
|
|
return '<div class="progress"><div class="progress-bar" role="progressbar"' + completed_style + ' aria-valuenow="' + completed + '" aria-valuemin="0" aria-valuemax="' + total + '">' + completed_text + '</div></div>'
|
|
|
|
}
|
2020-01-25 17:08:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"data": null,
|
|
|
|
"render": function (data) {
|
|
|
|
return '<a href="" class="edit_button badge badge-secondary" data-sonarrSeriesId='+data.sonarrSeriesId+' data-audiolanguage="'+data.audio_language.name+'" data-title="'+data.title+'" data-languages='+JSON.stringify(data.languages)+' data-hi="'+data.hearing_impaired+'" data-forced="'+data.forced+'"><i class="fas fa-wrench"></i></a>';
|
|
|
|
}
|
2019-12-29 10:56:34 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
2020-01-25 17:08:20 +00:00
|
|
|
|
|
|
|
$('#series').on('click', '.edit_button', function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
$("#edit_series_title_span").html($(this).data('title'));
|
|
|
|
$("#edit_audio_language_span").html($(this).data('audiolanguage'));
|
|
|
|
$('#edit_sonarrSeriesId').val($(this).data('sonarrseriesid'));
|
|
|
|
|
|
|
|
|
|
|
|
$('#edit_languages_select').empty();
|
2020-01-27 05:07:35 +00:00
|
|
|
if ('{{settings.general.single_language}}' === 'True') {
|
|
|
|
$('#edit_languages_select').selectpicker({maxOptions: 1});
|
|
|
|
}
|
2020-01-25 17:08:20 +00:00
|
|
|
$.each(enabledLanguages, function (i, item) {
|
|
|
|
$('#edit_languages_select').append('<option value="'+item.code2+'">'+item.name+'</option>');
|
|
|
|
});
|
|
|
|
$("#edit_languages_select").selectpicker("refresh");
|
|
|
|
var selected_languages = Array();
|
|
|
|
$.each(Array.from($(this).data('languages')), function (i, item) {
|
|
|
|
selected_languages.push(item.code2);
|
|
|
|
});
|
|
|
|
$('#edit_languages_select').selectpicker('val', selected_languages);
|
|
|
|
$('#hi_checkbox').prop('checked', ($(this).data('hi') === 'True'));
|
|
|
|
$('#edit_forced_select').val($(this).data('forced')).change();
|
|
|
|
|
|
|
|
$('#editModal')
|
|
|
|
.modal({
|
|
|
|
focus: false
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#edit_form').on('submit', function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
var formdata = new FormData(document.getElementById("edit_form"));
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: "{{ url_for('api.series') }}?seriesid=" + $('#edit_sonarrSeriesId').val(),
|
|
|
|
data: formdata,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
type: 'POST',
|
|
|
|
success: function(){
|
|
|
|
//seriesDetailsRefresh();
|
|
|
|
$('#editModal').modal('hide');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function getLanguages() {
|
|
|
|
$.ajax({
|
|
|
|
url: "{{ url_for('api.languages') }}?enabled=false",
|
|
|
|
success:function(data) {
|
|
|
|
availableLanguages = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getEnabledLanguages() {
|
|
|
|
$.ajax({
|
|
|
|
url: "{{ url_for('api.languages') }}?enabled=true",
|
|
|
|
success:function(data) {
|
|
|
|
enabledLanguages = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-12-29 10:56:34 +00:00
|
|
|
</script>
|
2019-12-27 22:15:56 +00:00
|
|
|
{% endblock tail %}
|