2019-10-09 19:15:06 +03:00
|
|
|
define(["jQuery", "loading", "emby-checkbox", "emby-input", "listViewStyle", "paper-icon-button-light"], function ($, loading) {
|
2019-01-10 21:34:44 +01:00
|
|
|
"use strict";
|
2018-10-23 01:05:09 +03:00
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
return function (page, providerId, options) {
|
|
|
|
function getListingProvider(config, id) {
|
|
|
|
if (config && id) {
|
|
|
|
var result = config.ListingProviders.filter(function (provider) {
|
|
|
|
return provider.Id === id;
|
|
|
|
})[0];
|
2018-10-23 01:05:09 +03:00
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
if (result) {
|
|
|
|
return Promise.resolve(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return getListingProvider();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ApiClient.getJSON(ApiClient.getUrl("LiveTv/ListingProviders/Default"));
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
function reload() {
|
|
|
|
loading.show();
|
|
|
|
ApiClient.getNamedConfiguration("livetv").then(function (config) {
|
|
|
|
getListingProvider(config, providerId).then(function (info) {
|
|
|
|
page.querySelector(".txtPath").value = info.Path || "";
|
|
|
|
page.querySelector(".txtKids").value = (info.KidsCategories || []).join("|");
|
|
|
|
page.querySelector(".txtNews").value = (info.NewsCategories || []).join("|");
|
|
|
|
page.querySelector(".txtSports").value = (info.SportsCategories || []).join("|");
|
|
|
|
page.querySelector(".txtMovies").value = (info.MovieCategories || []).join("|");
|
|
|
|
page.querySelector(".txtMoviePrefix").value = info.MoviePrefix || "";
|
|
|
|
page.querySelector(".txtUserAgent").value = info.UserAgent || "";
|
|
|
|
page.querySelector(".chkAllTuners").checked = info.EnableAllTuners;
|
|
|
|
|
|
|
|
if (page.querySelector(".chkAllTuners").checked) {
|
|
|
|
page.querySelector(".selectTunersSection").classList.add("hide");
|
|
|
|
} else {
|
|
|
|
page.querySelector(".selectTunersSection").classList.remove("hide");
|
|
|
|
}
|
|
|
|
|
|
|
|
refreshTunerDevices(page, info, config.TunerHosts);
|
|
|
|
loading.hide();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCategories(txtInput) {
|
|
|
|
var value = txtInput.value;
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
return value.split("|");
|
2018-10-23 01:05:09 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
return [];
|
|
|
|
}
|
2019-01-03 22:20:52 +00:00
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
function submitListingsForm() {
|
|
|
|
loading.show();
|
|
|
|
var id = providerId;
|
|
|
|
ApiClient.getNamedConfiguration("livetv").then(function (config) {
|
|
|
|
var info = config.ListingProviders.filter(function (provider) {
|
|
|
|
return provider.Id === id;
|
|
|
|
})[0] || {};
|
|
|
|
info.Type = "xmltv";
|
|
|
|
info.Path = page.querySelector(".txtPath").value;
|
|
|
|
info.MoviePrefix = page.querySelector(".txtMoviePrefix").value || null;
|
|
|
|
info.UserAgent = page.querySelector(".txtUserAgent").value || null;
|
|
|
|
info.MovieCategories = getCategories(page.querySelector(".txtMovies"));
|
|
|
|
info.KidsCategories = getCategories(page.querySelector(".txtKids"));
|
|
|
|
info.NewsCategories = getCategories(page.querySelector(".txtNews"));
|
|
|
|
info.SportsCategories = getCategories(page.querySelector(".txtSports"));
|
|
|
|
info.EnableAllTuners = page.querySelector(".chkAllTuners").checked;
|
2019-10-09 19:15:06 +03:00
|
|
|
info.EnabledTuners = info.EnableAllTuners ? [] : $(".chkTuner", page).get().filter(function (tuner) {
|
2019-01-10 21:34:44 +01:00
|
|
|
return tuner.checked;
|
|
|
|
}).map(function (tuner) {
|
|
|
|
return tuner.getAttribute("data-id");
|
|
|
|
});
|
|
|
|
ApiClient.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: ApiClient.getUrl("LiveTv/ListingProviders", {
|
|
|
|
ValidateListings: true
|
|
|
|
}),
|
|
|
|
data: JSON.stringify(info),
|
|
|
|
contentType: "application/json"
|
|
|
|
}).then(function (result) {
|
|
|
|
loading.hide();
|
|
|
|
|
|
|
|
if (false !== options.showConfirmation) {
|
|
|
|
Dashboard.processServerConfigurationUpdateResult();
|
|
|
|
}
|
|
|
|
|
|
|
|
Events.trigger(self, "submitted");
|
|
|
|
}, function () {
|
|
|
|
loading.hide();
|
|
|
|
Dashboard.alert({
|
|
|
|
message: Globalize.translate("ErrorAddingXmlTvFile")
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2019-01-03 22:20:52 +00:00
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
function getTunerName(providerId) {
|
|
|
|
switch (providerId = providerId.toLowerCase()) {
|
|
|
|
case "m3u":
|
|
|
|
return "M3U Playlist";
|
|
|
|
case "hdhomerun":
|
|
|
|
return "HDHomerun";
|
|
|
|
case "satip":
|
|
|
|
return "DVB";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
2019-01-03 22:20:52 +00:00
|
|
|
|
2019-01-10 21:34:44 +01:00
|
|
|
function refreshTunerDevices(page, providerInfo, devices) {
|
|
|
|
var html = "";
|
|
|
|
|
2019-01-11 15:42:46 +01:00
|
|
|
for (var i = 0, length = devices.length; i < length; i++) {
|
2019-01-10 21:34:44 +01:00
|
|
|
var device = devices[i];
|
|
|
|
html += '<div class="listItem">';
|
|
|
|
var enabledTuners = providerInfo.EnabledTuners || [];
|
|
|
|
var isChecked = providerInfo.EnableAllTuners || -1 !== enabledTuners.indexOf(device.Id);
|
|
|
|
var checkedAttribute = isChecked ? " checked" : "";
|
|
|
|
html += '<label class="listItemCheckboxContainer"><input type="checkbox" is="emby-checkbox" class="chkTuner" data-id="' + device.Id + '" ' + checkedAttribute + "><span></span></label>";
|
|
|
|
html += '<div class="listItemBody two-line">';
|
|
|
|
html += '<div class="listItemBodyText">';
|
|
|
|
html += device.FriendlyName || getTunerName(device.Type);
|
|
|
|
html += "</div>";
|
|
|
|
html += '<div class="listItemBodyText secondary">';
|
|
|
|
html += device.Url;
|
|
|
|
html += "</div>";
|
|
|
|
html += "</div>";
|
|
|
|
html += "</div>";
|
|
|
|
}
|
|
|
|
|
|
|
|
page.querySelector(".tunerList").innerHTML = html;
|
|
|
|
}
|
|
|
|
|
2019-10-09 19:15:06 +03:00
|
|
|
function onSelectPathClick(e) {
|
|
|
|
var page = $(e.target).parents(".xmltvForm")[0];
|
2019-01-10 21:34:44 +01:00
|
|
|
|
|
|
|
require(["directorybrowser"], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
includeFiles: true,
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
|
|
var txtPath = page.querySelector(".txtPath");
|
|
|
|
txtPath.value = path;
|
|
|
|
txtPath.focus();
|
|
|
|
}
|
|
|
|
picker.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2019-01-03 22:20:52 +00:00
|
|
|
}
|
2019-01-10 21:34:44 +01:00
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
self.submit = function () {
|
|
|
|
page.querySelector(".btnSubmitListings").click();
|
|
|
|
};
|
|
|
|
|
|
|
|
self.init = function () {
|
|
|
|
options = options || {};
|
|
|
|
|
2020-03-19 14:37:48 -04:00
|
|
|
// Only hide the button if explicitly set to false; default to showing if undefined or null
|
|
|
|
// FIXME: rename this option to clarify logic
|
|
|
|
if (options.showCancelButton === false) {
|
2019-01-10 21:34:44 +01:00
|
|
|
page.querySelector(".btnCancel").classList.add("hide");
|
2020-03-19 14:37:48 -04:00
|
|
|
} else {
|
|
|
|
page.querySelector(".btnCancel").classList.remove("hide");
|
2019-01-10 21:34:44 +01:00
|
|
|
}
|
|
|
|
|
2020-03-19 14:37:48 -04:00
|
|
|
// Only hide the button if explicitly set to false; default to showing if undefined or null
|
|
|
|
// FIXME: rename this option to clarify logic
|
|
|
|
if (options.showSubmitButton === false) {
|
2019-01-10 21:34:44 +01:00
|
|
|
page.querySelector(".btnSubmitListings").classList.add("hide");
|
2020-03-19 14:37:48 -04:00
|
|
|
} else {
|
|
|
|
page.querySelector(".btnSubmitListings").classList.remove("hide");
|
2019-01-10 21:34:44 +01:00
|
|
|
}
|
|
|
|
|
2019-10-09 19:15:06 +03:00
|
|
|
$("form", page).on("submit", function () {
|
2019-01-10 21:34:44 +01:00
|
|
|
submitListingsForm();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
page.querySelector("#btnSelectPath").addEventListener("click", onSelectPathClick);
|
|
|
|
page.querySelector(".chkAllTuners").addEventListener("change", function (evt) {
|
|
|
|
if (evt.target.checked) {
|
|
|
|
page.querySelector(".selectTunersSection").classList.add("hide");
|
|
|
|
} else {
|
|
|
|
page.querySelector(".selectTunersSection").classList.remove("hide");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
reload();
|
|
|
|
};
|
2019-01-03 22:20:52 +00:00
|
|
|
};
|
2019-01-03 21:47:58 +00:00
|
|
|
});
|