mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
184 lines
6.0 KiB
JavaScript
184 lines
6.0 KiB
JavaScript
define(['jQuery'], function ($) {
|
|
|
|
function loadPage(page, config) {
|
|
|
|
$('.liveTvSettingsForm', page).show();
|
|
$('.noLiveTvServices', page).hide();
|
|
|
|
$('#selectGuideDays', page).val(config.GuideDays || '');
|
|
|
|
$('#chkMovies', page).checked(config.EnableMovieProviders);
|
|
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
|
|
$('#chkConvertRecordings', page).checked(config.EnableRecordingEncoding);
|
|
$('#chkPreserveAudio', page).checked(config.EnableOriginalAudioWithEncodedRecordings || false);
|
|
|
|
$('#txtPrePaddingMinutes', page).val(config.PrePaddingSeconds / 60);
|
|
$('#txtPostPaddingMinutes', page).val(config.PostPaddingSeconds / 60);
|
|
|
|
page.querySelector('#txtRecordingPath').value = config.RecordingPath || '';
|
|
page.querySelector('#txtMovieRecordingPath').value = config.MovieRecordingPath || '';
|
|
page.querySelector('#txtSeriesRecordingPath').value = config.SeriesRecordingPath || '';
|
|
|
|
page.querySelector('#chkEnableRecordingSubfolders').checked = config.EnableRecordingSubfolders || false;
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function onSubmit() {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var form = this;
|
|
|
|
ApiClient.getNamedConfiguration("livetv").then(function (config) {
|
|
|
|
config.GuideDays = $('#selectGuideDays', form).val() || null;
|
|
config.EnableMovieProviders = $('#chkMovies', form).checked();
|
|
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
|
|
config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked();
|
|
config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked();
|
|
|
|
var recordingPath = form.querySelector('#txtRecordingPath').value || null;
|
|
var movieRecordingPath = form.querySelector('#txtMovieRecordingPath').value || null;
|
|
var seriesRecordingPath = form.querySelector('#txtSeriesRecordingPath').value || null;
|
|
|
|
var recordingPathChanged = recordingPath != config.RecordingPath ||
|
|
movieRecordingPath != config.MovieRecordingPath ||
|
|
seriesRecordingPath != config.SeriesRecordingPath;
|
|
|
|
config.RecordingPath = recordingPath;
|
|
config.MovieRecordingPath = movieRecordingPath;
|
|
config.SeriesRecordingPath = seriesRecordingPath;
|
|
|
|
config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60;
|
|
config.PostPaddingSeconds = $('#txtPostPaddingMinutes', form).val() * 60;
|
|
config.EnableRecordingSubfolders = form.querySelector('#chkEnableRecordingSubfolders').checked;
|
|
|
|
ApiClient.updateNamedConfiguration("livetv", config).then(function () {
|
|
Dashboard.processServerConfigurationUpdateResult();
|
|
|
|
showSaveMessage(recordingPathChanged);
|
|
});
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
|
|
function showSaveMessage(recordingPathChanged) {
|
|
|
|
var msg = '';
|
|
|
|
if (recordingPathChanged) {
|
|
msg += Globalize.translate('RecordingPathChangeMessage');
|
|
}
|
|
|
|
if (msg) {
|
|
require(['alert'], function (alert) {
|
|
alert(msg);
|
|
});
|
|
}
|
|
}
|
|
|
|
function getTabs() {
|
|
return [
|
|
{
|
|
href: 'livetvstatus.html',
|
|
name: Globalize.translate('TabDevices')
|
|
},
|
|
{
|
|
href: 'livetvsettings.html',
|
|
name: Globalize.translate('TabSettings')
|
|
},
|
|
{
|
|
href: 'appservices.html?context=livetv',
|
|
name: Globalize.translate('TabServices')
|
|
}];
|
|
}
|
|
|
|
$(document).on('pageinit', "#liveTvSettingsPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('.liveTvSettingsForm').off('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
$('#btnSelectRecordingPath', page).on("click.selectDirectory", function () {
|
|
|
|
require(['directorybrowser'], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
$('#txtRecordingPath', page).val(path);
|
|
}
|
|
picker.close();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
$('#btnSelectMovieRecordingPath', page).on("click.selectDirectory", function () {
|
|
|
|
require(['directorybrowser'], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
$('#txtMovieRecordingPath', page).val(path);
|
|
}
|
|
picker.close();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
$('#btnSelectSeriesRecordingPath', page).on("click.selectDirectory", function () {
|
|
|
|
require(['directorybrowser'], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
$('#txtSeriesRecordingPath', page).val(path);
|
|
}
|
|
picker.close();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
}).on('pageshow', "#liveTvSettingsPage", function () {
|
|
|
|
LibraryMenu.setTabs('livetvadmin', 1, getTabs);
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
ApiClient.getNamedConfiguration("livetv").then(function (config) {
|
|
|
|
loadPage(page, config);
|
|
|
|
});
|
|
|
|
if (AppInfo.enableSupporterMembership) {
|
|
page.querySelector('.btnSupporterForConverting a').href = 'https://emby.media/premiere';
|
|
} else {
|
|
page.querySelector('.btnSupporterForConverting a').href = '#';
|
|
}
|
|
|
|
});
|
|
|
|
});
|