jellyfin-web/dashboard-ui/scripts/site.js

3347 lines
104 KiB
JavaScript
Raw Normal View History

2014-07-16 20:17:14 -07:00
(function () {
2015-12-14 08:43:03 -07:00
function onOneDocumentClick() {
2014-07-12 21:55:56 -07:00
2015-12-14 08:43:03 -07:00
document.removeEventListener('click', onOneDocumentClick);
2014-07-12 21:55:56 -07:00
2015-12-14 08:43:03 -07:00
if (window.Notification) {
Notification.requestPermission();
}
2014-10-28 16:17:55 -07:00
}
2015-12-14 08:43:03 -07:00
document.addEventListener('click', onOneDocumentClick);
2015-12-14 08:43:03 -07:00
})();
var Dashboard = {
2015-07-27 11:18:10 -07:00
2015-05-05 08:24:47 -07:00
isConnectMode: function () {
2015-05-28 16:37:43 -07:00
if (AppInfo.isNativeApp) {
2015-05-05 08:24:47 -07:00
return true;
}
2015-12-14 08:43:03 -07:00
var url = window.location.href.toLowerCase();
2015-05-05 08:24:47 -07:00
return url.indexOf('mediabrowser.tv') != -1 ||
2015-08-30 10:26:30 -07:00
url.indexOf('emby.media') != -1;
2015-05-05 08:24:47 -07:00
},
2015-05-01 11:37:01 -07:00
isRunningInCordova: function () {
2015-05-02 09:34:27 -07:00
return window.appMode == 'cordova';
2015-05-01 11:37:01 -07:00
},
2014-10-28 16:17:55 -07:00
onRequestFail: function (e, data) {
if (data.status == 401) {
var url = data.url.toLowerCase();
2015-09-22 21:00:30 -07:00
// Don't bounce to login on failures to contact our external servers
2015-10-10 17:39:30 -07:00
if (url.indexOf('emby.media') != -1 || url.indexOf('mb3admin.com') != -1) {
2015-09-22 21:00:30 -07:00
Dashboard.hideLoadingMsg();
return;
}
2015-10-01 23:14:04 -07:00
// Don't bounce if the failure is in a sync service
if (url.indexOf('/sync') != -1) {
Dashboard.hideLoadingMsg();
return;
}
2014-10-28 16:17:55 -07:00
// Bounce to the login screen, but not if a password entry fails, obviously
if (url.indexOf('/password') == -1 &&
url.indexOf('/authenticate') == -1 &&
!$($.mobile.activePage).is('.standalonePage')) {
if (data.errorCode == "ParentalControl") {
Dashboard.alert({
message: Globalize.translate('MessageLoggedOutParentalControl'),
2014-10-29 15:01:02 -07:00
callback: function () {
2014-10-28 16:17:55 -07:00
Dashboard.logout(false);
}
});
} else {
Dashboard.logout(false);
}
}
return;
2015-07-23 06:23:22 -07:00
Dashboard.hideLoadingMsg();
2014-10-28 16:17:55 -07:00
}
},
2015-09-19 19:06:56 -07:00
onPopupOpen: function () {
2015-09-17 14:26:06 -07:00
Dashboard.popupCount = (Dashboard.popupCount || 0) + 1;
document.body.classList.add('bodyWithPopupOpen');
},
2015-09-19 19:06:56 -07:00
onPopupClose: function () {
2015-09-17 14:26:06 -07:00
Dashboard.popupCount = (Dashboard.popupCount || 1) - 1;
if (!Dashboard.popupCount) {
document.body.classList.remove('bodyWithPopupOpen');
}
},
getCurrentUser: function () {
2015-12-14 08:43:03 -07:00
return window.ApiClient.getCurrentUser();
},
2015-05-20 09:28:55 -07:00
serverAddress: function () {
2014-07-07 18:41:03 -07:00
2015-05-20 09:28:55 -07:00
if (Dashboard.isConnectMode()) {
var apiClient = window.ApiClient;
2014-10-21 21:42:26 -07:00
2015-05-20 09:28:55 -07:00
if (apiClient) {
return apiClient.serverAddress();
}
2014-10-21 21:42:26 -07:00
2015-05-20 09:28:55 -07:00
return null;
2014-10-15 20:26:39 -07:00
}
2015-05-20 09:28:55 -07:00
// Try to get the server address from the browser url
// This will preserve protocol, hostname, port and subdirectory
2015-12-14 08:43:03 -07:00
var urlLower = window.location.href.toLowerCase();
var index = urlLower.lastIndexOf('/web');
2015-02-10 20:28:34 -07:00
2015-05-20 09:28:55 -07:00
if (index != -1) {
return urlLower.substring(0, index);
}
2015-02-10 20:28:34 -07:00
2015-05-20 09:28:55 -07:00
// If the above failed, just piece it together manually
var loc = window.location;
2014-10-15 20:26:39 -07:00
2015-05-20 09:28:55 -07:00
var address = loc.protocol + '//' + loc.hostname;
2014-10-15 20:26:39 -07:00
2015-05-20 09:28:55 -07:00
if (loc.port) {
address += ':' + loc.port;
2014-10-15 20:26:39 -07:00
}
return address;
},
getCurrentUserId: function () {
2015-05-20 09:28:55 -07:00
var apiClient = window.ApiClient;
2014-03-15 13:08:06 -07:00
2015-05-20 09:28:55 -07:00
if (apiClient) {
return apiClient.getCurrentUserId();
}
2015-05-20 09:28:55 -07:00
return null;
},
2015-05-20 09:28:55 -07:00
onServerChanged: function (userId, accessToken, apiClient) {
2015-05-20 09:28:55 -07:00
apiClient = apiClient || window.ApiClient;
2014-02-08 13:02:35 -07:00
2015-05-20 09:28:55 -07:00
window.ApiClient = apiClient;
},
2015-05-21 13:53:14 -07:00
logout: function (logoutWithServer) {
2015-05-17 18:27:48 -07:00
function onLogoutDone() {
2015-05-19 12:15:40 -07:00
var loginPage;
2014-10-21 05:42:02 -07:00
2015-05-18 18:46:31 -07:00
if (Dashboard.isConnectMode()) {
loginPage = 'connectlogin.html';
window.ApiClient = null;
} else {
2015-05-19 12:15:40 -07:00
loginPage = 'login.html';
2015-05-18 18:46:31 -07:00
}
2015-05-21 13:53:14 -07:00
Dashboard.navigate(loginPage);
2015-05-17 18:27:48 -07:00
}
2014-07-12 21:55:56 -07:00
2015-05-17 18:27:48 -07:00
if (logoutWithServer === false) {
onLogoutDone();
} else {
2015-12-14 08:43:03 -07:00
ConnectionManager.logout().then(onLogoutDone);
2014-07-12 21:55:56 -07:00
}
},
updateSystemInfo: function (info) {
Dashboard.lastSystemInfo = info;
2014-07-07 18:41:03 -07:00
if (!Dashboard.initialServerVersion) {
Dashboard.initialServerVersion = info.Version;
}
if (info.HasPendingRestart) {
Dashboard.hideDashboardVersionWarning();
2015-12-14 08:43:03 -07:00
Dashboard.getCurrentUser().then(function (currentUser) {
2014-12-19 23:06:27 -07:00
if (currentUser.Policy.IsAdministrator) {
2013-10-07 07:38:31 -07:00
Dashboard.showServerRestartWarning(info);
}
});
} else {
Dashboard.hideServerRestartWarning();
if (Dashboard.initialServerVersion != info.Version) {
2015-01-18 22:41:56 -07:00
Dashboard.showDashboardRefreshNotification();
}
}
Dashboard.showInProgressInstallations(info.InProgressInstallations);
},
showInProgressInstallations: function (installations) {
installations = installations || [];
for (var i = 0, length = installations.length; i < length; i++) {
var installation = installations[i];
var percent = installation.PercentComplete || 0;
if (percent < 100) {
Dashboard.showPackageInstallNotification(installation, "progress");
}
}
if (installations.length) {
Dashboard.ensureInstallRefreshInterval();
} else {
Dashboard.stopInstallRefreshInterval();
}
},
ensureInstallRefreshInterval: function () {
if (!Dashboard.installRefreshInterval) {
if (ApiClient.isWebSocketOpen()) {
2014-05-10 10:28:03 -07:00
ApiClient.sendWebSocketMessage("SystemInfoStart", "0,500");
}
Dashboard.installRefreshInterval = 1;
}
},
stopInstallRefreshInterval: function () {
if (Dashboard.installRefreshInterval) {
if (ApiClient.isWebSocketOpen()) {
ApiClient.sendWebSocketMessage("SystemInfoStop");
}
Dashboard.installRefreshInterval = null;
}
},
cancelInstallation: function (id) {
2015-12-14 08:43:03 -07:00
ApiClient.cancelPackageInstallation(id).then(Dashboard.refreshSystemInfoFromServer, Dashboard.refreshSystemInfoFromServer);
},
2013-10-07 07:38:31 -07:00
showServerRestartWarning: function (systemInfo) {
2015-12-30 10:02:11 -07:00
if (AppInfo.isNativeApp) {
return;
}
2014-07-16 20:17:14 -07:00
var html = '<span style="margin-right: 1em;">' + Globalize.translate('MessagePleaseRestart') + '</span>';
2013-11-28 11:27:29 -07:00
2013-10-07 07:38:31 -07:00
if (systemInfo.CanSelfRestart) {
2015-08-21 20:30:19 -07:00
html += '<paper-button raised class="submit mini" onclick="this.disabled=\'disabled\';Dashboard.restartServer();"><iron-icon icon="refresh"></iron-icon><span>' + Globalize.translate('ButtonRestart') + '</span></paper-button>';
2013-10-07 07:38:31 -07:00
}
Dashboard.showFooterNotification({ id: "serverRestartWarning", html: html, forceShow: true, allowHide: false });
},
hideServerRestartWarning: function () {
2015-06-28 07:45:21 -07:00
var elem = document.getElementById('serverRestartWarning');
if (elem) {
elem.parentNode.removeChild(elem);
}
},
2015-01-18 22:41:56 -07:00
showDashboardRefreshNotification: function () {
2015-12-30 10:02:11 -07:00
if (AppInfo.isNativeApp) {
return;
}
2014-07-16 20:17:14 -07:00
var html = '<span style="margin-right: 1em;">' + Globalize.translate('MessagePleaseRefreshPage') + '</span>';
2015-08-21 20:30:19 -07:00
html += '<paper-button raised class="submit mini" onclick="this.disabled=\'disabled\';Dashboard.reloadPage();"><iron-icon icon="refresh"></iron-icon><span>' + Globalize.translate('ButtonRefresh') + '</span></paper-button>';
2014-04-13 10:27:13 -07:00
Dashboard.showFooterNotification({ id: "dashboardVersionWarning", html: html, forceShow: true, allowHide: false });
},
reloadPage: function () {
2016-03-15 22:33:31 -07:00
window.location.reload(true);
},
hideDashboardVersionWarning: function () {
2015-06-28 07:45:21 -07:00
var elem = document.getElementById('dashboardVersionWarning');
if (elem) {
elem.parentNode.removeChild(elem);
}
},
showFooterNotification: function (options) {
var removeOnHide = !options.id;
options.id = options.id || "notification" + new Date().getTime() + parseInt(Math.random());
2015-12-14 08:43:03 -07:00
if (!document.querySelector(".footer")) {
var footerHtml = '<div id="footer" class="footer" data-theme="b" class="ui-bar-b">';
footerHtml += '<div id="footerNotifications"></div>';
footerHtml += '</div>';
$(document.body).append(footerHtml);
}
2015-05-07 15:27:01 -07:00
var footer = $(".footer").css("top", "initial").show();
var parentElem = $('#footerNotifications', footer);
var elem = $('#' + options.id, parentElem);
if (!elem.length) {
elem = $('<p id="' + options.id + '" class="footerNotification"></p>').appendTo(parentElem);
}
2015-10-04 11:10:50 -07:00
var onclick = removeOnHide ? "jQuery(\"#" + options.id + "\").trigger(\"notification.remove\").remove();" : "jQuery(\"#" + options.id + "\").trigger(\"notification.hide\").hide();";
if (options.allowHide !== false) {
options.html += "<span style='margin-left: 1em;'><paper-button class='submit' onclick='" + onclick + "'>" + Globalize.translate('ButtonHide') + "</paper-button></span>";
}
if (options.forceShow) {
2016-02-24 09:52:25 -07:00
elem.show();
}
2015-12-14 08:43:03 -07:00
elem.html(options.html);
if (options.timeout) {
setTimeout(function () {
if (removeOnHide) {
elem.trigger("notification.remove").remove();
} else {
elem.trigger("notification.hide").hide();
}
}, options.timeout);
}
footer.on("notification.remove notification.hide", function (e) {
setTimeout(function () { // give the DOM time to catch up
if (!parentElem.html()) {
2016-02-24 09:52:25 -07:00
footer.hide();
}
}, 50);
});
},
getConfigurationPageUrl: function (name) {
2016-03-15 22:33:31 -07:00
return "configurationpage?name=" + encodeURIComponent(name);
},
2015-12-14 08:43:03 -07:00
navigate: function (url, preserveQueryString) {
2015-05-12 21:55:19 -07:00
if (!url) {
throw new Error('url cannot be null or empty');
}
2014-04-08 19:12:17 -07:00
var queryString = getWindowLocationSearch();
if (preserveQueryString && queryString) {
url += queryString;
}
2015-05-20 10:29:26 -07:00
2016-03-15 22:33:31 -07:00
if (url.indexOf('/') != 0) {
if (url.indexOf('http') != 0 && url.indexOf('file:') != 0) {
url = '/' + url;
}
}
Emby.Page.show(url);
},
showLoadingMsg: function () {
2015-06-16 10:37:49 -07:00
2015-12-14 08:43:03 -07:00
Dashboard.loadingVisible = true;
2015-06-16 10:37:49 -07:00
2016-02-16 09:15:36 -07:00
require(['loading'], function (loading) {
if (Dashboard.loadingVisible) {
loading.show();
} else {
loading.hide();
}
});
},
hideLoadingMsg: function () {
2015-06-16 10:37:49 -07:00
2015-12-14 08:43:03 -07:00
Dashboard.loadingVisible = false;
2016-02-16 09:15:36 -07:00
require(['loading'], function (loading) {
if (Dashboard.loadingVisible) {
loading.show();
} else {
loading.hide();
}
});
},
2015-05-06 20:11:51 -07:00
getModalLoadingMsg: function () {
2015-12-14 08:43:03 -07:00
var elem = document.querySelector('.modalLoading');
2015-05-06 20:11:51 -07:00
2015-12-14 08:43:03 -07:00
if (!elem) {
2015-05-06 20:11:51 -07:00
2015-12-14 08:43:03 -07:00
elem = document.createElement('modalLoading');
elem.classList.add('modalLoading');
elem.classList.add('hide');
document.body.appendChild(elem);
2015-05-06 20:11:51 -07:00
}
return elem;
},
showModalLoadingMsg: function () {
2015-12-14 08:43:03 -07:00
Dashboard.getModalLoadingMsg().classList.remove('hide');
2015-07-23 06:23:22 -07:00
Dashboard.showLoadingMsg();
2015-05-06 20:11:51 -07:00
},
hideModalLoadingMsg: function () {
2015-12-14 08:43:03 -07:00
Dashboard.getModalLoadingMsg().classList.add('hide');
2015-05-06 20:11:51 -07:00
Dashboard.hideLoadingMsg();
},
processPluginConfigurationUpdateResult: function () {
Dashboard.hideLoadingMsg();
2016-02-24 23:38:12 -07:00
require(['toast'], function (toast) {
toast(Globalize.translate('MessageSettingsSaved'));
});
},
processServerConfigurationUpdateResult: function (result) {
Dashboard.hideLoadingMsg();
2016-02-24 23:38:12 -07:00
require(['toast'], function (toast) {
toast(Globalize.translate('MessageSettingsSaved'));
});
},
2015-05-01 11:37:01 -07:00
alert: function (options) {
if (typeof options == "string") {
2016-02-16 09:15:36 -07:00
require(['toast'], function (toast) {
2015-05-01 11:37:01 -07:00
2016-02-16 09:15:36 -07:00
toast({
text: options
});
2015-12-14 08:43:03 -07:00
2015-06-16 10:37:49 -07:00
});
2015-05-01 11:37:01 -07:00
return;
}
2016-02-26 13:29:27 -07:00
require(['alert'], function (alert) {
alert({
title: options.title || Globalize.translate('HeaderAlert'),
text: options.message
}).then(options.callback || function () { });
2015-12-14 08:43:03 -07:00
});
},
refreshSystemInfoFromServer: function () {
2015-05-20 09:28:55 -07:00
var apiClient = ApiClient;
2015-05-21 13:53:14 -07:00
if (apiClient && apiClient.accessToken()) {
2015-07-13 14:26:11 -07:00
if (AppInfo.enableFooterNotifications) {
2015-12-14 08:43:03 -07:00
apiClient.getSystemInfo().then(function (info) {
2014-07-07 18:41:03 -07:00
2015-05-07 15:27:01 -07:00
Dashboard.updateSystemInfo(info);
});
}
2014-07-07 18:41:03 -07:00
}
},
restartServer: function () {
Dashboard.suppressAjaxErrors = true;
Dashboard.showLoadingMsg();
2015-12-14 08:43:03 -07:00
ApiClient.restartServer().then(function () {
setTimeout(function () {
Dashboard.reloadPageWhenServerAvailable();
}, 250);
2015-12-14 08:43:03 -07:00
}, function () {
Dashboard.suppressAjaxErrors = false;
});
},
reloadPageWhenServerAvailable: function (retryCount) {
// Don't use apiclient method because we don't want it reporting authentication under the old version
2015-12-14 08:43:03 -07:00
ApiClient.getJSON(ApiClient.getUrl("System/Info")).then(function (info) {
// If this is back to false, the restart completed
if (!info.HasPendingRestart) {
Dashboard.reloadPage();
} else {
Dashboard.retryReload(retryCount);
}
2015-12-14 08:43:03 -07:00
}, function () {
Dashboard.retryReload(retryCount);
});
},
retryReload: function (retryCount) {
setTimeout(function () {
retryCount = retryCount || 0;
retryCount++;
if (retryCount < 10) {
Dashboard.reloadPageWhenServerAvailable(retryCount);
} else {
Dashboard.suppressAjaxErrors = false;
}
}, 500);
},
2015-06-10 06:37:07 -07:00
showUserFlyout: function () {
2016-02-14 13:38:19 -07:00
Dashboard.navigate('mypreferencesmenu.html?userId=' + ApiClient.getCurrentUserId());
2015-06-10 06:37:07 -07:00
},
getPluginSecurityInfo: function () {
2015-05-19 12:15:40 -07:00
var apiClient = ApiClient;
if (!apiClient) {
2016-02-22 11:25:45 -07:00
return Promise.reject();
2015-12-14 08:43:03 -07:00
}
2015-12-14 08:43:03 -07:00
var cachedInfo = Dashboard.pluginSecurityInfo;
if (cachedInfo) {
2016-02-22 11:25:45 -07:00
return Promise.resolve(cachedInfo);
}
2015-12-14 08:43:03 -07:00
return apiClient.ajax({
type: "GET",
url: apiClient.getUrl("Plugins/SecurityInfo"),
dataType: 'json',
error: function () {
// Don't show normal dashboard errors
}
}).then(function (result) {
Dashboard.pluginSecurityInfo = result;
return result;
});
},
resetPluginSecurityInfo: function () {
2015-12-14 08:43:03 -07:00
Dashboard.pluginSecurityInfo = null;
},
2014-06-21 22:52:31 -07:00
ensureHeader: function (page) {
2015-06-28 07:45:21 -07:00
if (page.classList.contains('standalonePage') && !page.classList.contains('noHeaderPage')) {
2014-06-21 22:52:31 -07:00
Dashboard.renderHeader(page);
}
},
2014-06-21 22:52:31 -07:00
renderHeader: function (page) {
2015-06-28 07:45:21 -07:00
var header = page.querySelector('.header');
2013-04-23 12:17:21 -07:00
2015-06-28 07:45:21 -07:00
if (!header) {
2014-06-21 22:52:31 -07:00
var headerHtml = '';
2013-04-22 07:44:11 -07:00
headerHtml += '<div class="header">';
2016-03-15 22:33:31 -07:00
headerHtml += '<a class="logo" href="home.html" style="text-decoration:none;font-size: 22px;">';
2015-06-28 07:45:21 -07:00
if (page.classList.contains('standalonePage')) {
2015-01-11 13:31:09 -07:00
headerHtml += '<img class="imgLogoIcon" src="css/images/mblogoicon.png" />';
2015-03-21 11:12:12 -07:00
headerHtml += '<span class="logoLibraryMenuButtonText">EMBY</span>';
2013-03-31 22:08:29 -07:00
}
headerHtml += '</a>';
2013-12-26 22:08:37 -07:00
2013-04-22 07:44:11 -07:00
headerHtml += '</div>';
2015-06-28 07:45:21 -07:00
$(page).prepend(headerHtml);
}
},
2013-05-10 05:18:07 -07:00
2016-03-27 20:37:33 -07:00
getToolsLinkHtml: function (item) {
var menuHtml = '';
var pageIds = item.pageIds ? item.pageIds.join(',') : '';
pageIds = pageIds ? (' data-pageids="' + pageIds + '"') : '';
menuHtml += '<a class="sidebarLink" href="' + item.href + '"' + pageIds + '>';
var icon = item.icon;
if (icon) {
2016-03-28 10:49:30 -07:00
var style = item.color ? ' style="color:' + item.color + '"' : '';
menuHtml += '<iron-icon icon="' + icon + '" class="sidebarLinkIcon"' + style + '></iron-icon>';
2016-03-27 20:37:33 -07:00
}
menuHtml += '<span class="sidebarLinkText">';
menuHtml += item.name;
menuHtml += '</span>';
menuHtml += '</a>';
return menuHtml;
},
2015-06-21 14:31:21 -07:00
getToolsMenuHtml: function (page) {
2015-06-21 14:31:21 -07:00
var items = Dashboard.getToolsMenuLinks(page);
2015-06-21 14:31:21 -07:00
var i, length, item;
var menuHtml = '';
2016-03-27 20:37:33 -07:00
menuHtml += '<div class="drawerContent">';
2015-06-21 14:31:21 -07:00
for (i = 0, length = items.length; i < length; i++) {
2015-06-21 14:31:21 -07:00
item = items[i];
2015-01-18 12:53:34 -07:00
2016-04-12 22:28:45 -07:00
if (item.divider) {
menuHtml += "<div class='sidebarDivider'></div>";
}
2016-03-27 20:37:33 -07:00
if (item.items) {
2015-05-31 11:22:51 -07:00
2016-04-05 21:22:57 -07:00
var style = item.color ? ' iconstyle="color:' + item.color + '"' : '';
2016-04-08 19:30:22 -07:00
var expanded = item.expanded ? (' expanded') : '';
2016-03-27 20:37:33 -07:00
if (item.icon) {
2016-04-08 19:30:22 -07:00
menuHtml += '<emby-collapsible icon="' + item.icon + '" title="' + item.name + '"' + style + expanded + '>';
2015-01-18 12:53:34 -07:00
} else {
2016-04-08 19:30:22 -07:00
menuHtml += '<emby-collapsible title="' + item.name + '"' + style + expanded + '>';
}
2016-03-27 20:37:33 -07:00
menuHtml += item.items.map(Dashboard.getToolsLinkHtml).join('');
menuHtml += '</emby-collapsible>';
}
else if (item.href) {
2016-03-27 20:37:33 -07:00
menuHtml += Dashboard.getToolsLinkHtml(item);
2015-06-21 14:31:21 -07:00
} else {
2015-06-21 14:31:21 -07:00
menuHtml += '<div class="sidebarHeader">';
menuHtml += item.name;
menuHtml += '</div>';
}
}
2016-03-27 20:37:33 -07:00
menuHtml += '</div>';
2015-06-21 14:31:21 -07:00
return menuHtml;
},
2013-12-26 22:08:37 -07:00
2016-03-27 20:37:33 -07:00
getToolsMenuLinks: function () {
return [{
2016-04-12 22:28:45 -07:00
name: Globalize.translate('TabServer')
}, {
name: Globalize.translate('TabDashboard'),
href: "dashboard.html",
pageIds: ['dashboardPage'],
icon: 'dashboard'
}, {
2016-04-12 22:28:45 -07:00
name: Globalize.translate('TabSettings'),
href: "dashboardgeneral.html",
pageIds: ['dashboardGeneralPage'],
icon: 'settings'
}, {
name: Globalize.translate('TabDevices'),
href: "devices.html",
2016-04-13 09:17:52 -07:00
pageIds: ['devicesPage', 'devicePage'],
2016-04-12 22:28:45 -07:00
icon: 'tablet'
}, {
name: Globalize.translate('TabUsers'),
href: "userprofiles.html",
2016-04-16 12:46:47 -07:00
pageIds: ['userProfilesPage', 'newUserPage', 'editUserPage', 'userLibraryAccessPage', 'userParentalControlPage', 'userPasswordPage'],
2016-04-12 22:28:45 -07:00
icon: 'people'
}, {
divider: true,
2016-04-14 09:30:37 -07:00
name: Globalize.translate('TabLibrary'),
2016-04-12 22:28:45 -07:00
href: "library.html",
2016-04-14 21:44:51 -07:00
pageIds: ['mediaLibraryPage', 'libraryPathMappingPage', 'librarySettingsPage'],
2015-06-21 14:31:21 -07:00
icon: 'folder',
2016-04-12 23:02:07 -07:00
color: '#009688'
2014-06-01 12:41:35 -07:00
}, {
2016-04-12 22:28:45 -07:00
name: Globalize.translate('TabMetadata'),
href: "metadata.html",
2016-04-12 23:02:07 -07:00
pageIds: ['metadataConfigurationPage', 'metadataImagesConfigurationPage', 'metadataNfoPage'],
2016-04-12 22:28:45 -07:00
icon: 'insert-drive-file',
2016-04-12 23:02:07 -07:00
color: '#FF9800'
2016-04-12 22:28:45 -07:00
}, {
name: Globalize.translate('TabSubtitles'),
href: "metadatasubtitles.html",
pageIds: ['metadataSubtitlesPage'],
icon: 'closed-caption'
}, {
name: Globalize.translate('TabPlayback'),
icon: 'play-circle-filled',
2016-04-05 21:22:57 -07:00
color: '#E5342E',
2016-04-12 22:28:45 -07:00
href: "cinemamodeconfiguration.html",
pageIds: ['cinemaModeConfigurationPage', 'playbackConfigurationPage', 'streamingSettingsPage', 'encodingSettingsPage']
}, {
name: Globalize.translate('TabSync'),
icon: 'sync',
href: "syncactivity.html",
pageIds: ['syncActivityPage', 'syncJobPage', 'devicesUploadPage', 'syncSettingsPage']
}, {
divider: true,
name: Globalize.translate('TabExtras')
}, {
name: Globalize.translate('TabAutoOrganize'),
color: '#01C0DD',
href: "autoorganizelog.html",
pageIds: ['libraryFileOrganizerPage', 'libraryFileOrganizerSmartMatchPage', 'libraryFileOrganizerLogPage'],
icon: 'folder'
}, {
name: Globalize.translate('DLNA'),
href: "dlnasettings.html",
pageIds: ['dlnaSettingsPage', 'dlnaProfilesPage', 'dlnaProfilePage'],
icon: 'settings'
2014-01-12 09:55:38 -07:00
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabLiveTV'),
2016-04-12 22:28:45 -07:00
href: "livetvstatus.html",
2016-04-12 23:02:07 -07:00
pageIds: ['liveTvStatusPage', 'liveTvSettingsPage', 'liveTvTunerProviderHdHomerunPage', 'liveTvTunerProviderM3UPage', 'liveTvTunerProviderSatPage'],
2016-04-12 22:28:45 -07:00
icon: 'dvr'
2016-04-12 10:37:58 -07:00
}, {
name: Globalize.translate('TabNotifications'),
icon: 'notifications',
color: 'brown',
2016-04-12 22:28:45 -07:00
href: "notificationsettings.html",
pageIds: ['notificationSettingsPage', 'notificationSettingPage']
2014-03-25 14:13:55 -07:00
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabPlugins'),
2015-06-21 14:31:21 -07:00
icon: 'add-shopping-cart',
2016-04-05 21:22:57 -07:00
color: '#9D22B1',
2016-04-12 22:28:45 -07:00
href: "plugins.html",
pageIds: ['pluginsPage', 'pluginCatalogPage']
}, {
2016-04-12 22:28:45 -07:00
divider: true,
name: Globalize.translate('TabExpert')
2015-01-18 12:53:34 -07:00
}, {
name: Globalize.translate('TabAdvanced'),
2015-06-21 14:31:21 -07:00
icon: 'settings',
2016-04-12 22:28:45 -07:00
href: "dashboardhosting.html",
2016-04-05 21:22:57 -07:00
color: '#F16834',
2016-04-12 22:28:45 -07:00
pageIds: ['dashboardHostingPage', 'serverSecurityPage']
}, {
name: Globalize.translate('TabScheduledTasks'),
color: '#38c',
href: "scheduledtasks.html",
pageIds: ['scheduledTasksPage', 'scheduledTaskPage'],
icon: 'schedule'
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabHelp'),
2016-04-12 22:28:45 -07:00
href: "about.html",
icon: 'help',
color: '#679C34',
divider: true,
pageIds: ['supporterKeyPage', 'logPage', 'aboutPage']
}];
},
2014-04-27 18:57:29 -07:00
processGeneralCommand: function (cmd) {
// Full list
// https://github.com/MediaBrowser/MediaBrowser/blob/master/MediaBrowser.Model/Session/GeneralCommand.cs#L23
2014-05-06 19:28:19 -07:00
2014-04-30 20:24:55 -07:00
switch (cmd.Name) {
2014-05-06 19:28:19 -07:00
2014-04-30 20:24:55 -07:00
case 'GoHome':
2016-03-15 22:33:31 -07:00
Dashboard.navigate('home.html');
2014-04-30 20:24:55 -07:00
break;
case 'GoToSettings':
Dashboard.navigate('dashboard.html');
break;
case 'DisplayContent':
Dashboard.onBrowseCommand(cmd.Arguments);
break;
case 'GoToSearch':
2015-12-14 08:43:03 -07:00
Search.showSearchPanel();
2014-04-30 20:24:55 -07:00
break;
2014-05-08 13:09:53 -07:00
case 'DisplayMessage':
{
var args = cmd.Arguments;
2015-12-30 10:02:11 -07:00
if (args.TimeoutMs && window.Notification && Notification.permission === "granted") {
var notification = {
title: args.Header,
body: args.Text,
vibrate: true,
timeout: args.TimeoutMs
};
var notif = new Notification(notification.title, notification);
if (notif.show) {
notif.show();
}
if (notification.timeout) {
setTimeout(function () {
if (notif.close) {
notif.close();
}
else if (notif.cancel) {
notif.cancel();
}
}, notification.timeout);
}
2014-05-08 13:09:53 -07:00
}
else {
2015-05-21 13:53:14 -07:00
Dashboard.alert({ title: args.Header, message: args.Text });
2014-05-08 13:09:53 -07:00
}
break;
}
2014-04-30 20:24:55 -07:00
case 'VolumeUp':
case 'VolumeDown':
case 'Mute':
case 'Unmute':
case 'ToggleMute':
case 'SetVolume':
case 'SetAudioStreamIndex':
case 'SetSubtitleStreamIndex':
case 'ToggleFullscreen':
2015-07-26 14:02:23 -07:00
case 'SetRepeatMode':
2014-04-30 20:24:55 -07:00
break;
default:
2015-12-23 10:46:01 -07:00
console.log('Unrecognized command: ' + cmd.Name);
2014-04-30 20:24:55 -07:00
break;
2014-04-27 18:57:29 -07:00
}
},
2013-03-27 22:19:58 -07:00
onWebSocketMessageReceived: function (e, data) {
2013-03-27 22:19:58 -07:00
var msg = data;
2013-03-31 18:52:07 -07:00
if (msg.MessageType === "LibraryChanged") {
Dashboard.processLibraryUpdateNotification(msg.Data);
}
2013-09-05 10:26:03 -07:00
else if (msg.MessageType === "ServerShuttingDown") {
Dashboard.hideServerRestartWarning();
}
else if (msg.MessageType === "ServerRestarting") {
Dashboard.hideServerRestartWarning();
}
else if (msg.MessageType === "SystemInfo") {
Dashboard.updateSystemInfo(msg.Data);
}
2013-03-27 22:19:58 -07:00
else if (msg.MessageType === "RestartRequired") {
Dashboard.updateSystemInfo(msg.Data);
}
else if (msg.MessageType === "PackageInstallationCompleted") {
2015-12-14 08:43:03 -07:00
Dashboard.getCurrentUser().then(function (currentUser) {
2014-12-19 23:06:27 -07:00
if (currentUser.Policy.IsAdministrator) {
Dashboard.showPackageInstallNotification(msg.Data, "completed");
Dashboard.refreshSystemInfoFromServer();
}
});
}
else if (msg.MessageType === "PackageInstallationFailed") {
2015-12-14 08:43:03 -07:00
Dashboard.getCurrentUser().then(function (currentUser) {
2014-12-19 23:06:27 -07:00
if (currentUser.Policy.IsAdministrator) {
Dashboard.showPackageInstallNotification(msg.Data, "failed");
Dashboard.refreshSystemInfoFromServer();
}
});
}
else if (msg.MessageType === "PackageInstallationCancelled") {
2015-12-14 08:43:03 -07:00
Dashboard.getCurrentUser().then(function (currentUser) {
2014-12-19 23:06:27 -07:00
if (currentUser.Policy.IsAdministrator) {
Dashboard.showPackageInstallNotification(msg.Data, "cancelled");
Dashboard.refreshSystemInfoFromServer();
}
});
}
2015-05-20 09:28:55 -07:00
else if (msg.MessaapiclientcgeType === "PackageInstalling") {
2015-12-14 08:43:03 -07:00
Dashboard.getCurrentUser().then(function (currentUser) {
2014-12-19 23:06:27 -07:00
if (currentUser.Policy.IsAdministrator) {
Dashboard.showPackageInstallNotification(msg.Data, "progress");
Dashboard.refreshSystemInfoFromServer();
}
});
}
2014-03-31 14:04:22 -07:00
else if (msg.MessageType === "GeneralCommand") {
2014-03-31 14:04:22 -07:00
var cmd = msg.Data;
2014-12-15 22:01:57 -07:00
// Media Controller should catch this
//Dashboard.processGeneralCommand(cmd);
}
2013-05-10 05:18:07 -07:00
},
onBrowseCommand: function (cmd) {
var url;
2013-05-25 17:53:51 -07:00
var type = (cmd.ItemType || "").toLowerCase();
2013-05-10 05:18:07 -07:00
if (type == "genre") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
2013-06-10 20:31:00 -07:00
else if (type == "musicgenre") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-06-10 20:31:00 -07:00
}
2013-07-01 10:17:33 -07:00
else if (type == "gamegenre") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-07-01 10:17:33 -07:00
}
2013-05-10 05:18:07 -07:00
else if (type == "studio") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
else if (type == "person") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
2013-11-21 13:48:26 -07:00
else if (type == "musicartist") {
2015-08-18 21:08:03 -07:00
url = "itemdetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
2013-05-10 05:18:07 -07:00
if (url) {
Dashboard.navigate(url);
return;
}
2015-12-14 08:43:03 -07:00
ApiClient.getItem(Dashboard.getCurrentUserId(), cmd.ItemId).then(function (item) {
2013-05-10 05:18:07 -07:00
2014-07-16 20:17:14 -07:00
Dashboard.navigate(LibraryBrowser.getHref(item, null, ''));
2013-05-10 05:18:07 -07:00
});
},
showPackageInstallNotification: function (installation, status) {
2015-12-30 10:02:11 -07:00
if (AppInfo.isNativeApp) {
return;
}
var html = '';
if (status == 'completed') {
html += '<img src="css/images/notifications/done.png" class="notificationIcon" />';
}
else if (status == 'cancelled') {
html += '<img src="css/images/notifications/info.png" class="notificationIcon" />';
}
else if (status == 'failed') {
html += '<img src="css/images/notifications/error.png" class="notificationIcon" />';
}
else if (status == 'progress') {
html += '<img src="css/images/notifications/download.png" class="notificationIcon" />';
}
html += '<span style="margin-right: 1em;">';
if (status == 'completed') {
2014-07-16 20:17:14 -07:00
html += Globalize.translate('LabelPackageInstallCompleted').replace('{0}', installation.Name + ' ' + installation.Version);
}
else if (status == 'cancelled') {
2014-07-16 20:17:14 -07:00
html += Globalize.translate('LabelPackageInstallCancelled').replace('{0}', installation.Name + ' ' + installation.Version);
}
else if (status == 'failed') {
2014-07-16 20:17:14 -07:00
html += Globalize.translate('LabelPackageInstallFailed').replace('{0}', installation.Name + ' ' + installation.Version);
}
else if (status == 'progress') {
2014-07-16 20:17:14 -07:00
html += Globalize.translate('LabelInstallingPackage').replace('{0}', installation.Name + ' ' + installation.Version);
}
html += '</span>';
if (status == 'progress') {
var percentComplete = Math.round(installation.PercentComplete || 0);
html += '<progress style="margin-right: 1em;" max="100" value="' + percentComplete + '" title="' + percentComplete + '%">';
html += '' + percentComplete + '%';
html += '</progress>';
if (percentComplete < 100) {
2015-08-21 20:30:19 -07:00
html += '<paper-button raised class="cancelDark mini" onclick="this.disabled=\'disabled\';Dashboard.cancelInstallation(\'' + installation.Id + '\');"><iron-icon icon="cancel"></iron-icon><span>' + Globalize.translate('ButtonCancel') + '</span></paper-button>';
}
}
var timeout = 0;
if (status == 'cancelled') {
timeout = 2000;
}
var forceShow = status != "progress";
var allowHide = status != "progress" && status != 'cancelled';
Dashboard.showFooterNotification({ html: html, id: installation.Id, timeout: timeout, forceShow: forceShow, allowHide: allowHide });
},
processLibraryUpdateNotification: function (data) {
var newItems = data.ItemsAdded;
2013-05-10 05:18:07 -07:00
2015-12-30 10:02:11 -07:00
if (!newItems.length || AppInfo.isNativeApp || !window.Notification || Notification.permission !== "granted") {
return;
}
2013-04-15 11:45:58 -07:00
ApiClient.getItems(Dashboard.getCurrentUserId(), {
2013-04-19 15:09:21 -07:00
2013-04-15 11:45:58 -07:00
Recursive: true,
2013-05-18 14:47:50 -07:00
Limit: 3,
2013-04-15 16:45:09 -07:00
Filters: "IsNotFolder",
2013-04-15 11:45:58 -07:00
SortBy: "DateCreated",
SortOrder: "Descending",
ImageTypes: "Primary",
Ids: newItems.join(',')
2013-04-19 15:09:21 -07:00
2015-12-14 08:43:03 -07:00
}).then(function (result) {
2013-04-15 11:45:58 -07:00
var items = result.Items;
for (var i = 0, length = Math.min(items.length, 2) ; i < length; i++) {
var item = items[i];
var notification = {
2013-04-15 11:45:58 -07:00
title: "New " + item.Type,
body: item.Name,
2015-12-30 10:02:11 -07:00
timeout: 15000,
vibrate: true,
data: {
options: {
url: LibraryBrowser.getHref(item)
}
}
2013-04-15 11:45:58 -07:00
};
var imageTags = item.ImageTags || {};
2013-04-19 15:09:21 -07:00
2013-04-15 11:45:58 -07:00
if (imageTags.Primary) {
notification.icon = ApiClient.getScaledImageUrl(item.Id, {
width: 60,
2013-04-15 11:45:58 -07:00
tag: imageTags.Primary,
type: "Primary"
});
}
2015-12-30 10:02:11 -07:00
var notif = new Notification(notification.title, notification);
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
if (notif.show) {
notif.show();
}
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
if (notification.timeout) {
setTimeout(function () {
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
if (notif.close) {
notif.close();
}
else if (notif.cancel) {
notif.cancel();
}
}, notification.timeout);
2015-12-14 08:43:03 -07:00
}
}
});
},
2016-03-29 20:10:01 -07:00
setPageTitle: function (title, documentTitle) {
2016-03-27 20:37:33 -07:00
LibraryMenu.setTitle(title || 'Emby');
2016-03-29 20:10:01 -07:00
documentTitle = documentTitle || title;
if (documentTitle) {
document.title = documentTitle;
}
2013-06-07 10:29:33 -07:00
},
2014-04-13 10:27:13 -07:00
getSupportedRemoteCommands: function () {
// Full list
// https://github.com/MediaBrowser/MediaBrowser/blob/master/MediaBrowser.Model/Session/GeneralCommand.cs
return [
"GoHome",
"GoToSettings",
"VolumeUp",
"VolumeDown",
"Mute",
"Unmute",
"ToggleMute",
"SetVolume",
"SetAudioStreamIndex",
"SetSubtitleStreamIndex",
2014-04-27 18:57:29 -07:00
"DisplayContent",
2014-05-08 13:09:53 -07:00
"GoToSearch",
2015-07-26 14:02:23 -07:00
"DisplayMessage",
"SetRepeatMode"
2014-04-13 10:27:13 -07:00
];
2014-10-25 11:32:58 -07:00
},
2014-10-26 20:06:01 -07:00
isServerlessPage: function () {
2015-12-14 08:43:03 -07:00
var url = window.location.href.toLowerCase();
2015-05-05 16:20:23 -07:00
return url.indexOf('connectlogin.html') != -1 || url.indexOf('selectserver.html') != -1 || url.indexOf('login.html') != -1 || url.indexOf('forgotpassword.html') != -1 || url.indexOf('forgotpasswordpin.html') != -1;
2015-02-19 10:46:18 -07:00
},
capabilities: function () {
2015-05-26 08:31:50 -07:00
var caps = {
2015-05-28 16:37:43 -07:00
PlayableMediaTypes: ['Audio', 'Video'],
2015-02-19 10:46:18 -07:00
2015-05-28 16:37:43 -07:00
SupportedCommands: Dashboard.getSupportedRemoteCommands(),
2015-06-10 06:37:07 -07:00
// Need to use this rather than AppInfo.isNativeApp because the property isn't set yet at the time we call this
SupportsPersistentIdentifier: Dashboard.isRunningInCordova(),
2015-04-08 22:20:23 -07:00
SupportsMediaControl: true,
SupportedLiveMediaTypes: ['Audio', 'Video']
2015-02-19 10:46:18 -07:00
};
2015-05-26 08:31:50 -07:00
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova() && !browserInfo.safari) {
2015-05-28 16:37:43 -07:00
caps.SupportsOfflineAccess = true;
caps.SupportsSync = true;
caps.SupportsContentUploading = true;
}
2015-05-26 08:31:50 -07:00
return caps;
2015-05-02 09:34:27 -07:00
},
2013-04-01 22:14:37 -07:00
2015-05-02 09:34:27 -07:00
getDefaultImageQuality: function (imageType) {
var quality = 90;
var isBackdrop = imageType.toLowerCase() == 'backdrop';
if (isBackdrop) {
2015-05-07 07:04:10 -07:00
quality -= 10;
2015-05-02 09:34:27 -07:00
}
2015-05-06 20:11:51 -07:00
if (AppInfo.hasLowImageBandwidth) {
2014-10-23 21:54:35 -07:00
2015-05-15 08:46:20 -07:00
// The native app can handle a little bit more than safari
2015-05-28 16:37:43 -07:00
if (AppInfo.isNativeApp) {
2015-05-15 08:46:20 -07:00
2015-09-27 18:50:11 -07:00
quality -= 10;
2015-05-15 08:46:20 -07:00
} else {
2014-10-23 21:54:35 -07:00
2015-05-19 12:15:40 -07:00
quality -= 40;
2015-05-02 09:34:27 -07:00
}
2014-10-23 21:54:35 -07:00
}
2015-05-02 09:34:27 -07:00
return quality;
},
2015-05-12 06:58:03 -07:00
normalizeImageOptions: function (options) {
2015-05-11 09:32:15 -07:00
if (AppInfo.hasLowImageBandwidth) {
options.enableImageEnhancers = false;
}
2015-05-15 08:46:20 -07:00
if (AppInfo.forcedImageFormat && options.type != 'Logo') {
options.format = AppInfo.forcedImageFormat;
2015-06-26 08:53:49 -07:00
options.backgroundColor = '#1c1c1c';
2015-05-15 08:46:20 -07:00
}
2015-05-11 09:32:15 -07:00
},
2015-05-25 10:32:22 -07:00
loadExternalPlayer: function () {
2015-12-14 08:43:03 -07:00
return new Promise(function (resolve, reject) {
2015-05-25 10:32:22 -07:00
2015-12-14 08:43:03 -07:00
require(['scripts/externalplayer.js'], function () {
2015-05-25 10:32:22 -07:00
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova()) {
require(['cordova/externalplayer.js'], resolve);
} else {
resolve();
}
});
2015-05-25 10:32:22 -07:00
});
2015-06-08 14:32:20 -07:00
},
exitOnBack: function () {
return $($.mobile.activePage).is('#indexPage');
},
exit: function () {
Dashboard.logout();
2016-05-05 20:09:36 -07:00
},
getDeviceProfile: function (maxHeight) {
return new Promise(function (resolve, reject) {
function updateDeviceProfileForAndroid(profile) {
// Just here as an easy escape out, if ever needed
var enableVlcVideo = true;
var enableVlcAudio = window.VlcAudio;
if (enableVlcVideo) {
profile.DirectPlayProfiles.push({
Container: "m4v,3gp,ts,mpegts,mov,xvid,vob,mkv,wmv,asf,ogm,ogv,m2v,avi,mpg,mpeg,mp4,webm",
Type: 'Video',
AudioCodec: 'aac,aac_latm,mp3,ac3,wma,dca,pcm,PCM_S16LE,PCM_S24LE,opus,flac'
});
profile.CodecProfiles = profile.CodecProfiles.filter(function (i) {
return i.Type == 'Audio';
});
profile.SubtitleProfiles = [];
profile.SubtitleProfiles.push({
Format: 'srt',
Method: 'External'
});
profile.SubtitleProfiles.push({
Format: 'srt',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'subrip',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'ass',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'ssa',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'pgs',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'pgssub',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'dvdsub',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'vtt',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'sub',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'idx',
Method: 'Embed'
});
profile.SubtitleProfiles.push({
Format: 'smi',
Method: 'Embed'
});
// These don't play very well
profile.CodecProfiles.push({
Type: 'VideoAudio',
Codec: 'dca',
Conditions: [
{
Condition: 'LessThanEqual',
Property: 'AudioChannels',
Value: 6
}
]
});
profile.CodecProfiles.push({
Type: 'VideoAudio',
Codec: 'aac,mp3',
Conditions: [
{
Condition: 'LessThanEqual',
Property: 'AudioChannels',
Value: '6'
}
]
});
profile.CodecProfiles.push({
Type: 'Video',
Codec: 'h264',
Conditions: [
{
Condition: 'EqualsAny',
Property: 'VideoProfile',
Value: 'high|main|baseline|constrained baseline'
},
{
Condition: 'LessThanEqual',
Property: 'VideoLevel',
Value: '41'
}]
});
profile.TranscodingProfiles.filter(function (p) {
return p.Type == 'Video' && p.CopyTimestamps == true;
}).forEach(function (p) {
// Vlc doesn't seem to handle this well
p.CopyTimestamps = false;
});
profile.TranscodingProfiles.filter(function (p) {
return p.Type == 'Video' && p.VideoCodec == 'h264';
}).forEach(function (p) {
p.AudioCodec += ',ac3';
});
}
if (enableVlcAudio) {
profile.DirectPlayProfiles.push({
Container: "aac,mp3,mpa,wav,wma,mp2,ogg,oga,webma,ape,opus",
Type: 'Audio'
});
profile.CodecProfiles = profile.CodecProfiles.filter(function (i) {
return i.Type != 'Audio';
});
profile.CodecProfiles.push({
Type: 'Audio',
Conditions: [{
Condition: 'LessThanEqual',
Property: 'AudioChannels',
Value: '2'
}]
});
}
}
require(['browserdeviceprofile', 'qualityoptions', 'appSettings'], function (profileBuilder, qualityoptions, appSettings) {
var supportsCustomSeeking = false;
if (!browserInfo.mobile) {
supportsCustomSeeking = true;
} else if (AppInfo.isNativeApp && browserInfo.safari) {
if (navigator.userAgent.toLowerCase().indexOf('ipad') == -1) {
// Need to disable it in order to support picture in picture
supportsCustomSeeking = true;
}
} else if (AppInfo.isNativeApp) {
supportsCustomSeeking = true;
}
var profile = profileBuilder({
supportsCustomSeeking: supportsCustomSeeking
});
if (!(AppInfo.isNativeApp && browserInfo.android)) {
profile.SubtitleProfiles.push({
Format: 'ass',
Method: 'External'
});
profile.SubtitleProfiles.push({
Format: 'ssa',
Method: 'External'
});
}
var bitrateSetting = appSettings.maxStreamingBitrate();
if (!maxHeight) {
maxHeight = qualityoptions.getVideoQualityOptions(bitrateSetting).filter(function (q) {
return q.selected;
})[0].maxHeight;
}
if (AppInfo.isNativeApp && browserInfo.android) {
updateDeviceProfileForAndroid(profile);
}
profile.MaxStreamingBitrate = bitrateSetting;
resolve(profile);
});
});
2014-10-23 21:54:35 -07:00
}
2015-05-02 09:34:27 -07:00
};
2015-05-06 20:11:51 -07:00
var AppInfo = {};
2015-05-02 09:34:27 -07:00
(function () {
2014-10-23 21:54:35 -07:00
2015-05-06 20:11:51 -07:00
function isTouchDevice() {
return (('ontouchstart' in window)
|| (navigator.MaxTouchPoints > 0)
|| (navigator.msMaxTouchPoints > 0));
}
2015-05-06 20:11:51 -07:00
function setAppInfo() {
2015-05-19 12:15:40 -07:00
if (isTouchDevice()) {
2015-05-06 20:11:51 -07:00
AppInfo.isTouchPreferred = true;
}
2015-05-08 09:58:27 -07:00
var isCordova = Dashboard.isRunningInCordova();
2015-05-15 19:36:47 -07:00
AppInfo.enableDetailPageChapters = true;
AppInfo.enableDetailsMenuImages = true;
2015-05-16 12:09:02 -07:00
AppInfo.enableMovieHomeSuggestions = true;
2015-09-23 09:16:06 -07:00
AppInfo.enableSearchInTopMenu = true;
2015-09-24 10:08:10 -07:00
AppInfo.enableHomeFavorites = true;
AppInfo.enableNowPlayingBar = true;
2015-09-24 22:15:29 -07:00
AppInfo.enableHomeTabs = true;
2015-09-25 09:08:13 -07:00
AppInfo.enableNowPlayingPageBottomTabs = true;
2016-01-06 13:16:16 -07:00
AppInfo.enableAutoSave = browserInfo.mobile;
2016-03-16 11:09:58 -07:00
AppInfo.enableHashBang = Dashboard.isRunningInCordova();
2015-05-16 12:09:02 -07:00
AppInfo.enableAppStorePolicy = isCordova;
2015-05-15 19:36:47 -07:00
2015-12-14 08:43:03 -07:00
var isIOS = browserInfo.ipad || browserInfo.iphone;
var isAndroid = browserInfo.android;
var isMobile = browserInfo.mobile;
2015-05-27 22:51:48 -07:00
2015-05-29 18:07:54 -07:00
if (isIOS) {
2015-05-06 20:11:51 -07:00
2015-12-14 08:43:03 -07:00
AppInfo.hasLowImageBandwidth = true;
2015-05-07 15:27:01 -07:00
2015-05-08 09:58:27 -07:00
if (isCordova) {
2015-06-20 17:49:42 -07:00
//AppInfo.enableSectionTransitions = true;
2015-09-23 09:16:06 -07:00
AppInfo.enableSearchInTopMenu = false;
2015-09-24 10:08:10 -07:00
AppInfo.enableHomeFavorites = false;
2015-09-24 22:15:29 -07:00
AppInfo.enableHomeTabs = false;
2015-09-25 09:08:13 -07:00
AppInfo.enableNowPlayingPageBottomTabs = false;
2015-06-04 13:27:46 -07:00
2015-09-25 19:31:13 -07:00
// Disable the now playing bar for the iphone since we already have the now playing tab at the bottom
if (navigator.userAgent.toString().toLowerCase().indexOf('iphone') != -1) {
AppInfo.enableNowPlayingBar = false;
}
2015-05-15 19:36:47 -07:00
} else {
2015-12-14 08:43:03 -07:00
AppInfo.enableDetailPageChapters = false;
AppInfo.enableDetailsMenuImages = false;
AppInfo.enableMovieHomeSuggestions = false;
2015-06-04 13:27:46 -07:00
2015-12-14 08:43:03 -07:00
AppInfo.forcedImageFormat = 'jpg';
2015-05-07 15:27:01 -07:00
}
2015-05-06 20:11:51 -07:00
}
2015-05-07 07:04:10 -07:00
2015-05-08 12:44:13 -07:00
if (!AppInfo.hasLowImageBandwidth) {
2015-05-07 07:04:10 -07:00
AppInfo.enableStudioTabs = true;
AppInfo.enableTvEpisodesTab = true;
2015-05-07 15:27:01 -07:00
}
2015-12-14 08:43:03 -07:00
AppInfo.supportsExternalPlayers = true;
2015-05-24 11:33:28 -07:00
if (isCordova) {
AppInfo.enableAppLayouts = true;
2015-12-14 08:43:03 -07:00
AppInfo.supportsExternalPlayerMenu = true;
2015-05-28 16:37:43 -07:00
AppInfo.isNativeApp = true;
2015-12-14 08:43:03 -07:00
if (isIOS) {
AppInfo.supportsExternalPlayers = false;
}
2015-05-24 11:33:28 -07:00
}
else {
2015-05-21 13:53:14 -07:00
AppInfo.enableSupporterMembership = true;
2015-05-25 10:32:22 -07:00
2015-05-29 18:07:54 -07:00
if (!isAndroid && !isIOS) {
2015-05-25 10:32:22 -07:00
AppInfo.enableAppLayouts = true;
}
2015-05-07 07:04:10 -07:00
}
2015-05-08 09:58:27 -07:00
2015-12-14 08:43:03 -07:00
// This doesn't perform well on iOS
AppInfo.enableHeadRoom = !isIOS;
2015-06-21 14:31:21 -07:00
2015-12-14 08:43:03 -07:00
// This currently isn't working on android, unfortunately
AppInfo.supportsFileInput = !(AppInfo.isNativeApp && isAndroid);
2015-06-21 14:31:21 -07:00
2015-05-27 22:51:48 -07:00
AppInfo.hasPhysicalVolumeButtons = isCordova || isMobile;
2015-06-17 18:41:22 -07:00
AppInfo.enableBackButton = isIOS && (window.navigator.standalone || AppInfo.isNativeApp);
2015-06-09 21:01:14 -07:00
AppInfo.supportsSyncPathSetting = isCordova && isAndroid;
2015-06-10 23:27:05 -07:00
2015-07-14 09:39:34 -07:00
if (isCordova && isIOS) {
AppInfo.moreIcon = 'more-horiz';
} else {
AppInfo.moreIcon = 'more-vert';
}
}
2013-04-19 15:09:21 -07:00
2014-10-25 11:32:58 -07:00
function initializeApiClient(apiClient) {
2016-02-07 14:16:02 -07:00
if (AppInfo.enableAppStorePolicy) {
2016-02-09 10:13:50 -07:00
apiClient.getAvailablePlugins = function () {
2016-02-07 14:16:02 -07:00
return Promise.resolve([]);
};
apiClient.getInstalledPlugins = function () {
return Promise.resolve([]);
};
}
2015-06-08 14:32:20 -07:00
apiClient.getDefaultImageQuality = Dashboard.getDefaultImageQuality;
apiClient.normalizeImageOptions = Dashboard.normalizeImageOptions;
2015-05-16 12:09:02 -07:00
2015-12-23 10:46:01 -07:00
Events.off(apiClient, 'websocketmessage', Dashboard.onWebSocketMessageReceived);
Events.on(apiClient, 'websocketmessage', Dashboard.onWebSocketMessageReceived);
2015-06-29 11:45:42 -07:00
2015-12-23 10:46:01 -07:00
Events.off(apiClient, 'requestfail', Dashboard.onRequestFail);
Events.on(apiClient, 'requestfail', Dashboard.onRequestFail);
2014-10-25 11:32:58 -07:00
}
2015-05-25 10:32:22 -07:00
2015-12-30 10:02:11 -07:00
function getSyncProfile() {
2016-05-05 20:09:36 -07:00
return Dashboard.getDeviceProfile(Math.max(screen.height, screen.width));
2015-12-30 10:02:11 -07:00
}
function onApiClientCreated(e, newApiClient) {
initializeApiClient(newApiClient);
2016-02-28 14:31:45 -07:00
// This is not included in jQuery slim
2016-03-15 22:33:31 -07:00
if (window.$) {
$.ajax = newApiClient.ajax;
}
2015-12-30 10:02:11 -07:00
}
2016-03-14 19:09:03 -07:00
function defineConnectionManager(connectionManager) {
2016-04-18 11:50:29 -07:00
window.ConnectionManager = connectionManager;
2016-03-14 19:09:03 -07:00
define('connectionManager', [], function () {
return connectionManager;
});
}
2016-03-15 22:33:31 -07:00
var localApiClient;
function bindConnectionManagerEvents(connectionManager, events) {
2016-04-18 11:50:29 -07:00
Events.on(ConnectionManager, 'apiclientcreated', onApiClientCreated);
2016-03-15 22:33:31 -07:00
connectionManager.currentApiClient = function () {
if (!localApiClient) {
var server = connectionManager.getLastUsedServer();
2016-03-16 11:53:09 -07:00
if (server) {
localApiClient = connectionManager.getApiClient(server.Id);
}
2016-03-15 22:33:31 -07:00
}
return localApiClient;
};
//events.on(connectionManager, 'apiclientcreated', function (e, newApiClient) {
// //$(newApiClient).on("websocketmessage", Dashboard.onWebSocketMessageReceived).on('requestfail', Dashboard.onRequestFail);
// newApiClient.normalizeImageOptions = normalizeImageOptions;
//});
events.on(connectionManager, 'localusersignedin', function (e, user) {
localApiClient = connectionManager.getApiClient(user.ServerId);
2016-03-15 23:07:11 -07:00
window.ApiClient = localApiClient;
2016-03-15 22:33:31 -07:00
});
}
2015-05-24 11:33:28 -07:00
//localStorage.clear();
2015-12-23 10:46:01 -07:00
function createConnectionManager(credentialProviderFactory, capabilities) {
2015-05-01 11:37:01 -07:00
2015-12-30 10:02:11 -07:00
return getSyncProfile().then(function (deviceProfile) {
2015-01-24 23:34:50 -07:00
2016-04-18 11:50:29 -07:00
return new Promise(function (resolve, reject) {
2015-06-18 21:23:55 -07:00
2016-04-18 11:50:29 -07:00
require(['connectionManagerFactory', 'apphost', 'credentialprovider', 'events'], function (connectionManagerExports, apphost, credentialProvider, events) {
2014-05-16 21:24:10 -07:00
2016-04-18 11:50:29 -07:00
window.MediaBrowser = Object.assign(window.MediaBrowser || {}, connectionManagerExports);
2016-03-14 19:09:03 -07:00
2016-04-18 11:50:29 -07:00
var credentialProviderInstance = new credentialProvider();
2015-04-01 14:56:32 -07:00
2016-04-18 11:50:29 -07:00
apphost.appInfo().then(function (appInfo) {
2015-04-01 14:56:32 -07:00
2016-04-18 11:50:29 -07:00
var capabilities = Dashboard.capabilities();
capabilities.DeviceProfile = deviceProfile;
2015-04-25 20:25:07 -07:00
2016-04-18 11:50:29 -07:00
connectionManager = new MediaBrowser.ConnectionManager(credentialProviderInstance, appInfo.appName, appInfo.appVersion, appInfo.deviceName, appInfo.deviceId, capabilities, window.devicePixelRatio);
defineConnectionManager(connectionManager);
bindConnectionManagerEvents(connectionManager, events);
if (Dashboard.isConnectMode()) {
resolve();
2016-01-19 20:02:45 -07:00
2016-04-18 11:50:29 -07:00
} else {
2016-01-19 20:02:45 -07:00
2016-04-18 11:50:29 -07:00
console.log('loading ApiClient singleton');
2016-01-19 20:02:45 -07:00
2016-04-18 11:50:29 -07:00
return getRequirePromise(['apiclient']).then(function (apiClientFactory) {
2016-01-19 20:02:45 -07:00
2016-04-18 11:50:29 -07:00
console.log('creating ApiClient singleton');
var apiClient = new apiClientFactory(Dashboard.serverAddress(), appInfo.appName, appInfo.appVersion, appInfo.deviceName, appInfo.deviceId, window.devicePixelRatio);
apiClient.enableAutomaticNetworking = false;
connectionManager.addApiClient(apiClient);
require(['css!' + apiClient.getUrl('Branding/Css')]);
window.ApiClient = apiClient;
localApiClient = apiClient;
console.log('loaded ApiClient singleton');
resolve();
});
2016-04-26 11:28:04 -07:00
}
2016-04-18 11:50:29 -07:00
});
2015-12-23 10:46:01 -07:00
});
2016-04-18 11:50:29 -07:00
});
2015-12-14 08:43:03 -07:00
});
2015-01-24 23:34:50 -07:00
}
2015-01-18 22:41:56 -07:00
2015-05-08 10:30:24 -07:00
function initFastClick() {
2015-12-14 08:43:03 -07:00
require(["fastclick"], function (FastClick) {
2015-05-08 10:30:24 -07:00
2015-07-14 09:39:34 -07:00
FastClick.attach(document.body, {
tapDelay: 0
});
2015-05-08 20:48:43 -07:00
2015-12-14 08:43:03 -07:00
function parentWithClass(elem, className) {
while (!elem.classList || !elem.classList.contains(className)) {
elem = elem.parentNode;
if (!elem) {
return null;
}
}
return elem;
}
2015-05-08 20:48:43 -07:00
// Have to work around this issue of fast click breaking the panel dismiss
2015-12-14 08:43:03 -07:00
document.body.addEventListener('touchstart', function (e) {
var tgt = parentWithClass(e.target, 'ui-panel-dismiss');
if (tgt) {
$(tgt).click();
}
2015-05-08 20:48:43 -07:00
});
2015-05-08 10:30:24 -07:00
});
2015-05-08 20:48:43 -07:00
2015-05-08 10:30:24 -07:00
}
2016-03-12 13:16:42 -07:00
function setDocumentClasses(browser) {
2015-05-01 11:37:01 -07:00
2015-06-28 07:45:21 -07:00
var elem = document.documentElement;
2015-06-17 08:39:46 -07:00
2016-03-12 13:16:42 -07:00
if (!browser.android && !browser.mobile) {
elem.classList.add('smallerDefault');
}
2015-06-17 08:39:46 -07:00
if (AppInfo.isTouchPreferred) {
2015-06-28 07:45:21 -07:00
elem.classList.add('touch');
2015-05-08 09:58:27 -07:00
}
2015-05-06 20:11:51 -07:00
2015-05-07 07:04:10 -07:00
if (!AppInfo.enableStudioTabs) {
2015-06-28 07:45:21 -07:00
elem.classList.add('studioTabDisabled');
2015-05-07 07:04:10 -07:00
}
if (!AppInfo.enableTvEpisodesTab) {
2015-06-28 07:45:21 -07:00
elem.classList.add('tvEpisodesTabDisabled');
2015-05-07 07:04:10 -07:00
}
2015-05-21 13:53:14 -07:00
if (!AppInfo.enableSupporterMembership) {
2015-06-28 07:45:21 -07:00
elem.classList.add('supporterMembershipDisabled');
2015-05-21 13:53:14 -07:00
}
2015-05-28 16:37:43 -07:00
if (AppInfo.isNativeApp) {
2015-06-28 07:45:21 -07:00
elem.classList.add('nativeApp');
2015-06-17 08:39:46 -07:00
}
2015-09-24 10:08:10 -07:00
if (!AppInfo.enableHomeFavorites) {
elem.classList.add('homeFavoritesDisabled');
}
2015-06-17 08:39:46 -07:00
}
2015-10-12 23:31:20 -07:00
function loadTheme() {
var name = getParameterByName('theme');
if (name) {
require(['themes/' + name + '/theme']);
return;
}
var date = new Date();
2015-10-13 12:22:45 -07:00
var month = date.getMonth();
var day = date.getDate();
if (month == 9 && day >= 30) {
2015-10-12 23:31:20 -07:00
require(['themes/halloween/theme']);
return;
}
2015-12-19 21:39:51 -07:00
if (month == 11 && day >= 21 && day <= 26) {
require(['themes/holiday/theme']);
return;
}
2015-10-12 23:31:20 -07:00
}
2016-01-30 12:31:22 -07:00
function returnFirstDependency(obj) {
return obj;
}
2016-02-04 13:51:13 -07:00
function getBowerPath() {
2016-02-05 10:04:38 -07:00
2015-12-14 08:43:03 -07:00
var bowerPath = "bower_components";
// Put the version into the bower path since we can't easily put a query string param on html imports
// Emby server will handle this
2016-02-16 12:58:42 -07:00
if (Dashboard.isConnectMode() && !Dashboard.isRunningInCordova()) {
2016-03-19 14:17:08 -07:00
//bowerPath += window.dashboardVersion;
2015-05-07 07:04:10 -07:00
}
2016-02-04 13:51:13 -07:00
return bowerPath;
}
function initRequire() {
var urlArgs = "v=" + (window.dashboardVersion || new Date().getDate());
var bowerPath = getBowerPath();
2015-12-21 10:48:31 -07:00
var apiClientBowerPath = bowerPath + "/emby-apiclient";
2015-12-26 11:35:53 -07:00
var embyWebComponentsBowerPath = bowerPath + '/emby-webcomponents';
2015-12-21 10:48:31 -07:00
2015-12-14 08:43:03 -07:00
var paths = {
velocity: bowerPath + "/velocity/velocity.min",
2016-04-24 16:27:47 -07:00
ironCardList: 'components/ironcardlist/ironcardlist',
2016-04-23 13:30:45 -07:00
scrollThreshold: 'components/scrollthreshold',
2015-12-14 08:43:03 -07:00
directorybrowser: 'components/directorybrowser/directorybrowser',
collectioneditor: 'components/collectioneditor/collectioneditor',
playlisteditor: 'components/playlisteditor/playlisteditor',
medialibrarycreator: 'components/medialibrarycreator/medialibrarycreator',
medialibraryeditor: 'components/medialibraryeditor/medialibraryeditor',
howler: bowerPath + '/howler.js/howler.min',
sortable: bowerPath + '/Sortable/Sortable.min',
isMobile: bowerPath + '/isMobile/isMobile.min',
headroom: bowerPath + '/headroom.js/dist/headroom.min',
masonry: bowerPath + '/masonry/dist/masonry.pkgd.min',
humanedate: 'components/humanedate',
2016-03-15 22:33:31 -07:00
libraryBrowser: 'scripts/librarybrowser',
chromecasthelpers: 'components/chromecasthelpers',
2015-12-23 10:46:01 -07:00
fastclick: bowerPath + '/fastclick/lib/fastclick',
events: apiClientBowerPath + '/events',
credentialprovider: apiClientBowerPath + '/credentials',
apiclient: apiClientBowerPath + '/apiclient',
2016-04-18 11:50:29 -07:00
connectionManagerFactory: bowerPath + '/emby-apiclient/connectionmanager',
2016-01-12 10:54:37 -07:00
visibleinviewport: embyWebComponentsBowerPath + "/visibleinviewport",
2015-12-26 11:35:53 -07:00
browserdeviceprofile: embyWebComponentsBowerPath + "/browserdeviceprofile",
browser: embyWebComponentsBowerPath + "/browser",
2015-12-30 10:02:11 -07:00
qualityoptions: embyWebComponentsBowerPath + "/qualityoptions",
2016-01-19 20:02:45 -07:00
connectservice: apiClientBowerPath + '/connectservice',
2016-01-20 18:05:14 -07:00
hammer: bowerPath + "/hammerjs/hammer.min",
2016-02-04 11:19:10 -07:00
layoutManager: embyWebComponentsBowerPath + "/layoutmanager",
2016-03-15 22:33:31 -07:00
pageJs: embyWebComponentsBowerPath + '/page.js/page',
2016-01-30 12:31:22 -07:00
focusManager: embyWebComponentsBowerPath + "/focusmanager",
2016-04-26 11:28:04 -07:00
datetime: embyWebComponentsBowerPath + "/datetime",
2016-03-05 11:51:19 -07:00
globalize: embyWebComponentsBowerPath + "/globalize",
2016-05-11 10:46:44 -07:00
itemHelper: embyWebComponentsBowerPath + '/itemhelper',
2016-04-26 11:28:04 -07:00
itemShortcuts: embyWebComponentsBowerPath + "/shortcuts",
2016-01-20 18:05:14 -07:00
imageLoader: embyWebComponentsBowerPath + "/images/imagehelper"
2015-12-14 08:43:03 -07:00
};
2016-01-16 11:29:08 -07:00
if (navigator.webkitPersistentStorage) {
2016-01-20 18:05:14 -07:00
paths.imageFetcher = embyWebComponentsBowerPath + "/images/persistentimagefetcher";
2016-05-12 12:21:43 -07:00
paths.imageFetcher = embyWebComponentsBowerPath + "/images/basicimagefetcher";
2016-01-16 11:29:08 -07:00
} else if (Dashboard.isRunningInCordova()) {
2016-01-20 18:05:14 -07:00
paths.imageFetcher = 'cordova/imagestore';
2016-01-16 11:29:08 -07:00
} else {
2016-01-20 18:05:14 -07:00
paths.imageFetcher = embyWebComponentsBowerPath + "/images/basicimagefetcher";
2016-01-16 11:29:08 -07:00
}
2015-12-15 22:30:14 -07:00
paths.hlsjs = bowerPath + "/hls.js/dist/hls.min";
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova()) {
2016-04-27 19:46:41 -07:00
paths.sharingMenu = "cordova/sharingwidget";
2015-12-14 08:43:03 -07:00
paths.serverdiscovery = "cordova/serverdiscovery";
paths.wakeonlan = "cordova/wakeonlan";
2016-01-30 21:04:00 -07:00
paths.actionsheet = "cordova/actionsheet";
2015-12-14 08:43:03 -07:00
} else {
2015-12-15 22:30:14 -07:00
paths.serverdiscovery = apiClientBowerPath + "/serverdiscovery";
paths.wakeonlan = apiClientBowerPath + "/wakeonlan";
2016-02-21 13:39:14 -07:00
2016-04-28 20:10:48 -07:00
define("sharingMenu", [embyWebComponentsBowerPath + "/sharing/sharingmenu"], returnFirstDependency);
2016-02-21 13:39:14 -07:00
define("actionsheet", [embyWebComponentsBowerPath + "/actionsheet/actionsheet"], returnFirstDependency);
2015-05-26 08:31:50 -07:00
}
2016-04-04 18:23:42 -07:00
define("libjass", [bowerPath + "/libjass/libjass", "css!" + bowerPath + "/libjass/libjass"], returnFirstDependency);
2016-05-12 19:32:12 -07:00
define("recordingCreator", [embyWebComponentsBowerPath + "/recordingcreator/recordingcreator"], returnFirstDependency);
2016-05-11 22:58:05 -07:00
define("mediaInfo", [embyWebComponentsBowerPath + "/mediainfo/mediainfo"], returnFirstDependency);
2016-03-12 00:28:13 -07:00
define("backdrop", [embyWebComponentsBowerPath + "/backdrop/backdrop"], returnFirstDependency);
2016-03-17 09:31:38 -07:00
define("fetchHelper", [embyWebComponentsBowerPath + "/fetchhelper"], returnFirstDependency);
2016-05-12 19:32:12 -07:00
define("tvguide", [embyWebComponentsBowerPath + "/guide/guide", 'embyRouter'], returnFirstDependency);
2016-04-26 11:28:04 -07:00
2016-05-13 21:48:59 -07:00
define("viewManager", [embyWebComponentsBowerPath + "/viewmanager/viewmanager"], function (viewManager) {
2016-03-15 22:33:31 -07:00
viewManager.dispatchPageEvents(true);
return viewManager;
});
2016-03-12 00:28:13 -07:00
2016-05-13 21:48:59 -07:00
// hack for an android test before browserInfo is loaded
if (Dashboard.isRunningInCordova() && window.MainActivity) {
2016-05-13 11:28:05 -07:00
define("shell", ["cordova/android/shell"], returnFirstDependency);
} else {
define("shell", [embyWebComponentsBowerPath + "/shell"], returnFirstDependency);
}
2016-04-27 19:46:41 -07:00
define("sharingmanager", [embyWebComponentsBowerPath + "/sharing/sharingmanager"], returnFirstDependency);
2016-04-29 09:55:11 -07:00
if (Dashboard.isRunningInCordova()) {
paths.apphost = "cordova/apphost";
} else {
paths.apphost = "components/apphost";
}
2016-01-28 13:45:52 -07:00
// hack for an android test before browserInfo is loaded
if (Dashboard.isRunningInCordova() && window.MainActivity) {
paths.appStorage = "cordova/android/appstorage";
} else {
paths.appStorage = apiClientBowerPath + "/appstorage";
}
2016-02-17 19:55:15 -07:00
paths.playlistManager = "scripts/playlistmanager";
2016-02-17 21:57:19 -07:00
paths.syncDialog = "scripts/sync";
2016-02-17 19:55:15 -07:00
2015-12-14 08:43:03 -07:00
var sha1Path = bowerPath + "/cryptojslib/components/sha1-min";
var md5Path = bowerPath + "/cryptojslib/components/md5-min";
var shim = {};
2015-12-14 08:43:03 -07:00
shim[sha1Path] = {
deps: [bowerPath + "/cryptojslib/components/core-min"]
};
2014-04-13 10:27:13 -07:00
2015-12-14 08:43:03 -07:00
shim[md5Path] = {
deps: [bowerPath + "/cryptojslib/components/core-min"]
};
2015-12-14 08:43:03 -07:00
requirejs.config({
2016-01-17 00:04:56 -07:00
waitSeconds: 0,
2015-12-14 08:43:03 -07:00
map: {
'*': {
2016-05-12 19:32:12 -07:00
'css': bowerPath + '/emby-webcomponents/require/requirecss',
'html': bowerPath + '/emby-webcomponents/require/requirehtml',
'text': bowerPath + '/emby-webcomponents/require/requiretext'
2015-12-14 08:43:03 -07:00
}
},
urlArgs: urlArgs,
2014-04-13 10:27:13 -07:00
2015-12-14 08:43:03 -07:00
paths: paths,
shim: shim
});
2013-09-09 11:23:55 -07:00
2015-12-14 08:43:03 -07:00
define("cryptojs-sha1", [sha1Path]);
define("cryptojs-md5", [md5Path]);
2015-05-08 20:48:43 -07:00
2015-12-14 08:43:03 -07:00
// Done
define("emby-icons", ["html!" + bowerPath + "/emby-icons/emby-icons.html"]);
2014-10-25 11:32:58 -07:00
2016-04-23 12:14:13 -07:00
define("lazyload-image", ["html!" + bowerPath + "/emby-lazyload-image/lazyload-image.html"]);
2015-12-14 08:43:03 -07:00
define("paper-spinner", ["html!" + bowerPath + "/paper-spinner/paper-spinner.html"]);
define("paper-toast", ["html!" + bowerPath + "/paper-toast/paper-toast.html"]);
define("paper-slider", ["html!" + bowerPath + "/paper-slider/paper-slider.html"]);
define("paper-tabs", ["html!" + bowerPath + "/paper-tabs/paper-tabs.html"]);
define("paper-menu", ["html!" + bowerPath + "/paper-menu/paper-menu.html"]);
2016-02-09 11:44:07 -07:00
define("paper-material", ["html!" + bowerPath + "/paper-material/paper-material.html"]);
2015-12-14 08:43:03 -07:00
define("paper-dialog", ["html!" + bowerPath + "/paper-dialog/paper-dialog.html"]);
define("paper-dialog-scrollable", ["html!" + bowerPath + "/paper-dialog-scrollable/paper-dialog-scrollable.html"]);
define("paper-button", ["html!" + bowerPath + "/paper-button/paper-button.html"]);
define("paper-icon-button", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button.html"]);
2016-05-06 10:49:58 -07:00
define("paper-icon-button-light", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button-light.html", 'css!css/polymer/paper-icon-button-light.css']);
2015-12-14 08:43:03 -07:00
define("paper-drawer-panel", ["html!" + bowerPath + "/paper-drawer-panel/paper-drawer-panel.html"]);
define("paper-radio-group", ["html!" + bowerPath + "/paper-radio-group/paper-radio-group.html"]);
define("paper-radio-button", ["html!" + bowerPath + "/paper-radio-button/paper-radio-button.html"]);
define("neon-animated-pages", ["html!" + bowerPath + "/neon-animation/neon-animated-pages.html"]);
2015-12-15 12:15:46 -07:00
define("paper-toggle-button", ["html!" + bowerPath + "/paper-toggle-button/paper-toggle-button.html"]);
2015-05-08 20:48:43 -07:00
2015-12-14 08:43:03 -07:00
define("slide-right-animation", ["html!" + bowerPath + "/neon-animation/animations/slide-right-animation.html"]);
define("slide-left-animation", ["html!" + bowerPath + "/neon-animation/animations/slide-left-animation.html"]);
define("slide-from-right-animation", ["html!" + bowerPath + "/neon-animation/animations/slide-from-right-animation.html"]);
define("slide-from-left-animation", ["html!" + bowerPath + "/neon-animation/animations/slide-from-left-animation.html"]);
define("paper-textarea", ["html!" + bowerPath + "/paper-input/paper-textarea.html"]);
define("paper-item", ["html!" + bowerPath + "/paper-item/paper-item.html"]);
define("paper-checkbox", ["html!" + bowerPath + "/paper-checkbox/paper-checkbox.html"]);
define("fade-in-animation", ["html!" + bowerPath + "/neon-animation/animations/fade-in-animation.html"]);
define("fade-out-animation", ["html!" + bowerPath + "/neon-animation/animations/fade-out-animation.html"]);
define("scale-up-animation", ["html!" + bowerPath + "/neon-animation/animations/scale-up-animation.html"]);
define("paper-fab", ["html!" + bowerPath + "/paper-fab/paper-fab.html"]);
2016-04-21 10:59:47 -07:00
define("iron-list", ["html!" + bowerPath + "/iron-list/iron-list.html"]);
define("iron-scroll-threshold", ["html!" + bowerPath + "/iron-scroll-threshold/iron-scroll-threshold.html"]);
2015-12-14 08:43:03 -07:00
define("paper-progress", ["html!" + bowerPath + "/paper-progress/paper-progress.html"]);
define("paper-input", ["html!" + bowerPath + "/paper-input/paper-input.html"]);
define("paper-icon-item", ["html!" + bowerPath + "/paper-item/paper-icon-item.html"]);
define("paper-item-body", ["html!" + bowerPath + "/paper-item/paper-item-body.html"]);
2016-02-07 12:47:09 -07:00
define("paper-collapse-item", ["html!" + bowerPath + "/paper-collapse-item/paper-collapse-item.html"]);
2016-03-01 20:27:33 -07:00
define("emby-collapsible", ["html!" + bowerPath + "/emby-collapsible/emby-collapsible.html"]);
2016-02-07 12:47:09 -07:00
2016-02-24 10:43:06 -07:00
define("jstree", [bowerPath + "/jstree/dist/jstree", "css!thirdparty/jstree/themes/default/style.min.css"]);
2014-07-08 17:46:11 -07:00
2016-02-07 22:59:33 -07:00
define("jqmbase", ['css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.css']);
define("jqmicons", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css']);
define("jqmtable", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.table", 'css!thirdparty/jquerymobile-1.4.5/jqm.table.css']);
2014-07-08 17:46:11 -07:00
2016-02-07 22:59:33 -07:00
define("jqmwidget", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.widget"]);
2015-05-17 19:52:52 -07:00
2016-02-07 22:59:33 -07:00
define("jqmslider", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.slider", 'css!thirdparty/jquerymobile-1.4.5/jqm.slider.css']);
2015-05-26 08:31:50 -07:00
2016-02-07 22:59:33 -07:00
define("jqmpopup", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.popup", 'css!thirdparty/jquerymobile-1.4.5/jqm.popup.css']);
2015-05-27 22:51:48 -07:00
2016-02-07 22:59:33 -07:00
define("jqmlistview", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jqm.listview.css']);
2015-05-27 22:51:48 -07:00
2016-02-07 22:59:33 -07:00
define("jqmcontrolgroup", ['jqmbase', 'css!thirdparty/jquerymobile-1.4.5/jqm.controlgroup.css']);
2015-06-17 08:39:46 -07:00
2016-02-07 22:59:33 -07:00
define("jqmcollapsible", ['jqmbase', "jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.collapsible", 'css!thirdparty/jquerymobile-1.4.5/jqm.collapsible.css']);
2015-09-24 10:08:10 -07:00
2016-02-07 22:59:33 -07:00
define("jqmcheckbox", ['jqmbase', "jqmicons", "thirdparty/jquerymobile-1.4.5/jqm.checkbox", 'css!thirdparty/jquerymobile-1.4.5/jqm.checkbox.css']);
2014-10-06 16:58:46 -07:00
2016-02-07 22:59:33 -07:00
define("jqmpanel", ['jqmbase', "thirdparty/jquerymobile-1.4.5/jqm.panel", 'css!thirdparty/jquerymobile-1.4.5/jqm.panel.css']);
2015-05-08 20:48:43 -07:00
2016-01-30 23:03:40 -07:00
define("iron-icon-set", ["html!" + bowerPath + "/iron-icon/iron-icon.html", "html!" + bowerPath + "/iron-iconset-svg/iron-iconset-svg.html"]);
define("slideshow", [embyWebComponentsBowerPath + "/slideshow/slideshow"], returnFirstDependency);
2015-09-29 09:29:06 -07:00
2015-12-14 08:43:03 -07:00
define('fetch', [bowerPath + '/fetch/fetch']);
2016-03-30 19:00:05 -07:00
define('objectassign', [embyWebComponentsBowerPath + '/objectassign']);
2015-12-14 08:43:03 -07:00
define('webcomponentsjs', [bowerPath + '/webcomponentsjs/webcomponents-lite.min.js']);
define('native-promise-only', [bowerPath + '/native-promise-only/lib/npo.src']);
2016-04-18 11:50:29 -07:00
define("fingerprintjs2", [bowerPath + '/fingerprintjs2/fingerprint2'], returnFirstDependency);
2016-04-26 11:28:04 -07:00
define("clearButtonStyle", ['css!' + embyWebComponentsBowerPath + '/clearbutton']);
2015-10-01 23:14:04 -07:00
if (Dashboard.isRunningInCordova()) {
2016-04-26 11:28:04 -07:00
define('registrationservices', ['cordova/registrationservices'], returnFirstDependency);
2015-12-14 08:43:03 -07:00
2015-10-01 23:14:04 -07:00
} else {
2016-04-26 11:28:04 -07:00
define('registrationservices', ['scripts/registrationservices'], returnFirstDependency);
2015-10-01 23:14:04 -07:00
}
2015-12-15 22:30:14 -07:00
if (Dashboard.isRunningInCordova()) {
define("localassetmanager", ["cordova/localassetmanager"]);
define("fileupload", ["cordova/fileupload"]);
} else {
define("localassetmanager", [apiClientBowerPath + "/localassetmanager"]);
define("fileupload", [apiClientBowerPath + "/fileupload"]);
}
define("connectionmanager", [apiClientBowerPath + "/connectionmanager"]);
define("contentuploader", [apiClientBowerPath + "/sync/contentuploader"]);
define("serversync", [apiClientBowerPath + "/sync/serversync"]);
define("multiserversync", [apiClientBowerPath + "/sync/multiserversync"]);
define("offlineusersync", [apiClientBowerPath + "/sync/offlineusersync"]);
define("mediasync", [apiClientBowerPath + "/sync/mediasync"]);
2016-01-30 12:31:22 -07:00
2016-01-30 23:03:40 -07:00
define("swiper", [bowerPath + "/Swiper/dist/js/swiper.min", "css!" + bowerPath + "/Swiper/dist/css/swiper.min"], returnFirstDependency);
2016-02-16 09:15:36 -07:00
define("toast", [embyWebComponentsBowerPath + "/toast/toast"], returnFirstDependency);
2016-02-29 09:23:30 -07:00
define("scrollHelper", [embyWebComponentsBowerPath + "/scrollhelper"], returnFirstDependency);
2016-01-30 12:31:22 -07:00
2016-02-29 23:02:03 -07:00
define("appSettings", [embyWebComponentsBowerPath + "/appsettings"], updateAppSettings);
2016-03-01 21:46:10 -07:00
define("userSettings", [embyWebComponentsBowerPath + "/usersettings"], returnFirstDependency);
2016-02-29 23:02:03 -07:00
2016-03-12 13:16:42 -07:00
define("robotoFont", ['css!' + embyWebComponentsBowerPath + '/fonts/roboto/style']);
define("opensansFont", ['css!' + embyWebComponentsBowerPath + '/fonts/opensans/style']);
define("montserratFont", ['css!' + embyWebComponentsBowerPath + '/fonts/montserrat/style']);
2016-04-10 21:24:16 -07:00
define("scrollStyles", ['css!' + embyWebComponentsBowerPath + '/scrollstyles']);
2016-03-12 13:16:42 -07:00
2016-03-14 19:09:03 -07:00
define("viewcontainer", ['components/viewcontainer-lite'], returnFirstDependency);
define('queryString', [bowerPath + '/query-string/index'], function () {
2016-03-14 13:00:18 -07:00
return queryString;
});
2016-03-22 21:07:24 -07:00
define("material-design-lite", [bowerPath + "/material-design-lite/material.min", "css!" + bowerPath + "/material-design-lite/material"]);
define("MaterialSpinner", ["material-design-lite"]);
2016-03-15 22:33:31 -07:00
define("jQuery", [bowerPath + '/jquery/dist/jquery.slim.min'], function () {
require(['legacy/fnchecked']);
if (window.ApiClient) {
jQuery.ajax = ApiClient.ajax;
}
return jQuery;
});
2016-05-13 11:28:05 -07:00
define("dialogHelper", [embyWebComponentsBowerPath + "/dialoghelper/dialoghelper"], function (dialoghelper) {
dialoghelper.setOnOpen(onDialogOpen);
return dialoghelper;
});
2016-01-30 12:31:22 -07:00
// alias
define("historyManager", [], function () {
2016-03-15 22:33:31 -07:00
return Emby.Page;
2016-01-30 12:31:22 -07:00
});
2016-01-30 23:03:40 -07:00
// mock this for now. not used in this app
define("inputManager", [], function () {
return {
on: function () {
},
off: function () {
}
};
});
2016-03-14 19:09:03 -07:00
// mock this for now. not used in this app
define("skinManager", [], function () {
2016-03-16 11:09:58 -07:00
2016-03-14 19:09:03 -07:00
return {
2016-03-15 22:33:31 -07:00
loadUserSkin: function () {
2016-03-16 11:09:58 -07:00
2016-03-15 22:33:31 -07:00
Emby.Page.show('/home.html');
}
2016-03-14 19:09:03 -07:00
};
});
2016-04-26 11:28:04 -07:00
// mock this for now. not used in this app
define("playbackManager", [], function () {
return {
};
});
2016-03-14 19:09:03 -07:00
// mock this for now. not used in this app
define("pluginManager", [], function () {
return {
};
});
2016-01-30 23:03:40 -07:00
define("connectionManager", [], function () {
return ConnectionManager;
});
2016-02-05 23:33:34 -07:00
2016-03-01 21:46:10 -07:00
define('apiClientResolver', [], function () {
return function () {
return window.ApiClient;
};
});
2016-04-26 11:28:04 -07:00
define("embyRouter", [embyWebComponentsBowerPath + '/router'], function (embyRouter) {
2016-03-15 22:33:31 -07:00
embyRouter.showLocalLogin = function (apiClient, serverId, manualLogin) {
Dashboard.navigate('login.html?serverid=' + serverId);
};
embyRouter.showSelectServer = function () {
Dashboard.navigate('selectserver.html');
};
embyRouter.showWelcome = function () {
if (Dashboard.isConnectMode()) {
Dashboard.navigate('connectlogin.html?mode=welcome');
} else {
Dashboard.navigate('login.html');
}
};
embyRouter.showSettings = function () {
Dashboard.navigate('mypreferencesmenu.html?userId=' + ApiClient.getCurrentUserId());
};
2016-04-26 11:28:04 -07:00
embyRouter.showItem = function (item) {
if (typeof (item) === 'string') {
require(['connectionManager'], function (connectionManager) {
var apiClient = connectionManager.currentApiClient();
apiClient.getItem(apiClient.getCurrentUserId(), item).then(showItem);
});
} else {
Dashboard.navigate(LibraryBrowser.getHref(item));
}
};
2016-03-15 22:33:31 -07:00
return embyRouter;
});
2016-02-05 23:33:34 -07:00
}
2016-02-29 23:02:03 -07:00
function updateAppSettings(appSettings) {
appSettings.enableExternalPlayers = function (val) {
if (val != null) {
appSettings.set('externalplayers', val.toString());
}
return appSettings.get('externalplayers') == 'true';
};
return appSettings;
}
2016-05-13 11:28:05 -07:00
function onDialogOpen(dlg) {
if (dlg.classList.contains('formDialog')) {
if (!dlg.classList.contains('background-theme-a')) {
dlg.classList.add('background-theme-b');
dlg.classList.add('ui-body-b');
}
}
2015-12-14 08:43:03 -07:00
}
2015-10-01 23:14:04 -07:00
2016-02-04 13:51:13 -07:00
function initRequireWithBrowser(browser) {
2016-02-05 10:04:38 -07:00
2016-02-04 13:51:13 -07:00
var bowerPath = getBowerPath();
var embyWebComponentsBowerPath = bowerPath + '/emby-webcomponents';
2016-03-06 21:56:45 -07:00
if (browser.mobile) {
2016-02-04 13:51:13 -07:00
define("prompt", [embyWebComponentsBowerPath + "/prompt/nativeprompt"], returnFirstDependency);
2016-02-22 11:30:38 -07:00
define("confirm", [embyWebComponentsBowerPath + "/confirm/nativeconfirm"], returnFirstDependency);
2016-04-09 19:27:09 -07:00
define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency);
2016-02-04 13:51:13 -07:00
} else {
define("prompt", [embyWebComponentsBowerPath + "/prompt/prompt"], returnFirstDependency);
2016-02-22 11:30:38 -07:00
define("confirm", [embyWebComponentsBowerPath + "/confirm/confirm"], returnFirstDependency);
2016-02-26 13:29:27 -07:00
define("alert", [embyWebComponentsBowerPath + "/alert/alert"], returnFirstDependency);
2016-02-04 13:51:13 -07:00
}
2016-03-09 10:40:22 -07:00
2016-05-07 23:31:08 -07:00
if (browser.tv) {
2016-03-09 10:40:22 -07:00
define("loading", [embyWebComponentsBowerPath + "/loading/loading-smarttv"], returnFirstDependency);
} else {
define("loading", [embyWebComponentsBowerPath + "/loading/loading-lite"], returnFirstDependency);
}
2016-03-28 22:16:44 -07:00
2016-04-18 13:43:57 -07:00
define("multi-download", [embyWebComponentsBowerPath + '/multidownload'], returnFirstDependency);
2016-04-17 22:58:08 -07:00
2016-03-28 22:16:44 -07:00
if (Dashboard.isRunningInCordova() && browser.android) {
2016-03-29 12:08:10 -07:00
define("fileDownloader", ['cordova/android/filedownloader'], returnFirstDependency);
2016-03-28 22:16:44 -07:00
} else {
2016-04-17 22:58:08 -07:00
define("fileDownloader", [embyWebComponentsBowerPath + '/filedownloader'], returnFirstDependency);
2016-03-28 22:16:44 -07:00
}
2016-02-04 13:51:13 -07:00
}
2016-04-18 19:07:31 -07:00
function init() {
2015-05-08 20:48:43 -07:00
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova() && browserInfo.android) {
2015-06-19 21:48:45 -07:00
define("nativedirectorychooser", ["cordova/android/nativedirectorychooser"]);
2015-06-09 21:01:14 -07:00
}
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova() && browserInfo.android) {
2016-04-28 10:21:28 -07:00
2016-01-20 11:11:15 -07:00
if (MainActivity.getChromeVersion() >= 48) {
2016-02-05 09:04:31 -07:00
define("audiorenderer", ["scripts/htmlmediarenderer"]);
//define("audiorenderer", ["cordova/android/vlcplayer"]);
2016-01-20 11:11:15 -07:00
} else {
2016-02-05 09:04:31 -07:00
window.VlcAudio = true;
2016-01-20 11:11:15 -07:00
define("audiorenderer", ["cordova/android/vlcplayer"]);
}
2015-07-05 11:34:52 -07:00
define("videorenderer", ["cordova/android/vlcplayer"]);
2015-06-10 06:37:07 -07:00
}
2015-12-14 08:43:03 -07:00
else if (Dashboard.isRunningInCordova() && browserInfo.safari) {
2016-04-28 10:21:28 -07:00
define("audiorenderer", ["cordova/audioplayer"]);
2015-09-09 20:22:52 -07:00
define("videorenderer", ["scripts/htmlmediarenderer"]);
}
2015-06-10 06:37:07 -07:00
else {
define("audiorenderer", ["scripts/htmlmediarenderer"]);
define("videorenderer", ["scripts/htmlmediarenderer"]);
}
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova() && browserInfo.android) {
2015-08-12 14:39:02 -07:00
define("localsync", ["cordova/android/localsync"]);
}
else {
define("localsync", ["scripts/localsync"]);
}
2016-04-18 11:01:50 -07:00
define("livetvcss", ['css!css/livetv.css']);
define("detailtablecss", ['css!css/detailtable.css']);
2015-12-14 08:43:03 -07:00
define("tileitemcss", ['css!css/tileitem.css']);
2015-06-19 09:36:51 -07:00
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova() && browserInfo.safari) {
2015-07-10 07:25:18 -07:00
define("searchmenu", ["cordova/searchmenu"]);
} else {
define("searchmenu", ["scripts/searchmenu"]);
}
2015-12-14 08:43:03 -07:00
define("buttonenabled", ["legacy/buttonenabled"]);
2015-10-13 12:22:45 -07:00
var deps = [];
2015-12-23 10:46:01 -07:00
deps.push('events');
2015-09-09 10:49:44 -07:00
2015-12-14 08:43:03 -07:00
deps.push('scripts/mediacontroller');
deps.push('paper-drawer-panel');
2015-12-23 10:46:01 -07:00
require(deps, function (events) {
window.Events = events;
2015-09-09 10:49:44 -07:00
2015-12-14 08:43:03 -07:00
initAfterDependencies();
2015-09-09 10:49:44 -07:00
});
}
2015-12-14 08:43:03 -07:00
function getRequirePromise(deps) {
return new Promise(function (resolve, reject) {
require(deps, resolve);
});
}
function initAfterDependencies() {
2015-05-19 12:15:40 -07:00
2015-07-13 14:26:11 -07:00
var drawer = document.querySelector('.mainDrawerPanel');
drawer.classList.remove('mainDrawerPanelPreInit');
drawer.forceNarrow = true;
2016-03-27 20:37:33 -07:00
2015-07-16 05:56:38 -07:00
var drawerWidth = screen.availWidth - 50;
// At least 240
drawerWidth = Math.max(drawerWidth, 240);
2016-03-27 20:37:33 -07:00
// But not exceeding 270
drawerWidth = Math.min(drawerWidth, 270);
2015-07-23 07:58:27 -07:00
2015-07-16 05:56:38 -07:00
drawer.drawerWidth = drawerWidth + "px";
2015-06-21 14:31:21 -07:00
2015-12-14 08:43:03 -07:00
if (browserInfo.safari) {
2015-07-13 14:26:11 -07:00
drawer.disableEdgeSwipe = true;
}
2015-06-21 14:31:21 -07:00
2016-04-29 21:00:14 -07:00
// Default is 600px
drawer.responsiveWidth = '640px';
2015-07-27 11:18:10 -07:00
var deps = [];
2015-12-30 10:02:11 -07:00
deps.push('scripts/extensions');
2015-06-08 14:32:20 -07:00
2016-03-06 11:09:20 -07:00
if (!window.fetch) {
deps.push('fetch');
}
2016-03-16 13:38:01 -07:00
if (typeof Object.assign != 'function') {
deps.push('objectassign');
}
2016-04-18 11:50:29 -07:00
require(deps, function () {
2015-12-23 10:46:01 -07:00
2016-04-18 11:50:29 -07:00
createConnectionManager().then(function () {
2015-12-14 08:43:03 -07:00
2016-01-19 20:02:45 -07:00
console.log('initAfterDependencies promises resolved');
2015-12-14 08:43:03 -07:00
MediaController.init();
2016-03-05 11:51:19 -07:00
require(['globalize'], function (globalize) {
2015-07-27 12:16:30 -07:00
2016-03-05 11:51:19 -07:00
window.Globalize = globalize;
2015-07-27 19:05:06 -07:00
2016-05-12 12:21:43 -07:00
Promise.all([loadCoreDictionary(globalize), loadSharedComponentsDictionary(globalize)]).then(onGlobalizeInit);
2016-03-05 11:51:19 -07:00
});
});
});
}
2015-09-01 19:56:19 -07:00
2016-05-12 12:21:43 -07:00
function loadSharedComponentsDictionary(globalize) {
var baseUrl = 'bower_components/emby-webcomponents/strings/';
2016-05-15 11:52:36 -07:00
var languages = ['en-US', 'kk', 'ru'];
2016-05-12 12:21:43 -07:00
var translations = languages.map(function (i) {
return {
lang: i,
path: baseUrl + i + '.json'
};
});
globalize.loadStrings({
name: 'sharedcomponents',
translations: translations
});
}
2016-03-05 11:51:19 -07:00
function loadCoreDictionary(globalize) {
2015-07-27 19:05:06 -07:00
2016-03-05 11:51:19 -07:00
var baseUrl = 'strings/';
2015-08-31 21:15:10 -07:00
2016-04-08 21:16:53 -07:00
var languages = ['ar', 'bg-BG', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', 'en-US', 'es-AR', 'es-MX', 'es', 'fi', 'fr', 'gsw', 'he', 'hr', 'hu', 'id', 'it', 'kk', 'ko', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 'sl-SI', 'sv', 'tr', 'uk', 'vi', 'zh-CN', 'zh-HK', 'zh-TW'];
2015-08-31 21:15:10 -07:00
2016-03-05 11:51:19 -07:00
var translations = languages.map(function (i) {
return {
lang: i,
path: baseUrl + i + '.json'
};
});
2015-08-31 21:15:10 -07:00
2016-03-05 11:51:19 -07:00
globalize.defaultModule('core');
2015-08-31 21:15:10 -07:00
2016-03-05 11:51:19 -07:00
return globalize.loadStrings({
name: 'core',
translations: translations
});
}
2015-08-31 21:15:10 -07:00
2016-03-05 11:51:19 -07:00
function onGlobalizeInit() {
2016-03-15 22:33:31 -07:00
2016-03-05 12:07:58 -07:00
document.title = Globalize.translateDocument(document.title, 'core');
2015-09-01 19:56:19 -07:00
2016-03-15 22:33:31 -07:00
onAppReady();
}
2016-02-14 13:34:54 -07:00
2016-03-15 22:33:31 -07:00
function defineRoute(newRoute, dictionary) {
2015-07-27 12:16:30 -07:00
2016-03-15 22:33:31 -07:00
var baseRoute = Emby.Page.baseUrl();
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
var path = newRoute.path;
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
path = path.replace(baseRoute, '');
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
console.log('Defining route: ' + path);
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
newRoute.dictionary = newRoute.dictionary || dictionary || 'core';
Emby.Page.addRoute(path, newRoute);
}
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
function defineCoreRoutes() {
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
console.log('Defining core routes');
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
defineRoute({
path: '/about.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
2016-03-16 22:04:32 -07:00
controller: 'scripts/aboutpage',
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
defineRoute({
path: '/addplugin.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
defineRoute({
path: '/appservices.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
2016-03-05 11:51:19 -07:00
2016-03-15 22:33:31 -07:00
defineRoute({
path: '/autoorganizelog.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/autoorganizesmart.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/autoorganizetv.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/channelitems.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/channels.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/channelsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/cinemamodeconfiguration.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/collections.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/connectlogin.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/dashboard.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dashboardgeneral.html',
2016-03-27 20:37:33 -07:00
dependencies: ['emby-collapsible', 'paper-textarea', 'paper-input', 'paper-checkbox'],
controller: 'scripts/dashboardgeneral',
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dashboardhosting.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/device.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/devices.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/devicesupload.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dlnaprofile.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dlnaprofiles.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dlnaserversettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/dlnasettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/edititemmetadata.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/encodingsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/favorites.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-30 23:33:37 -07:00
autoFocus: false,
controller: 'scripts/favorites'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/forgotpassword.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
anonymous: true
});
defineRoute({
path: '/forgotpasswordpin.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/gamegenres.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/games.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/gamesrecommended.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/gamestudios.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/gamesystems.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/home.html',
2016-05-15 09:30:32 -07:00
dependencies: [],
2016-03-16 13:38:01 -07:00
autoFocus: false,
controller: 'scripts/indexpage'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/index.html',
2016-03-16 13:38:01 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
isDefaultRoute: true
});
defineRoute({
path: '/itemdetails.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/itemlist.html',
2016-03-18 12:43:17 -07:00
dependencies: ['paper-checkbox', 'scripts/alphapicker'],
autoFocus: false,
controller: 'scripts/itemlistpage'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/kids.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/library.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/librarypathmapping.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/librarysettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/livetv.html',
2016-05-15 11:52:36 -07:00
dependencies: ['paper-button', 'livetvcss'],
2016-05-15 10:11:26 -07:00
controller: 'scripts/livetvsuggested',
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/livetvguideprovider.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/livetvitems.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/livetvrecordinglist.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/livetvseriestimer.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/livetvsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/livetvstatus.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/livetvtunerprovider-hdhomerun.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/livetvtunerprovider-m3u.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/livetvtunerprovider-satip.html',
2016-03-17 11:19:39 -07:00
dependencies: ['paper-input', 'paper-checkbox'],
2016-03-16 22:04:32 -07:00
autoFocus: false,
2016-03-17 11:19:39 -07:00
roles: 'admin',
controller: 'scripts/livetvtunerprovider-satip'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/log.html',
2016-03-27 20:37:33 -07:00
dependencies: ['paper-toggle-button'],
roles: 'admin',
controller: 'scripts/logpage'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/login.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/metadata.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/metadataadvanced.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/metadataimages.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/metadatanfo.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/metadatasubtitles.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/movies.html',
2016-05-15 09:30:32 -07:00
dependencies: ['paper-checkbox', 'paper-fab', 'scripts/alphapicker', 'paper-button'],
2016-04-03 11:47:49 -07:00
autoFocus: false,
controller: 'scripts/moviesrecommended'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/music.html',
2016-05-15 11:52:36 -07:00
dependencies: ['scripts/alphapicker'],
controller: 'scripts/musicrecommended',
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mypreferencesdisplay.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mypreferenceshome.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mypreferenceslanguages.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mypreferencesmenu.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/myprofile.html',
2016-04-22 09:12:03 -07:00
dependencies: ['paper-button'],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mysync.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mysyncjob.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/mysyncsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/notificationlist.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/notificationsetting.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/notificationsettings.html',
2016-04-12 22:28:45 -07:00
controller: 'scripts/notificationsettings',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/nowplaying.html',
2016-05-15 09:30:32 -07:00
dependencies: ['paper-icon-button-light', 'paper-slider', 'paper-button'],
2016-05-11 07:36:28 -07:00
controller: 'scripts/nowplayingpage',
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/photos.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/playbackconfiguration.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/playlists.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/plugincatalog.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/plugins.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/reports.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/scheduledtask.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/scheduledtasks.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/search.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/secondaryitems.html',
2016-03-18 12:43:17 -07:00
dependencies: [],
autoFocus: false,
controller: 'scripts/secondaryitems'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/selectserver.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/serversecurity.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/shared.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/streamingsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/support.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/supporterkey.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/syncactivity.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/syncjob.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/syncsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/tv.html',
2016-05-15 09:30:32 -07:00
dependencies: ['paper-checkbox', 'paper-icon-button-light', 'paper-button'],
2016-03-16 22:04:32 -07:00
autoFocus: false,
controller: 'scripts/tvrecommended'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/useredit.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/userlibraryaccess.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/usernew.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/userparentalcontrol.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/userpassword.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false
});
defineRoute({
path: '/userprofiles.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-16 22:04:32 -07:00
autoFocus: false,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/wizardagreement.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardfinish.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardlibrary.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardlivetvguide.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardlivetvtuner.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardservice.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardsettings.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizardstart.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/wizarduser.html',
2016-03-19 08:38:05 -07:00
dependencies: [],
2016-03-15 22:33:31 -07:00
autoFocus: false,
anonymous: true
});
defineRoute({
path: '/configurationpage',
dependencies: ['jQuery'],
autoFocus: false,
enableCache: false,
2016-03-16 22:04:32 -07:00
enableContentQueryString: true,
roles: 'admin'
2016-03-15 22:33:31 -07:00
});
defineRoute({
path: '/',
isDefaultRoute: true,
autoFocus: false,
dependencies: []
});
2015-05-19 12:15:40 -07:00
}
2015-12-14 08:43:03 -07:00
function onAppReady() {
2015-09-10 11:28:22 -07:00
2016-03-15 22:33:31 -07:00
require(['scripts/mediaplayer'], function () {
MediaPlayer.init();
});
2016-01-19 20:02:45 -07:00
console.log('Begin onAppReady');
2015-09-23 09:16:06 -07:00
var deps = [];
2016-01-20 18:05:14 -07:00
deps.push('imageLoader');
2016-04-26 11:28:04 -07:00
deps.push('embyRouter');
2016-04-11 07:07:34 -07:00
deps.push('layoutManager');
2016-01-20 18:05:14 -07:00
2015-12-14 08:43:03 -07:00
if (!(AppInfo.isNativeApp && browserInfo.android)) {
document.documentElement.classList.add('minimumSizeTabs');
}
// Do these now to prevent a flash of content
if (AppInfo.isNativeApp && browserInfo.android) {
deps.push('css!devices/android/android.css');
} else if (AppInfo.isNativeApp && browserInfo.safari) {
deps.push('css!devices/ios/ios.css');
2016-02-17 19:55:15 -07:00
} else if (AppInfo.isNativeApp && browserInfo.edge) {
deps.push('css!devices/windowsphone/wp.css');
2015-12-14 08:43:03 -07:00
}
2015-10-05 19:50:20 -07:00
2015-12-14 08:43:03 -07:00
loadTheme();
if (browserInfo.safari && browserInfo.mobile) {
initFastClick();
}
if (Dashboard.isRunningInCordova()) {
deps.push('registrationservices');
deps.push('cordova/back');
2015-10-05 19:50:20 -07:00
2015-12-14 08:43:03 -07:00
if (browserInfo.android) {
deps.push('cordova/android/androidcredentials');
2016-02-28 14:31:45 -07:00
deps.push('cordova/android/links');
2015-12-14 08:43:03 -07:00
}
2015-09-21 18:05:33 -07:00
}
2015-12-14 08:43:03 -07:00
if (browserInfo.msie) {
deps.push('devices/ie/ie');
2015-09-24 12:30:25 -07:00
}
2015-09-23 09:16:06 -07:00
2015-12-14 08:43:03 -07:00
deps.push('scripts/search');
deps.push('scripts/librarylist');
deps.push('scripts/librarymenu');
deps.push('css!css/card.css');
2016-04-18 13:43:57 -07:00
console.log('onAppReady - loading dependencies');
2016-04-11 07:07:34 -07:00
require(deps, function (imageLoader, pageObjects, layoutManager) {
2016-01-20 18:05:14 -07:00
2016-04-02 09:31:09 -07:00
console.log('Loaded dependencies in onAppReady');
2016-01-20 18:05:14 -07:00
imageLoader.enableFade = browserInfo.animate && !browserInfo.mobile;
window.ImageLoader = imageLoader;
2015-09-23 09:16:06 -07:00
2016-04-11 07:07:34 -07:00
layoutManager.init();
2016-03-15 22:33:31 -07:00
//$.mobile.initializePage();
window.Emby = {};
window.Emby.Page = pageObjects;
window.Emby.TransparencyLevel = pageObjects.TransparencyLevel;
defineCoreRoutes();
Emby.Page.start({
2016-03-15 23:07:11 -07:00
click: true,
2016-03-16 11:09:58 -07:00
hashbang: AppInfo.enableHashBang
2016-03-15 22:33:31 -07:00
});
2015-12-14 08:43:03 -07:00
var postInitDependencies = [];
postInitDependencies.push('scripts/thememediaplayer');
postInitDependencies.push('scripts/remotecontrol');
postInitDependencies.push('css!css/notifications.css');
postInitDependencies.push('css!css/chromecast.css');
2016-03-12 00:28:13 -07:00
postInitDependencies.push('scripts/autobackdrops');
2015-12-14 08:43:03 -07:00
if (Dashboard.isRunningInCordova()) {
if (browserInfo.android) {
postInitDependencies.push('cordova/android/mediasession');
2016-01-08 21:28:09 -07:00
postInitDependencies.push('cordova/android/chromecast');
2015-12-14 08:43:03 -07:00
} else {
postInitDependencies.push('cordova/volume');
}
if (browserInfo.safari) {
2016-04-01 21:16:18 -07:00
postInitDependencies.push('cordova/ios/chromecast');
2015-12-14 08:43:03 -07:00
postInitDependencies.push('cordova/ios/orientation');
2016-04-28 10:21:28 -07:00
postInitDependencies.push('cordova/ios/remotecontrols');
2015-12-14 08:43:03 -07:00
if (Dashboard.capabilities().SupportsSync) {
postInitDependencies.push('cordova/ios/backgroundfetch');
}
}
} else if (browserInfo.chrome) {
postInitDependencies.push('scripts/chromecast');
}
if (AppInfo.enableNowPlayingBar) {
postInitDependencies.push('scripts/nowplayingbar');
}
if (AppInfo.isNativeApp && browserInfo.safari) {
postInitDependencies.push('cordova/ios/tabbar');
}
2015-12-25 21:08:25 -07:00
postInitDependencies.push('components/remotecontrolautoplay');
// Prefer custom font over Segoe if on desktop windows
2016-03-12 13:16:42 -07:00
if (!browserInfo.mobile && navigator.userAgent.toLowerCase().indexOf('windows') != -1) {
//postInitDependencies.push('opensansFont');
postInitDependencies.push('robotoFont');
2016-03-12 13:16:42 -07:00
}
2015-12-14 08:43:03 -07:00
require(postInitDependencies);
2015-09-23 09:16:06 -07:00
});
2015-08-31 21:15:10 -07:00
}
2015-12-14 08:43:03 -07:00
initRequire();
2015-12-30 10:02:11 -07:00
function onWebComponentsReady() {
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
var initialDependencies = [];
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
initialDependencies.push('browser');
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
if (!window.Promise) {
initialDependencies.push('native-promise-only');
}
2015-12-14 08:43:03 -07:00
2016-03-07 12:13:58 -07:00
require(initialDependencies, function (browser) {
2015-12-14 08:43:03 -07:00
2016-02-04 13:51:13 -07:00
initRequireWithBrowser(browser);
2015-12-30 10:02:11 -07:00
window.browserInfo = browser;
2016-01-28 13:45:52 -07:00
2015-12-30 10:02:11 -07:00
setAppInfo();
2016-03-12 13:16:42 -07:00
setDocumentClasses(browser);
2015-12-14 08:43:03 -07:00
2016-04-18 11:50:29 -07:00
init();
2015-12-30 10:02:11 -07:00
});
}
2015-12-14 08:43:03 -07:00
2015-12-30 10:02:11 -07:00
if ('registerElement' in document && 'content' in document.createElement('template')) {
// Native web components support
onWebComponentsReady();
} else {
document.addEventListener('WebComponentsReady', onWebComponentsReady);
require(['webcomponentsjs']);
}
2015-05-12 21:55:19 -07:00
2015-04-30 20:00:29 -07:00
})();
2015-09-06 12:09:36 -07:00
function pageClassOn(eventName, className, fn) {
2015-12-14 08:43:03 -07:00
document.addEventListener(eventName, function (e) {
2015-09-06 12:09:36 -07:00
var target = e.target;
if (target.classList.contains(className)) {
fn.call(target, e);
}
});
}
function pageIdOn(eventName, id, fn) {
2015-12-14 08:43:03 -07:00
document.addEventListener(eventName, function (e) {
2015-09-06 12:09:36 -07:00
var target = e.target;
if (target.id == id) {
fn.call(target, e);
}
});
}
2016-03-15 22:33:31 -07:00
pageClassOn('viewinit', "page", function () {
2015-01-17 22:45:10 -07:00
2015-12-14 08:43:03 -07:00
var page = this;
2015-01-17 22:45:10 -07:00
2015-12-14 08:43:03 -07:00
var current = page.getAttribute('data-theme');
2015-09-04 13:32:20 -07:00
2015-05-13 20:24:25 -07:00
if (!current) {
2015-01-18 21:29:57 -07:00
2015-05-13 20:24:25 -07:00
var newTheme;
2015-01-17 22:45:10 -07:00
2015-12-14 08:43:03 -07:00
if (page.classList.contains('libraryPage')) {
2015-05-13 20:24:25 -07:00
newTheme = 'b';
} else {
newTheme = 'a';
}
2015-01-17 22:45:10 -07:00
2015-12-14 08:43:03 -07:00
page.setAttribute("data-theme", newTheme);
2016-03-15 22:33:31 -07:00
current = newTheme;
2015-05-13 20:24:25 -07:00
}
2016-03-15 22:33:31 -07:00
page.classList.add("ui-page");
page.classList.add("ui-page-theme-" + current);
var contents = page.querySelectorAll("div[data-role='content']");
for (var i = 0, length = contents.length; i < length; i++) {
var content = contents[i];
//var theme = content.getAttribute("theme") || undefined;
//content.classList.add("ui-content");
//if (self.options.contentTheme) {
// content.classList.add("ui-body-" + (self.options.contentTheme));
//}
// Add ARIA role
content.setAttribute("role", "main");
content.classList.add("ui-content");
}
2015-09-06 12:09:36 -07:00
});
2016-03-15 22:33:31 -07:00
pageClassOn('viewshow', "page", function () {
2015-09-04 13:32:20 -07:00
var page = this;
var currentTheme = page.classList.contains('ui-page-theme-a') ? 'a' : 'b';
2015-09-04 09:20:54 -07:00
var docElem = document.documentElement;
2015-09-04 13:32:20 -07:00
if (currentTheme == 'a') {
2015-09-04 09:20:54 -07:00
docElem.classList.add('background-theme-a');
docElem.classList.remove('background-theme-b');
2015-09-19 19:06:56 -07:00
page.classList.add('ui-body-a');
page.classList.remove('ui-body-b');
2015-09-04 09:20:54 -07:00
} else {
docElem.classList.add('background-theme-b');
docElem.classList.remove('background-theme-a');
2015-09-19 19:06:56 -07:00
page.classList.add('ui-body-b');
page.classList.remove('ui-body-a');
2015-09-04 09:20:54 -07:00
}
2015-05-18 15:23:03 -07:00
var apiClient = window.ApiClient;
2014-10-25 11:32:58 -07:00
2015-05-25 10:32:22 -07:00
Dashboard.ensureHeader(page);
2016-03-15 23:07:11 -07:00
if (apiClient && apiClient.isLoggedIn() && !apiClient.isWebSocketOpen()) {
2013-07-16 09:03:28 -07:00
Dashboard.refreshSystemInfoFromServer();
}
2015-09-06 12:09:36 -07:00
});
2015-12-14 08:43:03 -07:00
window.addEventListener("beforeunload", function () {
var apiClient = window.ApiClient;
// Close the connection gracefully when possible
if (apiClient && apiClient.isWebSocketOpen()) {
var localActivePlayers = MediaController.getPlayers().filter(function (p) {
return p.isLocalPlayer && p.isPlaying();
});
if (!localActivePlayers.length) {
2015-12-23 10:46:01 -07:00
console.log('Sending close web socket command');
2015-12-14 08:43:03 -07:00
apiClient.closeWebSocket();
}
}
});