mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
(function ($, document, window) {
|
|
|
|
function loadPage(page, config) {
|
|
|
|
$('#txtPortNumber', page).val(config.HttpServerPortNumber);
|
|
$('#txtPublicPort', page).val(config.PublicPort);
|
|
$('#txtPublicHttpsPort', page).val(config.PublicHttpsPort);
|
|
|
|
$('#chkEnableHttps', page).checked(config.EnableHttps).checkboxradio('refresh');
|
|
$('#txtHttpsPort', page).val(config.HttpsPortNumber);
|
|
|
|
$('#txtDdns', page).val(config.WanDdns || '');
|
|
$('#txtCertificatePath', page).val(config.CertificatePath || '');
|
|
|
|
$('#chkEnableUpnp', page).checked(config.EnableUPnP).checkboxradio('refresh');
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
$(document).on('pageshow', "#dashboardHostingPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
ApiClient.getServerConfiguration().done(function (config) {
|
|
|
|
loadPage(page, config);
|
|
|
|
});
|
|
|
|
}).on('pageinit', "#dashboardHostingPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('#btnSelectCertPath', page).on("click.selectDirectory", function () {
|
|
|
|
var picker = new DirectoryBrowser(page);
|
|
|
|
picker.show({
|
|
|
|
includeFiles: true,
|
|
includeDirectories: true,
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
$('#txtCertificatePath', page).val(path);
|
|
}
|
|
picker.close();
|
|
},
|
|
|
|
header: Globalize.translate('HeaderSelectCertificatePath')
|
|
});
|
|
});
|
|
});
|
|
|
|
window.DashboardHostingPage = {
|
|
|
|
onSubmit: function () {
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var form = this;
|
|
|
|
ApiClient.getServerConfiguration().done(function (config) {
|
|
|
|
config.HttpServerPortNumber = $('#txtPortNumber', form).val();
|
|
config.PublicPort = $('#txtPublicPort', form).val();
|
|
config.PublicHttpsPort = $('#txtPublicHttpsPort', form).val();
|
|
config.EnableHttps = $('#chkEnableHttps', form).checked();
|
|
config.HttpsPortNumber = $('#txtHttpsPort', form).val();
|
|
config.EnableUPnP = $('#chkEnableUpnp', form).checked();
|
|
config.WanDdns = $('#txtDdns', form).val();
|
|
config.CertificatePath = $('#txtCertificatePath', form).val();
|
|
|
|
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
|
|
};
|
|
|
|
})(jQuery, document, window);
|