2014-07-21 18:29:06 -07:00
|
|
|
|
(function (window, $) {
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
function loadAdvancedConfig(page, config) {
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-09-05 21:21:23 -07:00
|
|
|
|
$('#chkSaveMetadataHidden', page).checked(config.SaveMetadataHidden).checkboxradio("refresh");
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
$('#txtMetadataPath', page).val(config.MetadataPath || '');
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-08-14 06:24:30 -07:00
|
|
|
|
$('#chkPeopleActors', page).checked(config.PeopleMetadataOptions.DownloadActorMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleComposers', page).checked(config.PeopleMetadataOptions.DownloadComposerMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleDirectors', page).checked(config.PeopleMetadataOptions.DownloadDirectorMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleProducers', page).checked(config.PeopleMetadataOptions.DownloadProducerMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleWriters', page).checked(config.PeopleMetadataOptions.DownloadWriterMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleOthers', page).checked(config.PeopleMetadataOptions.DownloadOtherPeopleMetadata).checkboxradio("refresh");
|
|
|
|
|
$('#chkPeopleGuestStars', page).checked(config.PeopleMetadataOptions.DownloadGuestStarMetadata).checkboxradio("refresh");
|
|
|
|
|
|
2015-09-08 14:03:31 -07:00
|
|
|
|
$('.chkEnableVideoFrameAnalysis', page).checked(config.EnableVideoFrameByFrameAnalysis);
|
2015-01-12 00:01:19 -07:00
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-10-09 15:22:04 -07:00
|
|
|
|
function loadMetadataConfig(page, config) {
|
|
|
|
|
|
2015-09-20 10:56:26 -07:00
|
|
|
|
$('#selectDateAdded', page).val((config.UseFileCreationTimeForDateAdded ? '1' : '0'));
|
2015-01-17 22:45:10 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function loadTmdbConfig(page, config) {
|
|
|
|
|
|
|
|
|
|
$('#chkEnableTmdbUpdates', page).checked(config.EnableAutomaticUpdates).checkboxradio("refresh");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function loadTvdbConfig(page, config) {
|
|
|
|
|
|
|
|
|
|
$('#chkEnableTvdbUpdates', page).checked(config.EnableAutomaticUpdates).checkboxradio("refresh");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function loadFanartConfig(page, config) {
|
2014-10-09 15:22:04 -07:00
|
|
|
|
|
2015-01-17 22:45:10 -07:00
|
|
|
|
$('#chkEnableFanartUpdates', page).checked(config.EnableAutomaticUpdates).checkboxradio("refresh");
|
|
|
|
|
$('#txtFanartApiKey', page).val(config.UserApiKey || '');
|
2014-10-09 15:22:04 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
function loadChapters(page, config, providers) {
|
|
|
|
|
|
|
|
|
|
$('#chkChaptersMovies', page).checked(config.EnableMovieChapterImageExtraction).checkboxradio("refresh");
|
|
|
|
|
$('#chkChaptersEpisodes', page).checked(config.EnableEpisodeChapterImageExtraction).checkboxradio("refresh");
|
|
|
|
|
$('#chkChaptersOtherVideos', page).checked(config.EnableOtherVideoChapterImageExtraction).checkboxradio("refresh");
|
|
|
|
|
|
2014-09-08 18:15:31 -07:00
|
|
|
|
$('#chkExtractChaptersDuringLibraryScan', page).checked(config.ExtractDuringLibraryScan).checkboxradio("refresh");
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
function onSubmit() {
|
|
|
|
|
var form = this;
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
saveAdvancedConfig(form);
|
|
|
|
|
saveChapters(form);
|
|
|
|
|
saveMetadata(form);
|
|
|
|
|
saveTmdb(form);
|
|
|
|
|
saveTvdb(form);
|
|
|
|
|
saveFanart(form);
|
|
|
|
|
|
|
|
|
|
// Disable default form submission
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-01 07:01:59 -07:00
|
|
|
|
$(document).on('pageinit', "#advancedMetadataConfigurationPage", function () {
|
2014-07-19 21:46:29 -07:00
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
$('#btnSelectMetadataPath', page).on("click.selectDirectory", function () {
|
|
|
|
|
|
|
|
|
|
var picker = new DirectoryBrowser(page);
|
|
|
|
|
|
|
|
|
|
picker.show({
|
|
|
|
|
|
|
|
|
|
callback: function (path) {
|
|
|
|
|
|
|
|
|
|
if (path) {
|
|
|
|
|
$('#txtMetadataPath', page).val(path);
|
|
|
|
|
}
|
|
|
|
|
picker.close();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
header: Globalize.translate('HeaderSelectMetadataPath'),
|
|
|
|
|
|
|
|
|
|
instruction: Globalize.translate('HeaderSelectMetadataPathHelp')
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
$('.advancedMetadataConfigurationForm').on('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
|
|
|
|
|
|
|
2015-09-24 10:08:10 -07:00
|
|
|
|
}).on('pageshow', "#advancedMetadataConfigurationPage", function () {
|
2013-12-17 21:39:44 -07:00
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
var page = this;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
ApiClient.getServerConfiguration().done(function (configuration) {
|
|
|
|
|
|
|
|
|
|
loadAdvancedConfig(page, configuration);
|
|
|
|
|
|
|
|
|
|
});
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-10-09 15:22:04 -07:00
|
|
|
|
ApiClient.getNamedConfiguration("metadata").done(function (metadata) {
|
|
|
|
|
|
|
|
|
|
loadMetadataConfig(page, metadata);
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
2015-01-17 22:45:10 -07:00
|
|
|
|
ApiClient.getNamedConfiguration("fanart").done(function (metadata) {
|
|
|
|
|
|
|
|
|
|
loadFanartConfig(page, metadata);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("themoviedb").done(function (metadata) {
|
|
|
|
|
|
|
|
|
|
loadTmdbConfig(page, metadata);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("tvdb").done(function (metadata) {
|
|
|
|
|
|
|
|
|
|
loadTvdbConfig(page, metadata);
|
|
|
|
|
});
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
var promise1 = ApiClient.getNamedConfiguration("chapters");
|
|
|
|
|
var promise2 = ApiClient.getJSON(ApiClient.getUrl("Providers/Chapters"));
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
$.when(promise1, promise2).done(function (response1, response2) {
|
|
|
|
|
|
|
|
|
|
loadChapters(page, response1[0], response2[0]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2015-01-17 22:45:10 -07:00
|
|
|
|
function saveFanart(form) {
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("fanart").done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.EnableAutomaticUpdates = $('#chkEnableFanartUpdates', form).checked();
|
|
|
|
|
config.UserApiKey = $('#txtFanartApiKey', form).val();
|
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration("fanart", config);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function saveTvdb(form) {
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("tvdb").done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.EnableAutomaticUpdates = $('#chkEnableTvdbUpdates', form).checked();
|
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration("tvdb", config);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function saveTmdb(form) {
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("themoviedb").done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.EnableAutomaticUpdates = $('#chkEnableTmdbUpdates', form).checked();
|
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration("themoviedb", config);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
function saveAdvancedConfig(form) {
|
2013-04-16 21:58:32 -07:00
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
ApiClient.getServerConfiguration().done(function (config) {
|
|
|
|
|
|
2014-09-05 21:21:23 -07:00
|
|
|
|
config.SaveMetadataHidden = $('#chkSaveMetadataHidden', form).checked();
|
|
|
|
|
|
2015-09-08 14:03:31 -07:00
|
|
|
|
config.EnableVideoFrameByFrameAnalysis = $('.chkEnableVideoFrameAnalysis', form).checked();
|
2015-08-28 10:59:09 -07:00
|
|
|
|
|
2013-12-17 21:39:44 -07:00
|
|
|
|
config.EnableTvDbUpdates = $('#chkEnableTvdbUpdates', form).checked();
|
2015-01-17 22:45:10 -07:00
|
|
|
|
config.EnableTmdbUpdates = $('#chkEnableTmdbUpdates', form).checked();
|
2014-01-30 21:50:09 -07:00
|
|
|
|
config.EnableFanArtUpdates = $('#chkEnableFanartUpdates', form).checked();
|
2014-07-19 21:46:29 -07:00
|
|
|
|
config.MetadataPath = $('#txtMetadataPath', form).val();
|
2015-01-12 00:01:19 -07:00
|
|
|
|
config.FanartApiKey = $('#txtFanartApiKey', form).val();
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-08-14 06:24:30 -07:00
|
|
|
|
config.PeopleMetadataOptions.DownloadActorMetadata = $('#chkPeopleActors', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadComposerMetadata = $('#chkPeopleComposers', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadDirectorMetadata = $('#chkPeopleDirectors', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadGuestStarMetadata = $('#chkPeopleGuestStars', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadProducerMetadata = $('#chkPeopleProducers', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadWriterMetadata = $('#chkPeopleWriters', form).checked();
|
|
|
|
|
config.PeopleMetadataOptions.DownloadOtherPeopleMetadata = $('#chkPeopleOthers', form).checked();
|
|
|
|
|
|
2013-04-16 21:58:32 -07:00
|
|
|
|
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
});
|
2014-07-21 18:29:06 -07:00
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-10-09 15:22:04 -07:00
|
|
|
|
function saveMetadata(form) {
|
2015-05-19 12:15:40 -07:00
|
|
|
|
|
2014-10-09 15:22:04 -07:00
|
|
|
|
ApiClient.getNamedConfiguration("metadata").done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.UseFileCreationTimeForDateAdded = $('#selectDateAdded', form).val() == '1';
|
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration("metadata", config);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
function saveChapters(form) {
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration("chapters").done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.EnableMovieChapterImageExtraction = $('#chkChaptersMovies', form).checked();
|
|
|
|
|
config.EnableEpisodeChapterImageExtraction = $('#chkChaptersEpisodes', form).checked();
|
|
|
|
|
config.EnableOtherVideoChapterImageExtraction = $('#chkChaptersOtherVideos', form).checked();
|
|
|
|
|
|
2014-09-08 18:15:31 -07:00
|
|
|
|
config.ExtractDuringLibraryScan = $('#chkExtractChaptersDuringLibraryScan', form).checked();
|
2014-07-21 18:29:06 -07:00
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration("chapters", config);
|
|
|
|
|
});
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-21 18:29:06 -07:00
|
|
|
|
})(window, jQuery);
|