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

2195 lines
65 KiB
JavaScript
Raw Normal View History

2014-07-16 20:17:14 -07:00
(function () {
2014-07-12 21:55:56 -07:00
$.ajaxSetup({
2014-10-28 16:17:55 -07:00
crossDomain: true
2014-07-12 21:55:56 -07:00
});
2014-10-28 16:17:55 -07:00
if ($.browser.msie) {
2014-07-12 21:55:56 -07:00
2014-10-28 16:17:55 -07:00
// This is unfortunately required due to IE's over-aggressive caching.
// https://github.com/MediaBrowser/MediaBrowser/issues/179
$.ajaxSetup({
cache: false
});
}
2014-07-12 21:55:56 -07:00
})();
2014-10-28 16:17:55 -07:00
// TODO: Deprecated in 1.9
$.support.cors = true;
$(document).one('click', WebNotifications.requestPermission);
var Dashboard = {
2014-11-14 19:31:03 -07:00
jQueryMobileInit: function () {
// Page
//$.mobile.page.prototype.options.theme = "a";
//$.mobile.page.prototype.options.headerTheme = "a";
//$.mobile.page.prototype.options.contentTheme = "a";
//$.mobile.page.prototype.options.footerTheme = "a";
//$.mobile.button.prototype.options.theme = "c";
2013-12-24 11:37:29 -07:00
//$.mobile.listview.prototype.options.dividerTheme = "b";
2013-12-24 11:37:29 -07:00
//$.mobile.popup.prototype.options.theme = "c";
2015-06-29 11:45:42 -07:00
$.mobile.popup.prototype.options.transition = "none";
2015-05-15 08:46:20 -07:00
2015-06-17 18:41:22 -07:00
//$.mobile.keepNative = "textarea";
2015-06-07 21:47:19 -07:00
2015-05-15 08:46:20 -07:00
if ($.browser.mobile) {
2015-06-07 14:21:30 -07:00
$.mobile.defaultPageTransition = "none";
2015-05-15 08:46:20 -07:00
} else {
$.mobile.defaultPageTransition = "none";
}
//$.mobile.collapsible.prototype.options.contentTheme = "a";
// Make panels a little larger than the defaults
$.mobile.panel.prototype.options.classes.modalOpen = "largePanelModalOpen ui-panel-dismiss-open";
$.mobile.panel.prototype.options.classes.panel = "largePanel ui-panel";
2015-06-07 14:21:30 -07:00
$.event.special.swipe.verticalDistanceThreshold = 40;
$.mobile.loader.prototype.options.disabled = true;
2015-06-19 15:01:47 -07:00
$.mobile.page.prototype.options.domCache = true;
2015-06-16 10:37:49 -07:00
$.mobile.loadingMessage = false;
$.mobile.loader.prototype.options.html = "";
$.mobile.loader.prototype.options.textVisible = false;
$.mobile.loader.prototype.options.textOnly = true;
$.mobile.loader.prototype.options.text = "";
2015-06-17 08:39:46 -07:00
2015-06-26 20:27:38 -07:00
$.mobile.hideUrlBar = false;
$.mobile.autoInitializePage = false;
2015-06-17 08:39:46 -07:00
$.mobile.changePage.defaults.showLoadMsg = false;
2015-06-26 20:27:38 -07:00
// These are not needed. Nulling them out can help reduce dom querying when pages are loaded
$.mobile.nojs = null;
$.mobile.degradeInputsWithin = null;
$.mobile.keepNative = ":jqmData(role='none')";
},
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;
}
var url = getWindowUrl().toLowerCase();
return url.indexOf('mediabrowser.tv') != -1 ||
url.indexOf('emby.media') != -1;
},
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();
// 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;
}
Dashboard.hideLoadingMsg();
2015-06-07 14:21:30 -07:00
if (!Dashboard.suppressAjaxErrors && data.type != 'GET' && !AppInfo.isNativeApp) {
2014-10-28 16:17:55 -07:00
setTimeout(function () {
var msg = data.errorCode || Dashboard.defaultErrorMessage;
Dashboard.showError(msg);
}, 500);
}
},
getCurrentUser: function () {
if (!Dashboard.getUserPromise) {
2013-07-16 09:03:28 -07:00
2015-05-18 15:23:03 -07:00
Dashboard.getUserPromise = window.ApiClient.getCurrentUser().fail(Dashboard.logout);
}
return Dashboard.getUserPromise;
},
2014-06-21 22:52:31 -07:00
validateCurrentUser: function () {
2013-07-16 09:03:28 -07:00
Dashboard.getUserPromise = null;
if (Dashboard.getCurrentUserId()) {
Dashboard.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
var urlLower = getWindowUrl().toLowerCase();
var index = urlLower.indexOf('/web');
if (index == -1) {
index = urlLower.indexOf('/dashboard');
}
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;
2014-10-25 11:32:58 -07:00
Dashboard.getUserPromise = null;
},
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 {
ConnectionManager.logout().done(onLogoutDone);
2014-07-12 21:55:56 -07:00
}
},
2015-01-18 22:41:56 -07:00
importCss: function (url) {
2015-06-16 12:17:12 -07:00
if (!Dashboard.importedCss) {
Dashboard.importedCss = [];
}
if (Dashboard.importedCss.indexOf(url) != -1) {
return;
}
Dashboard.importedCss.push(url);
2015-01-18 22:41:56 -07:00
if (document.createStyleSheet) {
document.createStyleSheet(url);
}
else {
$('<link rel="stylesheet" type="text/css" href="' + url + '" />').appendTo('head');
}
},
showError: function (message) {
2015-06-16 10:37:49 -07:00
Dashboard.alert(message);
},
updateSystemInfo: function (info) {
Dashboard.lastSystemInfo = info;
2014-07-07 18:41:03 -07:00
2014-07-19 21:46:29 -07:00
Dashboard.ensureWebSocket();
if (!Dashboard.initialServerVersion) {
Dashboard.initialServerVersion = info.Version;
}
if (info.HasPendingRestart) {
Dashboard.hideDashboardVersionWarning();
Dashboard.getCurrentUser().done(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) {
ApiClient.cancelPackageInstallation(id).always(Dashboard.refreshSystemInfoFromServer);
},
2013-10-07 07:38:31 -07:00
showServerRestartWarning: function (systemInfo) {
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-06-28 07:45:21 -07:00
html += '<button type="button" data-icon="refresh" onclick="this.disabled=\'disabled\';Dashboard.restartServer();" data-theme="b" data-inline="true" data-mini="true">' + Globalize.translate('ButtonRestart') + '</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 () {
2014-07-16 20:17:14 -07:00
var html = '<span style="margin-right: 1em;">' + Globalize.translate('MessagePleaseRefreshPage') + '</span>';
2015-06-28 07:45:21 -07:00
html += '<button type="button" data-icon="refresh" onclick="this.disabled=\'disabled\';Dashboard.reloadPage();" data-theme="b" data-inline="true" data-mini="true">' + Globalize.translate('ButtonRefresh') + '</button>';
2014-04-13 10:27:13 -07:00
Dashboard.showFooterNotification({ id: "dashboardVersionWarning", html: html, forceShow: true, allowHide: false });
},
reloadPage: function () {
2014-10-21 05:42:02 -07:00
var currentUrl = getWindowUrl().toLowerCase();
2015-05-17 18:27:48 -07:00
var newUrl;
2013-11-28 11:27:29 -07:00
// If they're on a plugin config page just go back to the dashboard
// The plugin may not have been loaded yet, or could have been uninstalled
if (currentUrl.indexOf('configurationpage') != -1) {
2015-05-17 18:27:48 -07:00
newUrl = "dashboard.html";
} else {
2015-05-17 18:27:48 -07:00
newUrl = getWindowUrl();
}
2015-05-17 18:27:48 -07:00
window.location.href = newUrl;
},
hideDashboardVersionWarning: function () {
2015-06-28 07:45:21 -07:00
var elem = document.getElementById('dashboardVersionWarning');
if (elem) {
elem.parentNode.removeChild(elem);
}
},
showFooterNotification: function (options) {
2015-05-07 15:27:01 -07:00
if (!AppInfo.enableFooterNotifications) {
2015-05-06 20:11:51 -07:00
return;
}
var removeOnHide = !options.id;
options.id = options.id || "notification" + new Date().getTime() + parseInt(Math.random());
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);
}
var onclick = removeOnHide ? "$(\"#" + options.id + "\").trigger(\"notification.remove\").remove();" : "$(\"#" + options.id + "\").trigger(\"notification.hide\").hide();";
if (options.allowHide !== false) {
2014-07-16 20:17:14 -07:00
options.html += "<span style='margin-left: 1em;'><button type='button' onclick='" + onclick + "' data-icon='delete' data-iconpos='notext' data-mini='true' data-inline='true' data-theme='b'>" + Globalize.translate('ButtonHide') + "</button></span>";
}
if (options.forceShow) {
elem.slideDown(400);
}
2015-06-17 18:41:22 -07:00
elem.html(options.html).trigger('create');
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()) {
footer.slideUp();
}
}, 50);
});
},
getConfigurationPageUrl: function (name) {
return "ConfigurationPage?name=" + encodeURIComponent(name);
},
2015-05-20 10:29:26 -07:00
navigate: function (url, preserveQueryString, transition) {
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
var options = {};
if (transition) {
options.transition = transition;
}
$.mobile.changePage(url, options);
},
showLoadingMsg: function () {
2015-06-16 10:37:49 -07:00
require(['paperbuttonstyle'], function () {
var elem = document.getElementById('docspinner');
if (elem) {
// This is just an attempt to prevent the fade-in animation from running repeating and causing flickering
if (!elem.active) {
elem.active = true;
}
} else {
elem = document.createElement("paper-spinner");
elem.id = 'docspinner';
document.body.appendChild(elem);
elem.active = true;
}
});
},
hideLoadingMsg: function () {
2015-06-16 10:37:49 -07:00
var elem = document.getElementById('docspinner');
if (elem) {
setTimeout(function () {
elem.active = false;
2015-06-17 08:39:46 -07:00
}, 100);
2015-06-16 10:37:49 -07:00
}
},
2015-05-06 20:11:51 -07:00
getModalLoadingMsg: function () {
var elem = $('.modalLoading');
if (!elem.length) {
2015-06-23 15:13:06 -07:00
elem = $('<div class="modalLoading" style="display:none;"></div>').appendTo(document.body);
2015-05-06 20:11:51 -07:00
}
return elem;
},
showModalLoadingMsg: function () {
Dashboard.showLoadingMsg();
Dashboard.getModalLoadingMsg().show();
},
hideModalLoadingMsg: function () {
Dashboard.getModalLoadingMsg().hide();
Dashboard.hideLoadingMsg();
},
processPluginConfigurationUpdateResult: function () {
Dashboard.hideLoadingMsg();
Dashboard.alert("Settings saved.");
},
2014-11-04 05:41:12 -07:00
defaultErrorMessage: Globalize.translate('DefaultErrorMessage'),
processServerConfigurationUpdateResult: function (result) {
Dashboard.hideLoadingMsg();
2014-07-16 20:17:14 -07:00
Dashboard.alert(Globalize.translate('MessageSettingsSaved'));
},
2015-05-01 11:37:01 -07:00
alert: function (options) {
if (typeof options == "string") {
2015-06-16 10:37:49 -07:00
require(['paperbuttonstyle'], function () {
var message = options;
2015-05-01 11:37:01 -07:00
2015-06-16 10:37:49 -07:00
Dashboard.toastId = Dashboard.toastId || 0;
2015-05-01 11:37:01 -07:00
2015-06-16 10:37:49 -07:00
var id = 'toast' + (Dashboard.toastId++);
var elem = document.createElement("paper-toast");
elem.setAttribute('text', message);
elem.id = id;
document.body.appendChild(elem);
// This timeout is obviously messy but it's unclear how to determine when the webcomponent is ready for use
// element onload never fires
setTimeout(function () {
elem.show();
setTimeout(function () {
elem.parentNode.removeChild(elem);
}, 5000);
}, 300);
});
2015-05-01 11:37:01 -07:00
return;
}
2015-05-02 09:34:27 -07:00
// Cordova
if (navigator.notification && navigator.notification.alert && options.message.indexOf('<') == -1) {
2015-05-01 11:37:01 -07:00
navigator.notification.alert(options.message, options.callback || function () { }, options.title || Globalize.translate('HeaderAlert'));
} else {
Dashboard.confirmInternal(options.message, options.title || Globalize.translate('HeaderAlert'), false, options.callback);
}
},
confirm: function (message, title, callback) {
2015-05-02 09:34:27 -07:00
// Cordova
2015-06-19 15:01:47 -07:00
if (navigator.notification && navigator.notification.confirm && message.indexOf('<') == -1) {
2015-05-01 11:37:01 -07:00
var buttonLabels = [Globalize.translate('ButtonOk'), Globalize.translate('ButtonCancel')];
2015-05-02 09:34:27 -07:00
navigator.notification.confirm(message, function (index) {
2015-05-01 11:37:01 -07:00
2015-05-02 09:34:27 -07:00
callback(index == 1);
2015-05-01 11:37:01 -07:00
2015-05-02 09:34:27 -07:00
}, title || Globalize.translate('HeaderAlert'), buttonLabels.join(','));
2015-05-01 11:37:01 -07:00
} else {
Dashboard.confirmInternal(message, title, true, callback);
}
},
2013-12-26 19:23:57 -07:00
confirmInternal: function (message, title, showCancel, callback) {
2015-06-25 14:50:56 -07:00
require(['paperbuttonstyle'], function () {
2015-06-25 14:50:56 -07:00
var id = 'paperdlg' + new Date().getTime();
2015-06-25 14:50:56 -07:00
var html = '<paper-dialog id="' + id + '" role="alertdialog" entry-animation="fade-in-animation" exit-animation="fade-out-animation" with-backdrop>';
html += '<h2>' + title + '</h2>';
html += '<div>' + message + '</div>';
html += '<div class="buttons">';
2015-06-25 14:50:56 -07:00
if (showCancel) {
html += '<paper-button dialog-dismiss>' + Globalize.translate('ButtonCancel') + '</paper-button>';
}
2013-12-26 19:23:57 -07:00
2015-06-26 08:53:49 -07:00
html += '<paper-button class="btnConfirm" dialog-confirm autofocus>' + Globalize.translate('ButtonOk') + '</paper-button>';
2013-12-26 19:23:57 -07:00
2015-06-25 14:50:56 -07:00
html += '</div>';
html += '</paper-dialog>';
2015-06-28 07:45:21 -07:00
$(document.body).append(html);
2015-06-29 11:45:42 -07:00
2015-06-28 07:45:21 -07:00
document.body.classList.add('bodyWithPopupOpen');
2015-06-25 14:50:56 -07:00
// This timeout is obviously messy but it's unclear how to determine when the webcomponent is ready for use
// element onload never fires
setTimeout(function () {
2015-06-25 14:50:56 -07:00
var dlg = document.getElementById(id);
2015-06-25 14:50:56 -07:00
// Has to be assigned a z-index after the call to .open()
$(dlg).on('iron-overlay-closed', function (e) {
2015-06-26 08:53:49 -07:00
var confirmed = this.closingReason.confirmed;
2015-06-28 07:45:21 -07:00
this.parentNode.removeChild(this);
document.body.classList.remove('bodyWithPopupOpen');
2015-06-26 08:53:49 -07:00
callback(confirmed);
2015-06-25 14:50:56 -07:00
});
2015-06-26 08:53:49 -07:00
dlg.open();
2015-06-25 14:50:56 -07:00
}, 300);
});
},
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-05-20 09:28:55 -07:00
if (apiClient.enableFooterNotifications) {
apiClient.getSystemInfo().done(function (info) {
2014-07-07 18:41:03 -07:00
2015-05-07 15:27:01 -07:00
Dashboard.updateSystemInfo(info);
});
} else {
Dashboard.ensureWebSocket();
}
2014-07-07 18:41:03 -07:00
}
},
restartServer: function () {
Dashboard.suppressAjaxErrors = true;
Dashboard.showLoadingMsg();
2013-07-16 10:18:32 -07:00
ApiClient.restartServer().done(function () {
setTimeout(function () {
Dashboard.reloadPageWhenServerAvailable();
}, 250);
}).fail(function () {
Dashboard.suppressAjaxErrors = false;
});
},
reloadPageWhenServerAvailable: function (retryCount) {
// Don't use apiclient method because we don't want it reporting authentication under the old version
2014-07-01 22:16:59 -07:00
ApiClient.getJSON(ApiClient.getUrl("System/Info")).done(function (info) {
// If this is back to false, the restart completed
if (!info.HasPendingRestart) {
Dashboard.reloadPage();
} else {
Dashboard.retryReload(retryCount);
}
}).fail(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 () {
var html = '<div data-role="panel" data-position="right" data-display="overlay" id="userFlyout" data-position-fixed="true" data-theme="a">';
html += '<h3 class="userHeader">';
html += '</h3>';
html += '<form>';
html += '<p class="preferencesContainer"></p>';
html += '<p><button data-mini="true" type="button" onclick="Dashboard.logout();" data-icon="lock">' + Globalize.translate('ButtonSignOut') + '</button></p>';
html += '</form>';
html += '</div>';
$(document.body).append(html);
var elem = $('#userFlyout').panel({}).lazyChildren().trigger('create').panel("open").on("panelclose", function () {
$(this).off("panelclose").remove();
});
ConnectionManager.user(window.ApiClient).done(function (user) {
Dashboard.updateUserFlyout(elem, user);
});
2015-06-17 08:39:46 -07:00
require(['jqmicons']);
2015-06-10 06:37:07 -07:00
},
updateUserFlyout: function (elem, user) {
var html = '';
var imgWidth = 48;
if (user.imageUrl && AppInfo.enableUserImage) {
var url = user.imageUrl;
if (user.supportsImageParams) {
url += "&width=" + (imgWidth * Math.max(window.devicePixelRatio || 1, 2));
}
2015-06-27 20:29:50 -07:00
html += '<div style="background-image:url(\'' + url + '\');width:' + imgWidth + 'px;height:' + imgWidth + 'px;background-size:contain;background-repeat:no-repeat;background-position:center center;border-radius:1000px;vertical-align:middle;margin-right:.8em;display:inline-block;"></div>';
2015-06-10 06:37:07 -07:00
}
html += user.name;
$('.userHeader', elem).html(html).lazyChildren();
html = '';
if (user.localUser && user.localUser.Policy.EnableUserPreferenceAccess) {
html += '<p><a data-mini="true" data-role="button" href="mypreferencesdisplay.html?userId=' + user.localUser.Id + '" data-icon="gear">' + Globalize.translate('ButtonSettings') + '</button></a>';
}
$('.preferencesContainer', elem).html(html).trigger('create');
},
getPluginSecurityInfo: function () {
2015-05-19 12:15:40 -07:00
var apiClient = ApiClient;
if (!apiClient) {
var deferred = $.Deferred();
deferred.reject();
return deferred.promise();
}
if (!Dashboard.getPluginSecurityInfoPromise) {
var deferred = $.Deferred();
// Don't let this blow up the dashboard when it fails
2015-05-19 12:15:40 -07:00
apiClient.ajax({
type: "GET",
2015-05-19 12:15:40 -07:00
url: apiClient.getUrl("Plugins/SecurityInfo"),
dataType: 'json',
error: function () {
// Don't show normal dashboard errors
}
}).done(function (result) {
2013-06-04 09:59:03 -07:00
deferred.resolveWith(null, [result]);
});
Dashboard.getPluginSecurityInfoPromise = deferred;
}
return Dashboard.getPluginSecurityInfoPromise;
},
resetPluginSecurityInfo: function () {
Dashboard.getPluginSecurityInfoPromise = 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">';
2015-01-11 13:31:09 -07:00
headerHtml += '<a class="logo" href="index.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
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 = '';
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
2015-06-21 14:31:21 -07:00
if (item.divider) {
menuHtml += "<div class='sidebarDivider'></div>";
}
2015-06-21 14:31:21 -07:00
if (item.href) {
2015-05-31 11:22:51 -07:00
2015-06-21 14:31:21 -07:00
var style = item.color ? ' style="color:' + item.color + '"' : '';
2015-01-18 12:53:34 -07:00
2015-06-21 14:31:21 -07:00
if (item.selected) {
menuHtml += '<a class="sidebarLink selectedSidebarLink" href="' + item.href + '">';
2015-01-18 12:53:34 -07:00
} else {
2015-06-21 14:31:21 -07:00
menuHtml += '<a class="sidebarLink" href="' + item.href + '">';
}
2015-01-18 21:29:57 -07:00
2015-06-21 14:31:21 -07:00
var icon = item.icon;
if (icon) {
menuHtml += '<iron-icon icon="' + icon + '" class="sidebarLinkIcon"' + style + '></iron-icon>';
}
2015-06-21 14:31:21 -07:00
menuHtml += '<span class="sidebarLinkText">';
menuHtml += item.name;
menuHtml += '</span>';
menuHtml += '</a>';
} else {
2015-06-21 14:31:21 -07:00
menuHtml += '<div class="sidebarHeader">';
menuHtml += item.name;
menuHtml += '</div>';
}
}
2015-06-21 14:31:21 -07:00
return menuHtml;
},
2013-12-26 22:08:37 -07:00
2015-06-21 14:31:21 -07:00
ensureToolsMenu: function (page) {
2013-12-26 22:08:37 -07:00
2015-06-28 07:45:21 -07:00
var sidebar = page.querySelector('.toolsSidebar');
2015-05-31 14:07:44 -07:00
2015-06-28 07:45:21 -07:00
if (!sidebar) {
2015-05-31 14:07:44 -07:00
2015-06-21 14:31:21 -07:00
var html = '<div class="content-secondary toolsSidebar">';
2015-05-31 14:07:44 -07:00
2015-06-21 14:31:21 -07:00
html += '<div class="sidebarLinks">';
2015-05-31 14:07:44 -07:00
2015-06-21 14:31:21 -07:00
html += Dashboard.getToolsMenuHtml(page);
// sidebarLinks
2015-05-31 14:07:44 -07:00
html += '</div>';
2015-06-21 14:31:21 -07:00
// content-secondary
2013-12-26 22:08:37 -07:00
html += '</div>';
2014-07-26 10:30:15 -07:00
$('.content-primary', page).before(html);
2015-06-28 07:45:21 -07:00
Events.trigger(page, 'create');
}
},
getToolsMenuLinks: function (page) {
2015-06-28 07:45:21 -07:00
var pageElem = page;
2015-06-28 07:45:21 -07:00
var isServicesPage = page.classList.contains('appServicesPage');
var context = getParameterByName('context');
return [{
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabServer'),
href: "dashboard.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("dashboardHomePage"),
2015-06-21 14:31:21 -07:00
icon: 'dashboard',
2015-01-18 12:53:34 -07:00
color: '#38c'
2014-10-11 13:38:13 -07:00
}, {
name: Globalize.translate('TabDevices'),
href: "devices.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("devicesPage"),
2015-06-21 14:31:21 -07:00
icon: 'tablet',
2015-01-18 12:53:34 -07:00
color: '#ECA403'
2014-07-26 10:30:15 -07:00
}, {
name: Globalize.translate('TabUsers'),
href: "userprofiles.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("userProfilesPage"),
2015-06-21 14:31:21 -07:00
icon: 'people',
2015-01-18 12:53:34 -07:00
color: '#679C34'
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabLibrary'),
2013-12-25 20:44:26 -07:00
divider: true,
href: "library.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("mediaLibraryPage"),
2015-06-21 14:31:21 -07:00
icon: 'video-library'
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabMetadata'),
href: "metadata.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains('metadataConfigurationPage'),
2015-06-23 15:13:06 -07:00
icon: 'insert-drive-file'
2014-01-22 16:52:01 -07:00
}, {
2014-09-22 14:56:54 -07:00
name: Globalize.translate('TabPlayback'),
href: "playbackconfiguration.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains('playbackConfigurationPage'),
2015-06-21 14:31:21 -07:00
icon: 'play-circle-filled'
}, {
name: Globalize.translate('TabSync'),
href: "syncactivity.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains('syncConfigurationPage') || (isServicesPage && context == 'sync'),
2015-06-21 14:31:21 -07:00
icon: 'refresh'
2014-09-22 14:56:54 -07:00
}, {
divider: true,
2015-01-18 12:53:34 -07:00
name: Globalize.translate('TabExtras')
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabAutoOrganize'),
2014-01-22 16:52:01 -07:00
href: "autoorganizelog.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("organizePage"),
2015-06-21 14:31:21 -07:00
icon: 'folder',
2015-01-18 12:53:34 -07:00
color: '#01C0DD'
2014-06-01 12:41:35 -07:00
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabDLNA'),
2014-03-10 10:38:53 -07:00
href: "dlnasettings.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("dlnaPage"),
2015-06-21 14:31:21 -07:00
icon: 'tv',
2015-01-18 12:53:34 -07:00
color: '#E5342E'
2014-01-12 09:55:38 -07:00
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabLiveTV'),
2014-01-22 13:46:01 -07:00
href: "livetvstatus.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("liveTvSettingsPage") || (isServicesPage && context == 'livetv'),
2015-06-21 14:31:21 -07:00
icon: 'live-tv',
2015-01-18 12:53:34 -07:00
color: '#293AAE'
}, {
name: Globalize.translate('TabNotifications'),
href: "notificationsettings.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("notificationConfigurationPage"),
2015-06-21 14:31:21 -07:00
icon: 'notifications',
2015-01-18 12:53:34 -07:00
color: 'brown'
2014-03-25 14:13:55 -07:00
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabPlugins'),
2014-03-25 14:13:55 -07:00
href: "plugins.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("pluginConfigurationPage"),
2015-06-21 14:31:21 -07:00
icon: 'add-shopping-cart',
2015-01-18 12:53:34 -07:00
color: '#9D22B1'
}, {
2013-12-25 20:44:26 -07:00
divider: true,
2015-01-18 12:53:34 -07:00
name: Globalize.translate('TabExpert')
}, {
name: Globalize.translate('TabAdvanced'),
href: "advanced.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("advancedConfigurationPage"),
2015-06-21 14:31:21 -07:00
icon: 'settings',
2015-01-18 12:53:34 -07:00
color: '#F16834'
}, {
name: Globalize.translate('TabScheduledTasks'),
href: "scheduledtasks.html",
2015-06-28 07:45:21 -07:00
selected: page.classList.contains("scheduledTasksConfigurationPage"),
2015-06-21 14:31:21 -07:00
icon: 'schedule',
2015-01-18 12:53:34 -07:00
color: '#38c'
}, {
2014-07-16 20:17:14 -07:00
name: Globalize.translate('TabHelp'),
2015-01-18 12:53:34 -07:00
divider: true,
href: "support.html",
2015-01-18 12:53:34 -07:00
selected: pageElem.id == "supportPage" || pageElem.id == "logPage" || pageElem.id == "supporterPage" || pageElem.id == "supporterKeyPage" || pageElem.id == "aboutPage",
2015-06-21 14:31:21 -07:00
icon: 'help',
2015-01-18 12:53:34 -07:00
color: '#679C34'
}];
},
2014-07-19 21:46:29 -07:00
ensureWebSocket: function () {
2014-10-27 14:45:50 -07:00
if (ApiClient.isWebSocketOpenOrConnecting() || !ApiClient.isWebSocketSupported()) {
return;
}
2014-10-21 21:42:26 -07:00
ApiClient.openWebSocket();
2015-05-07 15:27:01 -07:00
if (!Dashboard.isConnectMode()) {
ApiClient.reportCapabilities(Dashboard.capabilities());
}
},
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':
Dashboard.navigate('index.html');
break;
case 'GoToSettings':
Dashboard.navigate('dashboard.html');
break;
case 'DisplayContent':
Dashboard.onBrowseCommand(cmd.Arguments);
break;
case 'GoToSearch':
Search.showSearchPanel($.mobile.activePage);
break;
2014-05-08 13:09:53 -07:00
case 'DisplayMessage':
{
var args = cmd.Arguments;
2015-05-21 13:53:14 -07:00
if (args.TimeoutMs) {
Dashboard.showFooterNotification({ html: "<div><b>" + args.Header + "</b></div>" + args.Text, timeout: args.TimeoutMs });
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':
break;
default:
2015-06-26 20:27:38 -07:00
Logger.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 === "UserDeleted") {
Dashboard.validateCurrentUser();
}
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);
}
2014-06-21 22:52:31 -07:00
else if (msg.MessageType === "UserUpdated" || msg.MessageType === "UserConfigurationUpdated") {
var user = msg.Data;
if (user.Id == Dashboard.getCurrentUserId()) {
2015-05-20 09:28:55 -07:00
Dashboard.validateCurrentUser();
$('.currentUsername').html(user.Name);
}
2015-05-20 09:28:55 -07:00
}
else if (msg.MessageType === "PackageInstallationCompleted") {
Dashboard.getCurrentUser().done(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") {
Dashboard.getCurrentUser().done(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") {
Dashboard.getCurrentUser().done(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") {
Dashboard.getCurrentUser().done(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") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
2013-06-10 20:31:00 -07:00
else if (type == "musicgenre") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.html?id=" + cmd.ItemId;
2013-06-10 20:31:00 -07:00
}
2013-07-01 10:17:33 -07:00
else if (type == "gamegenre") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.html?id=" + cmd.ItemId;
2013-07-01 10:17:33 -07:00
}
2013-05-10 05:18:07 -07:00
else if (type == "studio") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
else if (type == "person") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.html?id=" + cmd.ItemId;
2013-05-10 05:18:07 -07:00
}
2013-11-21 13:48:26 -07:00
else if (type == "musicartist") {
2014-08-18 18:42:53 -07:00
url = "itembynamedetails.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;
}
2013-05-25 17:53:51 -07:00
ApiClient.getItem(Dashboard.getCurrentUserId(), cmd.ItemId).done(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) {
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) {
var btnId = "btnCancel" + installation.Id;
2014-07-16 20:17:14 -07:00
html += '<button id="' + btnId + '" type="button" data-icon="delete" onclick="$(\'' + btnId + '\').buttonEnabled(false);Dashboard.cancelInstallation(\'' + installation.Id + '\');" data-theme="b" data-inline="true" data-mini="true">' + Globalize.translate('ButtonCancel') + '</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
if (!newItems.length) {
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
2013-04-15 11:45:58 -07:00
}).done(function (result) {
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,
timeout: 5000
};
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"
});
}
WebNotifications.show(notification);
}
});
},
ensurePageTitle: function (page) {
2015-06-28 07:45:21 -07:00
if (!page.classList.contains('type-interior')) {
return;
}
2015-06-28 07:45:21 -07:00
var pageElem = page;
if (pageElem.querySelector('.pageTitle')) {
return;
}
2015-06-28 07:45:21 -07:00
var parent = pageElem.querySelector('.content-primary');
2015-06-28 07:45:21 -07:00
if (!parent) {
parent = pageElem.getElementsByClassName('ui-content')[0];
}
2015-06-28 07:45:21 -07:00
var helpUrl = pageElem.getAttribute('data-helpurl');
2014-12-22 21:53:52 -07:00
var html = '<div>';
html += '<h1 class="pageTitle" style="display:inline-block;">' + (document.title || '&nbsp;') + '</h1>';
if (helpUrl) {
2015-06-16 10:37:49 -07:00
html += '<a href="' + helpUrl + '" target="_blank" class="clearLink" style="margin-top:-10px;display:inline-block;vertical-align:middle;margin-left:1em;"><paper-button raised class="secondary mini"><i class="fa fa-info-circle"></i>' + Globalize.translate('ButtonHelp') + '</paper-button></a>';
2014-12-22 21:53:52 -07:00
}
html += '</div>';
$(parent).prepend(html);
2015-06-15 21:52:01 -07:00
if (helpUrl) {
2015-06-16 10:37:49 -07:00
require(['paperbuttonstyle']);
2015-06-15 21:52:01 -07:00
}
},
setPageTitle: function (title) {
2015-06-28 07:45:21 -07:00
var elem = $($.mobile.activePage)[0].querySelector('.pageTitle');
if (elem) {
elem.innerHTML = title;
}
if (title) {
document.title = title;
}
2013-06-07 10:29:33 -07:00
},
getDisplayTime: function (ticks) {
var ticksPerHour = 36000000000;
2014-05-10 22:11:53 -07:00
var ticksPerMinute = 600000000;
var ticksPerSecond = 10000000;
2013-06-07 10:29:33 -07:00
var parts = [];
var hours = ticks / ticksPerHour;
2013-12-05 20:39:44 -07:00
hours = Math.floor(hours);
2013-06-07 10:29:33 -07:00
if (hours) {
parts.push(hours);
}
ticks -= (hours * ticksPerHour);
var minutes = ticks / ticksPerMinute;
2013-12-05 20:39:44 -07:00
minutes = Math.floor(minutes);
2013-06-07 10:29:33 -07:00
ticks -= (minutes * ticksPerMinute);
if (minutes < 10 && hours) {
minutes = '0' + minutes;
}
parts.push(minutes);
var seconds = ticks / ticksPerSecond;
2014-05-10 22:11:53 -07:00
seconds = Math.floor(seconds);
2013-06-07 10:29:33 -07:00
if (seconds < 10) {
seconds = '0' + seconds;
}
parts.push(seconds);
return parts.join(':');
2013-11-07 10:27:05 -07:00
},
2013-11-28 11:27:29 -07:00
2014-02-08 13:02:35 -07:00
populateLanguages: function (select, languages) {
2013-12-28 09:58:13 -07:00
var html = "";
html += "<option value=''></option>";
for (var i = 0, length = languages.length; i < length; i++) {
var culture = languages[i];
html += "<option value='" + culture.TwoLetterISOLanguageName + "'>" + culture.DisplayName + "</option>";
}
$(select).html(html).selectmenu("refresh");
},
populateCountries: function (select, allCountries) {
var html = "";
html += "<option value=''></option>";
for (var i = 0, length = allCountries.length; i < length; i++) {
var culture = allCountries[i];
html += "<option value='" + culture.TwoLetterISORegionName + "'>" + culture.DisplayName + "</option>";
}
$(select).html(html).selectmenu("refresh");
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",
"DisplayMessage"
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 () {
2014-10-25 11:32:58 -07:00
var url = getWindowUrl().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-05-28 16:37:43 -07:00
if (Dashboard.isRunningInCordova() && $.browser.android) {
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-06-17 08:39:46 -07:00
quality -= 15;
2015-05-15 08:46:20 -07:00
if (isBackdrop) {
2015-05-15 11:07:36 -07:00
quality -= 20;
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-19 12:15:40 -07:00
getAppInfo: function (appName, deviceId, deviceName) {
2015-05-02 09:34:27 -07:00
function generateDeviceName() {
var name = "Web Browser";
if ($.browser.chrome) {
name = "Chrome";
} else if ($.browser.safari) {
name = "Safari";
} else if ($.browser.msie) {
name = "Internet Explorer";
} else if ($.browser.opera) {
name = "Opera";
2015-05-11 12:59:59 -07:00
} else if ($.browser.mozilla) {
2015-05-02 09:34:27 -07:00
name = "Firefox";
}
if ($.browser.version) {
name += " " + $.browser.version;
}
if ($.browser.ipad) {
name += " Ipad";
} else if ($.browser.iphone) {
name += " Iphone";
} else if ($.browser.android) {
name += " Android";
}
return name;
2014-10-23 21:54:35 -07:00
}
2015-05-02 09:34:27 -07:00
var appVersion = window.dashboardVersion;
2015-05-19 12:15:40 -07:00
appName = appName || "Emby Web Client";
2015-05-06 21:14:35 -07:00
deviceName = deviceName || generateDeviceName();
2015-05-12 06:58:03 -07:00
var seed = [];
var keyName = 'randomId';
2015-05-12 06:58:03 -07:00
deviceId = deviceId || MediaBrowser.generateDeviceId(keyName, seed.join(','));
2015-05-02 09:34:27 -07:00
return {
appName: appName,
appVersion: appVersion,
deviceName: deviceName,
deviceId: deviceId
};
2015-05-08 20:48:43 -07:00
},
2015-05-12 06:58:03 -07:00
loadSwipebox: function () {
2015-05-08 20:48:43 -07:00
var deferred = DeferredBuilder.Deferred();
2015-06-29 19:52:23 -07:00
Dashboard.importCss('bower_components/swipebox/src/css/swipebox.min.css');
2015-06-17 23:23:44 -07:00
2015-05-08 20:48:43 -07:00
require([
2015-06-29 19:52:23 -07:00
'bower_components/swipebox/src/js/jquery.swipebox.min'
2015-05-08 20:48:43 -07:00
], function () {
deferred.resolve();
});
return deferred.promise();
2015-06-02 22:30:14 -07:00
},
2015-05-20 09:28:55 -07:00
ready: function (fn) {
2015-05-17 19:52:52 -07:00
2015-05-19 12:15:40 -07:00
if (Dashboard.initPromiseDone) {
fn();
return;
}
Dashboard.initPromise.done(fn);
},
2015-06-16 12:17:12 -07:00
firePageEvent: function (page, name, dependencies) {
2015-05-19 12:15:40 -07:00
Dashboard.ready(function () {
2015-06-16 12:17:12 -07:00
if (dependencies && dependencies.length) {
require(dependencies, function () {
2015-06-28 07:45:21 -07:00
Events.trigger(page, name);
2015-06-16 12:17:12 -07:00
});
} else {
2015-06-28 07:45:21 -07:00
Events.trigger(page, name);
2015-06-16 12:17:12 -07:00
}
2015-05-19 12:15:40 -07:00
});
2015-05-25 10:32:22 -07:00
},
loadExternalPlayer: function () {
var deferred = DeferredBuilder.Deferred();
require(['scripts/externalplayer.js'], function () {
if (Dashboard.isRunningInCordova()) {
2015-06-19 21:48:45 -07:00
require(['cordova/externalplayer.js'], function () {
2015-05-25 10:32:22 -07:00
deferred.resolve();
});
} else {
deferred.resolve();
}
});
return deferred.promise();
2015-06-08 14:32:20 -07:00
},
exitOnBack: function () {
return $($.mobile.activePage).is('#indexPage');
},
exit: function () {
Dashboard.logout();
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;
AppInfo.enableAppStorePolicy = isCordova;
2015-05-15 19:36:47 -07:00
2015-05-29 18:07:54 -07:00
var isIOS = $.browser.safari || $.browser.ipad || $.browser.iphone;
2015-05-27 22:51:48 -07:00
var isAndroid = $.browser.android;
var isMobile = $.browser.mobile;
2015-05-29 18:07:54 -07:00
if (isIOS) {
2015-05-06 20:11:51 -07:00
2015-05-27 22:51:48 -07:00
if (isMobile) {
2015-05-06 20:11:51 -07:00
AppInfo.hasLowImageBandwidth = true;
}
2015-05-07 15:27:01 -07:00
2015-05-08 09:58:27 -07:00
if (isCordova) {
2015-05-07 15:27:01 -07:00
AppInfo.enableBottomTabs = true;
2015-05-26 12:53:12 -07:00
AppInfo.cardMargin = 'mediumCardMargin';
2015-06-20 17:49:42 -07:00
//AppInfo.enableSectionTransitions = true;
2015-06-04 13:27:46 -07:00
2015-05-15 19:36:47 -07:00
} else {
2015-06-04 13:27:46 -07:00
if (isMobile) {
AppInfo.enableDetailPageChapters = false;
AppInfo.enableDetailsMenuImages = false;
AppInfo.enableMovieHomeSuggestions = false;
AppInfo.cardMargin = 'largeCardMargin';
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.enablePeopleTabs = true;
AppInfo.enableTvEpisodesTab = true;
2015-05-07 15:27:01 -07:00
AppInfo.enableMovieTrailersTab = true;
}
2015-05-24 11:33:28 -07:00
if (isCordova) {
AppInfo.enableAppLayouts = true;
2015-05-26 12:53:12 -07:00
AppInfo.hasKnownExternalPlayerSupport = true;
2015-05-28 16:37:43 -07:00
AppInfo.isNativeApp = true;
2015-05-24 11:33:28 -07:00
}
else {
2015-05-07 15:27:01 -07:00
AppInfo.enableFooterNotifications = true;
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-06-21 14:31:21 -07:00
if (!$.browser.tv && !isIOS) {
// Don't enable headroom on mobile chrome when the address bar is visible
// With two bars hiding and showing it gets a little awkward
if (AppInfo.isNativeApp || window.navigator.standalone || !$.browser.mobile) {
AppInfo.enableHeadRoom = true;
}
}
2015-05-09 21:29:04 -07:00
AppInfo.enableUserImage = true;
2015-05-27 22:51:48 -07:00
AppInfo.hasPhysicalVolumeButtons = isCordova || isMobile;
2015-05-23 13:44:15 -07:00
2015-06-17 18:41:22 -07:00
AppInfo.enableBackButton = isIOS && (window.navigator.standalone || AppInfo.isNativeApp);
2015-05-27 22:51:48 -07:00
AppInfo.supportsFullScreen = isCordova && isAndroid;
2015-06-09 21:01:14 -07:00
AppInfo.supportsSyncPathSetting = isCordova && isAndroid;
2015-06-10 23:27:05 -07:00
if (isCordova && isAndroid) {
AppInfo.directPlayAudioContainers = ['aac', 'mp3', 'ogg', 'flac', 'wma', 'm4a', 'oga'];
} else {
AppInfo.directPlayAudioContainers = [];
}
}
2013-04-19 15:09:21 -07:00
2014-10-25 11:32:58 -07:00
function initializeApiClient(apiClient) {
2015-05-16 12:09:02 -07:00
apiClient.enableAppStorePolicy = AppInfo.enableAppStorePolicy;
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-06-29 11:45:42 -07:00
$(apiClient).off("websocketmessage", Dashboard.onWebSocketMessageReceived).off('requestfail', Dashboard.onRequestFail);
$(apiClient).on("websocketmessage", Dashboard.onWebSocketMessageReceived).on('requestfail', Dashboard.onRequestFail);
2014-10-25 11:32:58 -07:00
}
2015-05-25 10:32:22 -07:00
2015-05-24 11:33:28 -07:00
//localStorage.clear();
2015-05-28 16:37:43 -07:00
function createConnectionManager(capabilities) {
2015-05-01 11:37:01 -07:00
2015-06-13 07:46:59 -07:00
var credentialKey = Dashboard.isConnectMode() ? null : 'servercredentials4';
var credentialProvider = new MediaBrowser.CredentialProvider(credentialKey);
2014-10-23 21:54:35 -07:00
2015-05-28 16:37:43 -07:00
window.ConnectionManager = new MediaBrowser.ConnectionManager(Logger, credentialProvider, AppInfo.appName, AppInfo.appVersion, AppInfo.deviceName, AppInfo.deviceId, capabilities);
2015-01-24 23:34:50 -07:00
2015-06-18 21:23:55 -07:00
if (getWindowUrl().toLowerCase().indexOf('wizardstart.html') != -1) {
window.ConnectionManager.clearData();
}
2015-05-22 08:59:17 -07:00
$(ConnectionManager).on('apiclientcreated', function (e, newApiClient) {
2014-05-16 21:24:10 -07:00
2015-05-22 08:59:17 -07:00
initializeApiClient(newApiClient);
2015-05-20 09:28:55 -07:00
});
2014-10-23 21:54:35 -07:00
2015-06-08 14:32:20 -07:00
var deferred = DeferredBuilder.Deferred();
2015-04-01 14:56:32 -07:00
2015-05-20 09:28:55 -07:00
if (Dashboard.isConnectMode()) {
2015-04-01 14:56:32 -07:00
2015-06-08 14:32:20 -07:00
var server = ConnectionManager.getLastUsedServer();
2015-05-22 08:59:17 -07:00
if (!Dashboard.isServerlessPage()) {
2015-06-08 14:32:20 -07:00
if (server && server.UserId && server.AccessToken) {
ConnectionManager.connectToServer(server).done(function (result) {
if (result.State == MediaBrowser.ConnectionState.SignedIn) {
window.ApiClient = result.ApiClient;
}
deferred.resolve();
});
return deferred.promise();
2015-05-02 09:34:27 -07:00
}
2014-12-29 13:18:48 -07:00
}
2015-06-08 14:32:20 -07:00
deferred.resolve();
2015-04-25 20:25:07 -07:00
2015-05-02 09:34:27 -07:00
} else {
2015-04-25 20:25:07 -07:00
2015-06-08 14:32:20 -07:00
var apiClient = new MediaBrowser.ApiClient(Logger, Dashboard.serverAddress(), AppInfo.appName, AppInfo.appVersion, AppInfo.deviceName, AppInfo.deviceId);
2015-06-03 21:50:10 -07:00
apiClient.enableAutomaticNetworking = false;
2015-05-22 08:59:17 -07:00
ConnectionManager.addApiClient(apiClient);
2015-06-08 14:32:20 -07:00
Dashboard.importCss(apiClient.getUrl('Branding/Css'));
window.ApiClient = apiClient;
2015-05-02 09:34:27 -07:00
}
2015-06-08 14:32:20 -07:00
return deferred.promise();
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-06-16 10:37:49 -07:00
require(["thirdparty/fastclick"], function (FastClick) {
2015-05-08 10:30:24 -07:00
2015-05-08 20:48:43 -07:00
FastClick.attach(document.body);
// Have to work around this issue of fast click breaking the panel dismiss
$(document.body).on('touchstart', '.ui-panel-dismiss', function () {
$(this).trigger('click');
});
2015-05-08 10:30:24 -07:00
});
2015-05-08 20:48:43 -07:00
2015-05-08 10:30:24 -07:00
}
2015-06-17 08:39:46 -07:00
function setDocumentClasses() {
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
if (AppInfo.enableBottomTabs) {
2015-06-28 07:45:21 -07:00
elem.classList.add('bottomSecondaryNav');
2015-05-16 12:09:02 -07:00
}
2015-06-17 08:39:46 -07:00
if (AppInfo.isTouchPreferred) {
2015-06-28 07:45:21 -07:00
elem.classList.add('touch');
2015-06-18 21:23:55 -07:00
} else {
2015-06-28 07:45:21 -07:00
elem.classList.add('pointerInput');
2015-05-08 09:58:27 -07:00
}
2015-05-06 20:11:51 -07:00
2015-05-26 12:53:12 -07:00
if (AppInfo.cardMargin) {
2015-06-28 07:45:21 -07:00
elem.classList.add(AppInfo.cardMargin);
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.enablePeopleTabs) {
2015-06-28 07:45:21 -07:00
elem.classList.add('peopleTabDisabled');
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-07 15:27:01 -07:00
if (!AppInfo.enableMovieTrailersTab) {
2015-06-28 07:45:21 -07:00
elem.classList.add('movieTrailersTabDisabled');
2015-05-07 15:27:01 -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
}
}
function onDocumentReady() {
// Do these now to prevent a flash of content
2015-06-18 21:23:55 -07:00
if (AppInfo.isNativeApp) {
if ($.browser.android) {
Dashboard.importCss('themes/android.css');
}
else if ($.browser.safari) {
Dashboard.importCss('themes/ios.css');
}
2015-05-07 07:04:10 -07:00
}
2015-06-17 08:39:46 -07:00
if ($.browser.safari && $.browser.mobile) {
initFastClick();
2015-05-26 08:31:50 -07:00
}
2015-05-07 15:27:01 -07:00
var footerHtml = '<div id="footer" class="footer" data-theme="b" class="ui-bar-b">';
2015-04-30 20:00:29 -07:00
footerHtml += '<div id="footerNotifications"></div>';
footerHtml += '</div>';
2014-04-13 10:27:13 -07:00
2015-04-30 20:00:29 -07:00
$(document.body).append(footerHtml);
2015-04-30 20:00:29 -07:00
$(window).on("beforeunload", function () {
2014-04-13 10:27:13 -07:00
2015-05-18 15:23:03 -07:00
var apiClient = window.ApiClient;
2013-09-09 11:23:55 -07:00
2015-04-30 20:00:29 -07:00
// Close the connection gracefully when possible
2015-05-08 20:48:43 -07:00
if (apiClient && apiClient.isWebSocketOpen()) {
var localActivePlayers = MediaController.getPlayers().filter(function (p) {
2014-10-25 11:32:58 -07:00
2015-05-08 20:48:43 -07:00
return p.isLocalPlayer && p.isPlaying();
});
if (!localActivePlayers.length) {
2015-06-26 20:27:38 -07:00
Logger.log('Sending close web socket command');
2015-05-08 20:48:43 -07:00
apiClient.closeWebSocket();
}
2015-04-30 20:00:29 -07:00
}
});
2015-04-30 20:00:29 -07:00
$(document).on('contextmenu', '.ui-popup-screen', function (e) {
2014-07-08 17:46:11 -07:00
2015-04-30 20:00:29 -07:00
$('.ui-popup').popup('close');
2014-07-08 17:46:11 -07:00
2015-04-30 20:00:29 -07:00
e.preventDefault();
return false;
});
2015-05-17 19:52:52 -07:00
2015-06-08 22:56:46 -07:00
require(['filesystem']);
2015-05-17 19:52:52 -07:00
if (Dashboard.isRunningInCordova()) {
2015-06-23 15:13:06 -07:00
require(['cordova/connectsdk', 'scripts/registrationservices', 'cordova/back']);
2015-05-26 08:31:50 -07:00
if ($.browser.android) {
2015-06-19 21:48:45 -07:00
require(['cordova/android/androidcredentials', 'cordova/android/immersive', 'cordova/android/mediasession']);
2015-06-23 15:13:06 -07:00
} else {
require(['cordova/volume']);
2015-05-26 08:31:50 -07:00
}
2015-05-27 22:51:48 -07:00
if ($.browser.safari) {
2015-06-19 21:48:45 -07:00
require(['cordova/remotecontrols', 'cordova/ios/orientation']);
2015-05-27 22:51:48 -07:00
}
2015-05-17 19:52:52 -07:00
} else {
if ($.browser.chrome) {
2015-06-16 10:37:49 -07:00
require(['scripts/chromecast']);
2015-05-17 19:52:52 -07:00
}
}
2015-06-17 08:39:46 -07:00
2015-06-18 12:43:47 -07:00
if (navigator.splashscreen) {
navigator.splashscreen.hide();
}
2014-10-06 16:58:46 -07:00
}
2015-06-08 14:32:20 -07:00
function init(deferred, capabilities, appName, deviceId, deviceName) {
2015-05-08 20:48:43 -07:00
2015-05-19 12:15:40 -07:00
requirejs.config({
2015-06-08 14:32:20 -07:00
urlArgs: "v=" + window.dashboardVersion,
paths: {
2015-06-26 08:53:49 -07:00
"velocity": "bower_components/velocity/velocity.min"
2015-06-08 14:32:20 -07:00
}
2015-05-19 12:15:40 -07:00
});
2015-05-08 20:48:43 -07:00
2015-05-19 12:15:40 -07:00
// Required since jQuery is loaded before requireJs
define('jquery', [], function () {
return jQuery;
});
2015-05-01 11:37:01 -07:00
2015-06-08 14:32:20 -07:00
if (Dashboard.isRunningInCordova() && $.browser.android) {
2015-06-19 21:48:45 -07:00
define("appstorage", ["cordova/android/appstorage"]);
2015-06-08 14:32:20 -07:00
} else {
define('appstorage', [], function () {
return appStorage;
});
}
if (Dashboard.isRunningInCordova()) {
2015-06-19 21:48:45 -07:00
define("serverdiscovery", ["cordova/serverdiscovery"]);
define("wakeonlan", ["cordova/wakeonlan"]);
2015-06-08 14:32:20 -07:00
} else {
2015-06-19 21:48:45 -07:00
define("serverdiscovery", ["apiclient/serverdiscovery"]);
define("wakeonlan", ["apiclient/wakeonlan"]);
2015-06-08 14:32:20 -07:00
}
if (Dashboard.isRunningInCordova() && $.browser.android) {
2015-06-19 21:48:45 -07:00
define("localassetmanager", ["cordova/android/localassetmanager"]);
2015-06-08 14:32:20 -07:00
} else {
2015-06-19 21:48:45 -07:00
define("localassetmanager", ["apiclient/localassetmanager"]);
2015-06-08 14:32:20 -07:00
}
2015-06-08 22:56:46 -07:00
if (Dashboard.isRunningInCordova() && $.browser.android) {
2015-06-19 21:48:45 -07:00
define("filesystem", ["cordova/android/filesystem"]);
2015-06-08 22:56:46 -07:00
}
else if (Dashboard.isRunningInCordova()) {
2015-06-19 21:48:45 -07:00
define("filesystem", ["cordova/filesystem"]);
2015-06-08 22:56:46 -07:00
}
else {
define("filesystem", ["thirdparty/filesystem"]);
}
2015-06-09 21:01:14 -07:00
if (Dashboard.isRunningInCordova() && $.browser.android) {
2015-06-19 21:48:45 -07:00
define("nativedirectorychooser", ["cordova/android/nativedirectorychooser"]);
2015-06-09 21:01:14 -07:00
}
2015-06-10 06:37:07 -07:00
if (Dashboard.isRunningInCordova() && $.browser.android) {
2015-06-19 21:48:45 -07:00
define("audiorenderer", ["cordova/android/vlcplayer"]);
2015-06-10 20:01:41 -07:00
//define("audiorenderer", ["scripts/htmlmediarenderer"]);
2015-06-10 06:37:07 -07:00
define("videorenderer", ["scripts/htmlmediarenderer"]);
}
else {
define("audiorenderer", ["scripts/htmlmediarenderer"]);
define("videorenderer", ["scripts/htmlmediarenderer"]);
}
2015-06-19 21:48:45 -07:00
define("connectservice", ["apiclient/connectservice"]);
2015-06-16 12:17:12 -07:00
define("paperbuttonstyle", [], function () {
2015-06-19 09:36:51 -07:00
Dashboard.importCss('thirdparty/paper-button-style.css');
2015-06-16 12:17:12 -07:00
return {};
});
2015-06-17 08:39:46 -07:00
define("jqmicons", [], function () {
Dashboard.importCss('thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.icons.css');
return {};
});
2015-06-22 08:43:19 -07:00
define("livetvcss", [], function () {
Dashboard.importCss('css/livetv.css');
return {};
});
2015-06-23 15:13:06 -07:00
define("detailtablecss", [], function () {
Dashboard.importCss('css/detailtable.css');
return {};
});
2015-06-25 14:50:56 -07:00
define("tileitemcss", [], function () {
Dashboard.importCss('css/tileitem.css');
return {};
});
2015-06-19 09:36:51 -07:00
if (Dashboard.isRunningInCordova() && $.browser.safari) {
2015-06-19 21:48:45 -07:00
define("actionsheet", ["cordova/ios/actionsheet"]);
2015-06-19 09:36:51 -07:00
} else {
define("actionsheet", ["scripts/actionsheet"]);
}
2015-06-08 14:32:20 -07:00
2015-06-01 22:46:06 -07:00
//requirejs(['http://viblast.com/player/free-version/qy2fdwajo1/viblast.js']);
2015-05-28 16:37:43 -07:00
$.extend(AppInfo, Dashboard.getAppInfo(appName, deviceId, deviceName));
2015-05-19 12:15:40 -07:00
2015-06-16 10:37:49 -07:00
$(document).on('WebComponentsReady', function () {
2015-06-21 14:31:21 -07:00
2015-06-29 11:45:42 -07:00
var drawer = document.querySelector('.mainDrawerPanel');
drawer.classList.remove('mainDrawerPanelPreInit');
2015-06-21 14:31:21 -07:00
drawer.forceNarrow = true;
drawer.drawerWidth = screen.availWidth >= 330 ? "310px" : "270px";
2015-06-22 08:43:19 -07:00
2015-06-29 11:45:42 -07:00
if ($.browser.safari && !AppInfo.isNativeApp) {
2015-06-22 08:43:19 -07:00
drawer.disableEdgeSwipe = true;
}
2015-06-21 14:31:21 -07:00
2015-06-16 10:37:49 -07:00
if (Dashboard.isConnectMode()) {
2015-06-08 14:32:20 -07:00
2015-06-16 10:37:49 -07:00
require(['appstorage'], function () {
2015-06-08 14:32:20 -07:00
2015-06-16 10:37:49 -07:00
capabilities.DeviceProfile = MediaPlayer.getDeviceProfile(Math.max(screen.height, screen.width));
createConnectionManager(capabilities).done(function () {
$(function () {
onDocumentReady();
Dashboard.initPromiseDone = true;
2015-06-26 20:27:38 -07:00
$.mobile.initializePage();
2015-06-16 10:37:49 -07:00
deferred.resolve();
});
2015-06-08 14:32:20 -07:00
});
});
2015-05-26 08:31:50 -07:00
2015-06-16 10:37:49 -07:00
} else {
createConnectionManager(capabilities);
2015-05-26 08:31:50 -07:00
2015-06-16 10:37:49 -07:00
$(function () {
2015-06-26 20:27:38 -07:00
2015-06-16 10:37:49 -07:00
onDocumentReady();
2015-06-26 08:53:49 -07:00
Dashboard.initPromiseDone = true;
2015-06-26 20:27:38 -07:00
$.mobile.initializePage();
2015-06-26 08:53:49 -07:00
deferred.resolve();
2015-06-16 10:37:49 -07:00
});
}
});
2015-05-19 12:15:40 -07:00
}
function initCordovaWithDeviceId(deferred, deviceId) {
2015-05-23 13:44:15 -07:00
2015-06-19 21:48:45 -07:00
require(['cordova/imagestore']);
2015-05-19 12:15:40 -07:00
2015-05-26 08:31:50 -07:00
var capablities = Dashboard.capabilities();
2015-06-08 14:32:20 -07:00
init(deferred, capablities, "Emby Mobile", deviceId, device.model);
2015-05-19 12:15:40 -07:00
}
function initCordova(deferred) {
2015-05-02 09:34:27 -07:00
2015-05-01 11:37:01 -07:00
document.addEventListener("deviceready", function () {
2015-04-30 20:00:29 -07:00
2015-05-19 12:15:40 -07:00
window.plugins.uniqueDeviceID.get(function (uuid) {
initCordovaWithDeviceId(deferred, uuid);
2015-05-15 08:46:20 -07:00
2015-05-19 12:15:40 -07:00
}, function () {
2015-05-01 11:37:01 -07:00
2015-05-19 12:15:40 -07:00
// Failure. Use cordova uuid
initCordovaWithDeviceId(deferred, device.uuid);
});
2015-05-01 11:37:01 -07:00
}, false);
2015-05-19 12:15:40 -07:00
}
2015-05-01 11:37:01 -07:00
2015-05-19 12:15:40 -07:00
var initDeferred = $.Deferred();
Dashboard.initPromise = initDeferred.promise();
2015-05-02 09:34:27 -07:00
2015-06-17 08:39:46 -07:00
setAppInfo();
setDocumentClasses();
2015-05-19 12:15:40 -07:00
if (Dashboard.isRunningInCordova()) {
initCordova(initDeferred);
} else {
2015-05-26 08:31:50 -07:00
init(initDeferred, Dashboard.capabilities());
2015-05-01 11:37:01 -07:00
}
2015-05-12 21:55:19 -07:00
2015-04-30 20:00:29 -07:00
})();
Dashboard.jQueryMobileInit();
2015-01-17 22:45:10 -07:00
$(document).on('pagecreate', ".page", function () {
var page = $(this);
2015-01-18 21:29:57 -07:00
var current = page.data('theme');
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-05-13 20:24:25 -07:00
if (page.hasClass('libraryPage')) {
newTheme = 'b';
} else {
newTheme = 'a';
}
2015-01-17 22:45:10 -07:00
2015-05-13 20:24:25 -07:00
current = page.page("option", "theme");
2015-01-17 22:45:10 -07:00
2015-05-13 20:24:25 -07:00
if (current && current != newTheme) {
page.page("option", "theme", newTheme);
}
2015-05-14 19:16:57 -07:00
current = newTheme;
2015-05-13 20:24:25 -07:00
}
2015-06-21 14:31:21 -07:00
if (current == 'b' && !$.browser.mobile) {
2015-06-28 07:45:21 -07:00
document.body.classList.add('darkScrollbars');
2015-05-13 20:24:25 -07:00
} else {
2015-06-28 07:45:21 -07:00
document.body.classList.remove('darkScrollbars');
2015-01-17 22:45:10 -07:00
}
2015-05-14 10:16:29 -07:00
}).on('pageinit', ".page", function () {
var page = this;
2015-06-16 10:37:49 -07:00
var dependencies = this.getAttribute('data-require');
2015-06-16 12:17:12 -07:00
dependencies = dependencies ? dependencies.split(',') : null;
Dashboard.firePageEvent(page, 'pageinitdepends', dependencies);
2015-05-14 10:16:29 -07:00
2015-05-25 10:32:22 -07:00
}).on('pagebeforeshow', ".page", function () {
2015-05-14 10:16:29 -07:00
var page = this;
2015-06-16 10:37:49 -07:00
var dependencies = this.getAttribute('data-require');
2015-05-19 12:15:40 -07:00
2015-06-28 07:45:21 -07:00
Dashboard.ensurePageTitle(page);
2015-06-16 12:17:12 -07:00
dependencies = dependencies ? dependencies.split(',') : null;
Dashboard.firePageEvent(page, 'pagebeforeshowready', dependencies);
2015-05-19 12:15:40 -07:00
2015-05-25 10:32:22 -07:00
}).on('pageshow', ".page", function () {
2015-05-14 10:16:29 -07:00
2015-05-19 12:15:40 -07:00
var page = this;
2015-06-16 10:37:49 -07:00
var dependencies = this.getAttribute('data-require');
2015-06-16 12:17:12 -07:00
dependencies = dependencies ? dependencies.split(',') : null;
Dashboard.firePageEvent(page, 'pageshowbeginready', dependencies);
2015-05-14 10:16:29 -07:00
2015-05-25 10:32:22 -07:00
}).on('pageshowbeginready', ".page", function () {
2015-06-28 07:45:21 -07:00
var page = this;
2015-05-18 15:23:03 -07:00
var apiClient = window.ApiClient;
2014-10-25 11:32:58 -07:00
2015-05-20 09:28:55 -07:00
if (apiClient && apiClient.accessToken() && Dashboard.getCurrentUserId()) {
2015-06-28 07:45:21 -07:00
var isSettingsPage = page.classList.contains('type-interior');
2015-05-31 11:22:51 -07:00
if (isSettingsPage) {
Dashboard.ensureToolsMenu(page);
2013-05-10 05:18:07 -07:00
2015-05-31 11:22:51 -07:00
Dashboard.getCurrentUser().done(function (user) {
2014-10-25 11:32:58 -07:00
2015-05-31 11:22:51 -07:00
if (!user.Policy.IsAdministrator) {
Dashboard.logout();
return;
}
});
}
}
2013-04-25 20:31:10 -07:00
2014-04-24 10:30:59 -07:00
else {
2015-05-05 08:24:47 -07:00
var isConnectMode = Dashboard.isConnectMode();
if (isConnectMode) {
2015-05-06 20:11:51 -07:00
2015-05-05 08:24:47 -07:00
if (!Dashboard.isServerlessPage()) {
2015-05-25 10:32:22 -07:00
Dashboard.logout();
2015-05-05 08:24:47 -07:00
return;
}
}
2015-05-06 20:11:51 -07:00
2015-06-28 07:45:21 -07:00
if (!isConnectMode && this.id !== "loginPage" && !page.classList.contains('forgotPasswordPage') && !page.classList.contains('wizardPage')) {
2014-10-21 05:42:02 -07:00
2015-06-26 20:27:38 -07:00
Logger.log('Not logged into server. Redirecting to login.');
2015-05-25 10:32:22 -07:00
Dashboard.logout();
2014-04-24 10:30:59 -07:00
return;
}
}
2015-05-25 10:32:22 -07:00
Dashboard.firePageEvent(page, 'pageshowready');
Dashboard.ensureHeader(page);
2014-10-25 11:32:58 -07:00
if (apiClient && !apiClient.isWebSocketOpen()) {
2013-07-16 09:03:28 -07:00
Dashboard.refreshSystemInfoFromServer();
}
2015-06-17 08:39:46 -07:00
2015-06-28 07:45:21 -07:00
if (!page.classList.contains('libraryPage')) {
2015-06-17 08:39:46 -07:00
require(['jqmicons']);
}
});