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

554 lines
17 KiB
JavaScript
Raw Normal View History

2013-02-20 18:33:05 -07:00
var DashboardPage = {
onPageShow: function () {
Dashboard.showLoadingMsg();
DashboardPage.pollForInfo();
DashboardPage.startInterval();
$(ApiClient).on("websocketmessage", DashboardPage.onWebSocketMessage).on("websocketopen", DashboardPage.onWebSocketConnectionChange).on("websocketerror", DashboardPage.onWebSocketConnectionChange).on("websocketclose", DashboardPage.onWebSocketConnectionChange);
2013-02-20 18:33:05 -07:00
DashboardPage.lastAppUpdateCheck = null;
DashboardPage.lastPluginUpdateCheck = null;
2013-07-07 08:53:26 -07:00
Dashboard.getPluginSecurityInfo().done(function (pluginSecurityInfo) {
if (pluginSecurityInfo.IsMBSupporter) {
$('#contribute').hide();
} else {
$('#contribute').show();
}
});
2013-02-20 18:33:05 -07:00
},
onPageHide: function () {
$(ApiClient).off("websocketmessage", DashboardPage.onWebSocketMessage).off("websocketopen", DashboardPage.onWebSocketConnectionChange).off("websocketerror", DashboardPage.onWebSocketConnectionChange).off("websocketclose", DashboardPage.onWebSocketConnectionChange);
2013-02-20 18:33:05 -07:00
DashboardPage.stopInterval();
},
startInterval: function () {
if (ApiClient.isWebSocketOpen()) {
ApiClient.sendWebSocketMessage("DashboardInfoStart", "0,1500");
2013-02-20 18:33:05 -07:00
}
},
stopInterval: function () {
if (ApiClient.isWebSocketOpen()) {
ApiClient.sendWebSocketMessage("DashboardInfoStop");
2013-02-20 18:33:05 -07:00
}
},
onWebSocketMessage: function (e, msg) {
if (msg.MessageType == "DashboardInfo") {
DashboardPage.renderInfo(msg.Data);
}
},
onWebSocketConnectionChange: function () {
DashboardPage.stopInterval();
DashboardPage.startInterval();
},
pollForInfo: function () {
$.getJSON("dashboardInfo").done(DashboardPage.renderInfo);
},
renderInfo: function (dashboardInfo) {
DashboardPage.lastDashboardInfo = dashboardInfo;
DashboardPage.renderRunningTasks(dashboardInfo);
DashboardPage.renderSystemInfo(dashboardInfo);
DashboardPage.renderActiveConnections(dashboardInfo);
Dashboard.hideLoadingMsg();
},
renderActiveConnections: function (dashboardInfo) {
var page = $.mobile.activePage;
var html = '';
var table = $('.tblConnections', page);
2013-02-20 18:33:05 -07:00
$('.trSession', table).addClass('deadSession');
2013-02-20 18:33:05 -07:00
for (var i = 0, length = dashboardInfo.ActiveConnections.length; i < length; i++) {
var connection = dashboardInfo.ActiveConnections[i];
var rowId = 'trSession' + connection.Id;
2013-02-20 18:33:05 -07:00
var elem = $('#' + rowId, page);
if (elem.length) {
DashboardPage.updateSession(elem, connection);
continue;
}
html += '<tr class="trSession" id="' + rowId + '">';
html += '<td class="clientType" style="text-align:center;">';
2013-02-20 18:33:05 -07:00
html += DashboardPage.getClientType(connection);
html += '</td>';
html += '<td>';
html += '<div>' + connection.Client + '</div>';
html += '<div>' + connection.ApplicationVersion + '</div>';
html += '<div>' + connection.DeviceName + '</div>';
2013-02-20 18:33:05 -07:00
html += '</td>';
html += '<td class="username">';
2013-06-19 05:24:50 -07:00
html += connection.UserName || '';
2013-02-20 18:33:05 -07:00
html += '</td>';
var nowPlayingItem = connection.NowPlayingItem;
html += '<td class="nowPlayingImage">';
html += DashboardPage.getNowPlayingImage(nowPlayingItem);
2013-02-20 18:33:05 -07:00
html += '</td>';
html += '<td class="nowPlayingText">';
html += DashboardPage.getNowPlayingText(connection, nowPlayingItem);
2013-02-20 18:33:05 -07:00
html += '</td>';
html += '</tr>';
}
table.append(html).trigger('create');
2013-02-20 18:33:05 -07:00
$('.deadSession', table).remove();
},
updateSession: function (row, session) {
row.removeClass('deadSession');
$('.username', row).html(session.UserName || '');
var nowPlayingItem = session.NowPlayingItem;
$('.nowPlayingText', row).html(DashboardPage.getNowPlayingText(session, nowPlayingItem)).trigger('create');
var imageRow = $('.nowPlayingImage', row);
var image = $('img', imageRow)[0];
var nowPlayingItemId = nowPlayingItem ? nowPlayingItem.Id : null;
var nowPlayingItemImageTag = nowPlayingItem ? nowPlayingItem.PrimaryImageTag : null;
if (!image || image.getAttribute('data-itemid') != nowPlayingItemId || image.getAttribute('data-tag') != nowPlayingItemImageTag) {
imageRow.html(DashboardPage.getNowPlayingImage(nowPlayingItem));
}
2013-02-20 18:33:05 -07:00
},
getClientType: function (connection) {
2013-03-21 13:20:00 -07:00
var clientLowered = connection.Client.toLowerCase();
2013-05-18 11:58:03 -07:00
2013-03-21 13:20:00 -07:00
if (clientLowered == "dashboard") {
2013-02-20 18:33:05 -07:00
2013-06-02 05:13:41 -07:00
var device = connection.DeviceName.toLowerCase();
var imgUrl;
if (device.indexOf('chrome') != -1) {
imgUrl = 'css/images/clients/chrome.png';
}
else if (device.indexOf('firefox') != -1) {
imgUrl = 'css/images/clients/firefox.png';
}
2013-07-28 06:58:26 -07:00
else if (device.indexOf('internet explorer') != -1) {
2013-06-02 05:13:41 -07:00
imgUrl = 'css/images/clients/ie.png';
}
else if (device.indexOf('safari') != -1) {
imgUrl = 'css/images/clients/safari.png';
}
else {
imgUrl = 'css/images/clients/html5.png';
}
return "<img src='" + imgUrl + "' alt='Dashboard' />";
2013-02-20 18:33:05 -07:00
}
2013-05-10 09:20:20 -07:00
if (clientLowered == "mb-classic") {
2013-03-21 13:20:00 -07:00
return "<img src='css/images/clients/mbc.png' alt='Media Browser Classic' />";
2013-03-21 13:20:00 -07:00
}
if (clientLowered == "media browser theater") {
2013-02-20 18:33:05 -07:00
return "<img src='css/images/clients/mb.png' alt='Media Browser Theater' />";
2013-02-20 18:33:05 -07:00
}
2013-03-21 13:20:00 -07:00
if (clientLowered == "android") {
2013-02-20 18:33:05 -07:00
return "<img src='css/images/clients/android.png' alt='Android' />";
2013-02-20 18:33:05 -07:00
}
2013-05-22 12:31:27 -07:00
if (clientLowered == "roku") {
return "<img src='css/images/clients/roku.jpg' alt='Roku' />";
2013-05-22 12:31:27 -07:00
}
2013-03-21 13:20:00 -07:00
if (clientLowered == "ios") {
2013-02-20 18:33:05 -07:00
return "<img src='css/images/clients/ios.png' alt='iOS' />";
2013-02-20 18:33:05 -07:00
}
2013-03-21 13:20:00 -07:00
if (clientLowered == "windows rt") {
2013-02-20 18:33:05 -07:00
return "<img src='css/images/clients/windowsrt.png' alt='Windows RT' />";
2013-02-20 18:33:05 -07:00
}
2013-03-21 13:20:00 -07:00
if (clientLowered == "windows phone") {
2013-02-20 18:33:05 -07:00
return "<img src='css/images/clients/windowsphone.png' alt='Windows Phone' />";
2013-02-20 18:33:05 -07:00
}
2013-03-21 13:20:00 -07:00
if (clientLowered == "dlna") {
2013-03-04 19:32:14 -07:00
return "<img src='css/images/clients/dlna.png' alt='Dlna' />";
2013-03-04 19:32:14 -07:00
}
2013-08-09 07:25:54 -07:00
if (clientLowered == "mbkinect") {
return "<img src='css/images/clients/mbkinect.png' alt='MB Kinect' />";
}
2013-02-20 18:33:05 -07:00
return connection.Client;
2013-02-20 18:33:05 -07:00
},
getNowPlayingImage: function (item) {
if (item && item.PrimaryImageTag) {
var url = ApiClient.getImageUrl(item.Id, {
type: "Primary",
height: 100,
tag: item.PrimaryImageTag
});
2013-02-20 18:33:05 -07:00
url += "&xxx=" + new Date().getTime();
return "<img data-itemid='" + item.Id + "' data-tag='" + item.PrimaryImageTag + "' class='clientNowPlayingImage' src='" + url + "' alt='" + item.Name + "' title='" + item.Name + "' />";
2013-02-20 18:33:05 -07:00
}
return "";
},
getNowPlayingText: function (connection, item) {
var html = "";
if (item) {
html += "<div><a href='itemdetails.html?id=" + item.Id + "'>" + item.Name + "</a></div>";
2013-02-20 18:33:05 -07:00
html += "<div>";
if (item.RunTimeTicks) {
2013-06-07 10:29:33 -07:00
html += Dashboard.getDisplayTime(connection.NowPlayingPositionTicks || 0) + " / ";
2013-02-20 18:33:05 -07:00
2013-06-07 10:29:33 -07:00
html += Dashboard.getDisplayTime(item.RunTimeTicks);
2013-02-20 18:33:05 -07:00
}
html += "</div>";
}
return html;
},
renderRunningTasks: function (dashboardInfo) {
var page = $.mobile.activePage;
var html = '';
if (!dashboardInfo.RunningTasks.length) {
html += '<p>No tasks are currently running.</p>';
2013-09-28 11:16:30 -07:00
$('#runningTasksCollapsible', page).hide();
} else {
$('#runningTasksCollapsible', page).show();
2013-02-20 18:33:05 -07:00
}
for (var i = 0, length = dashboardInfo.RunningTasks.length; i < length; i++) {
var task = dashboardInfo.RunningTasks[i];
html += '<p>';
html += task.Name;
if (task.State == "Running") {
var progress = (task.CurrentProgressPercentage || 0).toFixed(1);
2013-02-21 21:23:06 -07:00
html += '<span style="color:#267F00;margin-right:5px;font-weight:bold;"> - ' + progress + '%</span>';
2013-02-20 18:33:05 -07:00
html += '<button type="button" data-icon="stop" data-iconpos="notext" data-inline="true" data-theme="b" data-mini="true" onclick="DashboardPage.stopTask(\'' + task.Id + '\');">Stop</button>';
}
else if (task.State == "Cancelling") {
html += '<span style="color:#cc0000;"> - Stopping</span>';
}
html += '</p>';
}
$('#divRunningTasks', page).html(html).trigger('create');
},
bookmarkPageIfSupported: function (url) {
if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
window.sidebar.addPanel("Media Browser", url, '');
} else if (window.external && window.external.AddFavorite) { // IE Favorite
window.external.AddFavorite(url, "Media Browser");
} else { // webkit - safari/chrome
return false;
}
return true;
},
2013-02-20 18:33:05 -07:00
renderSystemInfo: function (dashboardInfo) {
Dashboard.updateSystemInfo(dashboardInfo.SystemInfo);
var page = $.mobile.activePage;
$('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version);
var port = dashboardInfo.SystemInfo.HttpServerPortNumber;
2013-05-18 11:58:03 -07:00
if (port == dashboardInfo.SystemInfo.WebSocketPortNumber) {
$('#ports', page).html('Running on port <b>' + port + '</b>');
} else {
$('#ports', page).html('Running on ports <b>' + port + '</b> and <b>' + dashboardInfo.SystemInfo.WebSocketPortNumber + '</b>');
}
2013-11-30 11:32:39 -07:00
$('#logPath', page).html(dashboardInfo.SystemInfo.LogPath);
$('#imagesByNamePath', page).html(dashboardInfo.SystemInfo.ItemsByNamePath);
var host = ApiClient.serverHostName();
var url = "http://" + host + ":" + port + "/mediabrowser";
$('#bookmarkUrl', page).html(url).attr("href", url);
2013-02-20 18:33:05 -07:00
if (dashboardInfo.RunningTasks.filter(function (task) {
return task.Id == dashboardInfo.ApplicationUpdateTaskId;
}).length) {
$('#btnUpdateApplication', page).button('disable');
} else {
$('#btnUpdateApplication', page).button('enable');
}
2013-10-07 07:38:31 -07:00
if (dashboardInfo.SystemInfo.CanSelfRestart) {
$('.btnRestartContainer', page).removeClass('hide');
} else {
$('.btnRestartContainer', page).addClass('hide');
}
2013-02-20 18:33:05 -07:00
DashboardPage.renderApplicationUpdateInfo(dashboardInfo);
DashboardPage.renderPluginUpdateInfo(dashboardInfo);
DashboardPage.renderPendingInstallations(dashboardInfo.SystemInfo);
2013-02-20 18:33:05 -07:00
},
renderApplicationUpdateInfo: function (dashboardInfo) {
var page = $.mobile.activePage;
$('#updateFail', page).hide();
if (!dashboardInfo.SystemInfo.HasPendingRestart) {
2013-02-20 18:33:05 -07:00
// Only check once every 10 mins
if (DashboardPage.lastAppUpdateCheck && (new Date().getTime() - DashboardPage.lastAppUpdateCheck) < 600000) {
return;
}
DashboardPage.lastAppUpdateCheck = new Date().getTime();
ApiClient.getAvailableApplicationUpdate().done(function (packageInfo) {
2013-02-28 13:00:17 -07:00
var version = packageInfo[0];
2013-02-20 18:33:05 -07:00
if (!version) {
$('#pUpToDate', page).show();
$('#pUpdateNow', page).hide();
} else {
$('#pUpToDate', page).hide();
$('#pUpdateNow', page).show();
if (dashboardInfo.SystemInfo.CanSelfUpdate) {
$('#btnUpdateApplicationContainer', page).show();
$('#btnManualUpdateContainer', page).hide();
} else {
$('#btnUpdateApplicationContainer', page).hide();
$('#btnManualUpdateContainer', page).show();
}
2013-02-20 18:33:05 -07:00
$('#newVersionNumber', page).html("Version " + version.versionStr + " is now available for download.");
}
}).fail(function () {
$('#updateFail', page).show();
2013-02-20 18:33:05 -07:00
});
} else {
2013-02-20 18:33:05 -07:00
if (dashboardInfo.SystemInfo.HasPendingRestart) {
$('#pUpToDate', page).hide();
} else {
$('#pUpToDate', page).show();
}
2013-02-20 18:33:05 -07:00
$('#pUpdateNow', page).hide();
}
},
renderPendingInstallations: function (systemInfo) {
var page = $.mobile.activePage;
if (systemInfo.CompletedInstallations.length) {
$('#collapsiblePendingInstallations', page).show();
} else {
$('#collapsiblePendingInstallations', page).hide();
return;
}
var html = '';
for (var i = 0, length = systemInfo.CompletedInstallations.length; i < length; i++) {
var update = systemInfo.CompletedInstallations[i];
html += '<div><strong>' + update.Name + '</strong> (' + update.Version + ')</div>';
}
$('#pendingInstallations', page).html(html);
},
2013-02-20 18:33:05 -07:00
renderPluginUpdateInfo: function (dashboardInfo) {
// Only check once every 10 mins
if (DashboardPage.lastPluginUpdateCheck && (new Date().getTime() - DashboardPage.lastPluginUpdateCheck) < 600000) {
return;
}
DashboardPage.lastPluginUpdateCheck = new Date().getTime();
var page = $.mobile.activePage;
ApiClient.getAvailablePluginUpdates().done(function (updates) {
var elem = $('#pPluginUpdates', page);
2013-02-20 18:33:05 -07:00
if (updates.length) {
elem.show();
2013-02-20 18:33:05 -07:00
} else {
elem.hide();
2013-02-20 18:33:05 -07:00
return;
}
var html = '';
for (var i = 0, length = updates.length; i < length; i++) {
var update = updates[i];
html += '<p><strong>A new version of ' + update.name + ' is available!</strong></p>';
html += '<button type="button" data-icon="download" data-theme="b" onclick="DashboardPage.installPluginUpdate(this);" data-name="' + update.name + '" data-guid="' + update.guid + '" data-version="' + update.versionStr + '" data-classification="' + update.classification + '">Update Now</button>';
2013-02-20 18:33:05 -07:00
}
elem.html(html).trigger('create');
2013-02-20 18:33:05 -07:00
}).fail(function () {
2013-07-10 13:06:11 -07:00
$('#updateFail', page).show();
2013-02-20 18:33:05 -07:00
});
},
installPluginUpdate: function (button) {
$(button).button('disable');
var name = button.getAttribute('data-name');
var guid = button.getAttribute('data-guid');
2013-02-20 18:33:05 -07:00
var version = button.getAttribute('data-version');
var classification = button.getAttribute('data-classification');
Dashboard.showLoadingMsg();
ApiClient.installPlugin(name, guid, classification, version).done(function () {
2013-02-20 18:33:05 -07:00
Dashboard.hideLoadingMsg();
});
},
updateApplication: function () {
var page = $.mobile.activePage;
$('#btnUpdateApplication', page).button('disable');
Dashboard.showLoadingMsg();
ApiClient.startScheduledTask(DashboardPage.lastDashboardInfo.ApplicationUpdateTaskId).done(function () {
DashboardPage.pollForInfo();
Dashboard.hideLoadingMsg();
});
},
stopTask: function (id) {
ApiClient.stopScheduledTask(id).done(function () {
DashboardPage.pollForInfo();
});
},
restart: function () {
Dashboard.confirm("Are you sure you wish to restart Media Browser Server?", "Restart", function (result) {
if (result) {
2013-07-16 14:06:12 -07:00
$('#btnRestartServer').button('disable');
2013-10-01 08:16:38 -07:00
$('#btnShutdown').button('disable');
Dashboard.restartServer();
}
2013-10-01 08:16:38 -07:00
});
},
shutdown: function () {
Dashboard.confirm("Are you sure you wish to shutdown Media Browser Server?", "Shutdown", function (result) {
if (result) {
$('#btnRestartServer').button('disable');
$('#btnShutdown').button('disable');
ApiClient.shutdownServer();
}
});
2013-02-20 18:33:05 -07:00
}
};
$(document).on('pageshow', "#dashboardPage", DashboardPage.onPageShow).on('pagehide', "#dashboardPage", DashboardPage.onPageHide);