jellyfin-web/dashboard-ui/thirdparty/apiclient/mediabrowser.apiclient.js

3355 lines
85 KiB
JavaScript
Raw Normal View History

2014-10-27 14:45:50 -07:00
(function (globalScope, $, JSON, WebSocket, setTimeout, devicePixelRatio, FileReader) {
2014-10-27 14:45:50 -07:00
if (!globalScope.MediaBrowser) {
globalScope.MediaBrowser = {};
}
2014-07-07 18:41:03 -07:00
/**
2013-03-21 13:20:00 -07:00
* Creates a new api client instance
2014-01-18 12:25:20 -07:00
* @param {String} serverAddress
2013-03-21 13:20:00 -07:00
* @param {String} clientName
* @param {String} applicationVersion
*/
2014-10-27 14:45:50 -07:00
globalScope.MediaBrowser.ApiClient = function (serverAddress, clientName, applicationVersion, deviceName, deviceId, capabilities) {
2014-01-18 12:25:20 -07:00
if (!serverAddress) {
throw new Error("Must supply a serverAddress");
}
2014-10-21 21:42:26 -07:00
console.log('ApiClient serverAddress: ' + serverAddress);
console.log('ApiClient clientName: ' + clientName);
console.log('ApiClient applicationVersion: ' + applicationVersion);
console.log('ApiClient deviceName: ' + deviceName);
console.log('ApiClient deviceId: ' + deviceId);
2013-03-21 13:20:00 -07:00
var self = this;
var currentUserId;
2014-07-07 18:41:03 -07:00
var accessToken;
var webSocket;
2014-10-25 11:32:58 -07:00
var serverInfo;
2013-03-21 13:20:00 -07:00
/**
2014-01-18 12:25:20 -07:00
* Gets the server address.
2013-03-21 13:20:00 -07:00
*/
2014-10-29 15:01:02 -07:00
self.serverAddress = function (val) {
if (val != null) {
var changed = val != serverAddress;
serverAddress = val;
if (changed) {
$(this).trigger('serveraddresschanged');
}
}
2013-03-15 22:52:33 -07:00
2014-01-18 12:25:20 -07:00
return serverAddress;
2013-03-21 13:20:00 -07:00
};
2014-07-12 21:55:56 -07:00
self.apiPrefix = function () {
return "/mediabrowser";
};
2014-10-25 11:32:58 -07:00
self.serverInfo = function (info) {
serverInfo = info || serverInfo;
return serverInfo;
};
2013-03-21 13:20:00 -07:00
/**
* Gets or sets the current user id.
*/
2014-07-07 18:41:03 -07:00
self.getCurrentUserId = function () {
2014-07-07 18:41:03 -07:00
return currentUserId;
};
2014-09-15 20:33:30 -07:00
self.accessToken = function () {
2014-08-16 22:38:13 -07:00
return accessToken;
};
2014-07-07 18:41:03 -07:00
self.setCurrentUserId = function (userId, token) {
currentUserId = userId;
accessToken = token;
2013-03-21 13:20:00 -07:00
};
2014-04-06 10:53:23 -07:00
self.deviceName = function () {
return deviceName;
};
2013-11-08 14:21:51 -07:00
self.deviceId = function () {
2013-05-12 15:57:51 -07:00
return deviceId;
};
2014-10-23 21:54:35 -07:00
self.clearAuthenticationInfo = function () {
accessToken = null;
currentUserId = null;
};
self.setAuthenticationInfo = function (accessKey, userId) {
accessToken = accessKey;
currentUserId = userId;
};
2013-11-08 14:21:51 -07:00
self.encodeName = function (name) {
2013-04-29 08:06:31 -07:00
name = name.split('/').join('-');
2014-10-20 20:41:11 -07:00
name = name.split('&').join('-');
name = name.split('?').join('-');
2013-04-29 08:06:31 -07:00
var val = $.param({ name: name });
return val.substring(val.indexOf('=') + 1).replace("'", '%27');
};
2013-04-14 14:13:04 -07:00
2014-10-28 16:17:55 -07:00
function onRequestFail(e) {
$(self).trigger('requestfail', [
{
url: this.url,
status: e.status,
errorCode: e.getResponseHeader("X-Application-Error-Code")
}]);
}
function onRetryRequestFail(request) {
$(self).trigger('requestfail', [
{
url: request.url
}]);
}
2013-03-21 13:43:42 -07:00
/**
* Wraps around jQuery ajax methods to add additional info to the request.
*/
2014-10-25 11:32:58 -07:00
self.ajax = function (request, includeAuthorization) {
2013-03-21 13:20:00 -07:00
if (!request) {
throw new Error("Request cannot be null");
}
2013-03-15 22:52:33 -07:00
2014-10-25 11:32:58 -07:00
if (includeAuthorization !== false) {
if (clientName) {
2014-10-25 11:32:58 -07:00
var auth = 'MediaBrowser Client="' + clientName + '", Device="' + deviceName + '", DeviceId="' + deviceId + '", Version="' + applicationVersion + '"';
2014-10-25 11:32:58 -07:00
if (currentUserId) {
auth += ', UserId="' + currentUserId + '"';
}
2014-10-25 11:32:58 -07:00
request.headers = {
Authorization: auth
};
}
2014-10-25 11:32:58 -07:00
if (accessToken) {
request.headers['X-MediaBrowser-Token'] = accessToken;
}
2014-07-07 18:41:03 -07:00
}
2014-10-28 16:17:55 -07:00
if (!self.enableAutomaticNetwork || !self.serverInfo() || self.connectionMode == null) {
2014-10-29 15:01:02 -07:00
console.log('Requesting url without automatic networking: ' + request.url);
2014-10-28 16:17:55 -07:00
return $.ajax(request).fail(onRequestFail);
2014-10-27 14:45:50 -07:00
}
var deferred = $.Deferred();
2014-10-28 16:17:55 -07:00
self.ajaxWithFailover(request, deferred, true);
2014-10-27 14:45:50 -07:00
return deferred.promise();
};
2014-10-28 16:17:55 -07:00
function switchConnectionMode(connectionMode) {
var newConnectionMode;
2014-10-27 14:45:50 -07:00
2014-10-28 16:17:55 -07:00
if (connectionMode == MediaBrowser.ConnectionMode.Local && serverInfo.RemoteAddress) {
newConnectionMode = MediaBrowser.ConnectionMode.Remote;
2014-10-27 14:45:50 -07:00
}
2014-10-28 16:17:55 -07:00
else if (connectionMode == MediaBrowser.ConnectionMode.Remote && serverInfo.LocalAddress) {
newConnectionMode = MediaBrowser.ConnectionMode.Local;
}
else {
newConnectionMode = connectionMode;
}
return newConnectionMode;
}
function tryReconnectInternal(deferred, connectionMode, currentRetryCount) {
2014-10-27 14:45:50 -07:00
var url = connectionMode == MediaBrowser.ConnectionMode.Local ?
self.serverInfo().LocalAddress :
self.serverInfo().RemoteAddress;
2014-10-29 15:01:02 -07:00
console.log("Attempting reconnection to " + url);
2014-10-27 14:45:50 -07:00
$.ajax({
type: "GET",
url: url + "/mediabrowser/system/info/public",
dataType: "json",
timeout: 3000
}).done(function () {
2014-10-29 15:01:02 -07:00
console.log("Reconnect succeeeded to " + url);
2014-10-27 14:45:50 -07:00
self.connectionMode = connectionMode;
2014-10-28 16:17:55 -07:00
self.serverAddress(url);
2014-10-27 14:45:50 -07:00
deferred.resolve();
}).fail(function () {
2014-10-29 15:01:02 -07:00
console.log("Reconnect attempt failed to " + url);
2014-10-27 14:45:50 -07:00
if (currentRetryCount <= 6) {
2014-10-28 16:17:55 -07:00
var newConnectionMode = switchConnectionMode(connectionMode);
2014-10-27 14:45:50 -07:00
2014-10-28 16:17:55 -07:00
setTimeout(function () {
tryReconnectInternal(deferred, newConnectionMode, currentRetryCount + 1);
}, 500);
2014-10-27 14:45:50 -07:00
} else {
deferred.reject();
}
});
}
function tryReconnect() {
var deferred = $.Deferred();
2014-10-28 16:17:55 -07:00
setTimeout(function () {
tryReconnectInternal(deferred, self.connectionMode, 0);
}, 500);
2014-10-27 14:45:50 -07:00
return deferred.promise();
}
function replaceServerAddress(url, newBaseUrl) {
var index = url.toLowerCase().indexOf("/mediabrowser");
if (index != -1) {
return newBaseUrl + url.substring(index);
}
return url;
}
self.ajaxWithFailover = function (request, deferred, enableReconnection, replaceUrl) {
if (replaceUrl) {
2014-10-28 16:17:55 -07:00
var baseUrl = self.connectionMode == MediaBrowser.ConnectionMode.Local ?
2014-10-27 14:45:50 -07:00
self.serverInfo().LocalAddress :
self.serverInfo().RemoteAddress;
request.url = replaceServerAddress(request.url, baseUrl);
}
2014-10-29 15:01:02 -07:00
console.log("Requesting " + request.url);
request.timeout = 3000;
2014-10-27 14:45:50 -07:00
$.ajax(request).done(function (response) {
2014-10-29 15:01:02 -07:00
deferred.resolve(response, 0);
2014-10-27 14:45:50 -07:00
2014-10-28 16:17:55 -07:00
}).fail(function (e, textStatus) {
2014-10-27 14:45:50 -07:00
2014-10-29 15:01:02 -07:00
console.log("Request failed with textStatus " + textStatus + " to " + request.url);
var statusCode = parseInt(e.status || '0');
var isUserErrorCode = statusCode >= 400 && statusCode < 500;
2014-10-28 16:17:55 -07:00
// http://api.jquery.com/jQuery.ajax/
2014-10-29 15:01:02 -07:00
if (enableReconnection && !isUserErrorCode) {
2014-10-27 14:45:50 -07:00
tryReconnect().done(function () {
2014-10-29 15:01:02 -07:00
console.log("Reconnect succeesed");
2014-10-27 14:45:50 -07:00
self.ajaxWithFailover(request, deferred, false, true);
}).fail(function () {
2014-10-29 15:01:02 -07:00
console.log("Reconnect failed");
2014-10-28 16:17:55 -07:00
onRetryRequestFail(request);
2014-10-27 14:45:50 -07:00
deferred.reject();
});
} else {
2014-10-28 16:17:55 -07:00
onRetryRequestFail(request);
2014-10-27 14:45:50 -07:00
deferred.reject();
}
});
2013-03-21 13:20:00 -07:00
};
2014-11-26 12:29:49 -07:00
self.get = function (url) {
return self.ajax({
type: "GET",
url: url
});
};
2014-07-07 18:41:03 -07:00
self.getJSON = function (url) {
2014-07-01 22:16:59 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Creates an api url based on a handler name and query string parameters
* @param {String} name
* @param {Object} params
*/
2013-11-08 14:21:51 -07:00
self.getUrl = function (name, params) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("Url name cannot be empty");
}
2014-01-18 12:25:20 -07:00
var url = serverAddress;
2014-07-12 21:55:56 -07:00
url += self.apiPrefix() + "/" + name;
2013-03-15 22:52:33 -07:00
2013-03-21 13:20:00 -07:00
if (params) {
url += "?" + $.param(params);
}
2013-03-21 13:20:00 -07:00
return url;
};
2014-10-25 11:32:58 -07:00
self.enableAutomaticNetworking = function (server, connectionMode) {
2014-10-23 21:54:35 -07:00
2014-10-27 14:45:50 -07:00
self.serverInfo(server);
self.connectionMode = connectionMode;
self.enableAutomaticNetwork = true;
2014-10-28 16:17:55 -07:00
var url = connectionMode == MediaBrowser.ConnectionMode.Local ?
self.serverInfo().LocalAddress :
self.serverInfo().RemoteAddress;
self.serverAddress(url);
2014-10-27 14:45:50 -07:00
};
self.isWebSocketSupported = function () {
return WebSocket != null;
2014-10-23 21:54:35 -07:00
};
2014-10-21 21:42:26 -07:00
self.openWebSocket = function () {
var url = serverAddress + self.apiPrefix();
2014-10-21 21:42:26 -07:00
url = url.replace('http', 'ws');
webSocket = new WebSocket(url);
2013-11-08 14:21:51 -07:00
webSocket.onmessage = function (msg) {
2014-07-18 18:28:40 -07:00
msg = JSON.parse(msg.data);
$(self).trigger("websocketmessage", [msg]);
};
2013-11-08 14:21:51 -07:00
webSocket.onopen = function () {
2014-05-16 21:24:10 -07:00
console.log('web socket connection opened');
2013-11-08 14:21:51 -07:00
setTimeout(function () {
self.sendWebSocketMessage("Identity", clientName + "|" + deviceId + "|" + applicationVersion + "|" + deviceName);
2014-10-25 11:32:58 -07:00
self.reportCapabilities(capabilities);
$(self).trigger("websocketopen");
2014-05-21 12:33:46 -07:00
}, 500);
};
2013-11-08 14:21:51 -07:00
webSocket.onerror = function () {
setTimeout(function () {
$(self).trigger("websocketerror");
}, 0);
};
2013-11-08 14:21:51 -07:00
webSocket.onclose = function () {
setTimeout(function () {
$(self).trigger("websocketclose");
}, 0);
};
};
2013-11-08 14:21:51 -07:00
self.closeWebSocket = function () {
2013-09-09 11:23:55 -07:00
if (webSocket && webSocket.readyState === WebSocket.OPEN) {
webSocket.close();
}
};
2013-11-08 14:21:51 -07:00
self.sendWebSocketMessage = function (name, data) {
2014-04-28 20:56:20 -07:00
console.log('Sending web socket message: ' + name);
2014-05-21 12:33:46 -07:00
var msg = { MessageType: name };
if (data) {
msg.Data = data;
}
msg = JSON.stringify(msg);
webSocket.send(msg);
};
2013-11-08 14:21:51 -07:00
self.isWebSocketOpen = function () {
return webSocket && webSocket.readyState === WebSocket.OPEN;
};
2013-11-08 14:21:51 -07:00
self.isWebSocketOpenOrConnecting = function () {
return webSocket && (webSocket.readyState === WebSocket.OPEN || webSocket.readyState === WebSocket.CONNECTING);
};
2014-01-18 14:52:01 -07:00
self.getProductNews = function (options) {
options = options || {};
var url = self.getUrl("News/Product", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets an item from the server
* Omit itemId to get the root folder.
*/
2013-11-08 14:21:51 -07:00
self.getItem = function (userId, itemId) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2014-04-07 21:17:18 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Items/" + itemId);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the root folder from the server
*/
2013-11-08 14:21:51 -07:00
self.getRootFolder = function (userId) {
2013-03-29 10:25:12 -07:00
if (!userId) {
throw new Error("null userId");
}
var url = self.getUrl("Users/" + userId + "/Items/Root");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
2013-03-21 13:20:00 -07:00
};
2013-11-08 14:21:51 -07:00
self.getNotificationSummary = function (userId) {
2013-07-06 14:23:32 -07:00
if (!userId) {
throw new Error("null userId");
}
var url = self.getUrl("Notifications/" + userId + "/Summary");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getNotifications = function (userId, options) {
2013-07-06 14:23:32 -07:00
if (!userId) {
throw new Error("null userId");
}
var url = self.getUrl("Notifications/" + userId, options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.markNotificationsRead = function (userId, idList, isRead) {
2013-07-06 14:23:32 -07:00
if (!userId) {
throw new Error("null userId");
}
2014-10-04 11:05:24 -07:00
if (!idList) {
2013-07-06 14:23:32 -07:00
throw new Error("null idList");
}
var suffix = isRead ? "Read" : "Unread";
var params = {
UserId: userId,
Ids: idList.join(',')
};
var url = self.getUrl("Notifications/" + userId + "/" + suffix, params);
return self.ajax({
type: "POST",
url: url
});
};
2013-11-04 12:54:32 -07:00
2014-07-07 18:41:03 -07:00
self.logout = function () {
var done = function () {
self.setCurrentUserId(null, null);
};
if (accessToken) {
var url = self.getUrl("Sessions/Logout");
return self.ajax({
type: "POST",
url: url
}).done(done);
}
var deferred = $.Deferred();
deferred.resolveWith(null, []);
return deferred.promise().done(done);
};
function getRemoteImagePrefix(options) {
2013-11-04 12:54:32 -07:00
var urlPrefix;
if (options.artist) {
urlPrefix = "Artists/" + self.encodeName(options.artist);
delete options.artist;
2013-11-08 13:53:09 -07:00
} else if (options.person) {
urlPrefix = "Persons/" + self.encodeName(options.person);
delete options.person;
2013-11-08 13:53:09 -07:00
} else if (options.genre) {
urlPrefix = "Genres/" + self.encodeName(options.genre);
delete options.genre;
2013-11-08 13:53:09 -07:00
} else if (options.musicGenre) {
urlPrefix = "MusicGenres/" + self.encodeName(options.musicGenre);
delete options.musicGenre;
2013-11-08 13:53:09 -07:00
} else if (options.gameGenre) {
urlPrefix = "GameGenres/" + self.encodeName(options.gameGenre);
delete options.gameGenre;
2013-11-08 13:53:09 -07:00
} else if (options.studio) {
urlPrefix = "Studios/" + self.encodeName(options.studio);
delete options.studio;
2013-11-08 13:53:09 -07:00
} else {
urlPrefix = "Items/" + options.itemId;
delete options.itemId;
}
return urlPrefix;
}
2013-07-06 14:23:32 -07:00
2013-11-08 14:21:51 -07:00
self.getRemoteImageProviders = function (options) {
if (!options) {
throw new Error("null options");
}
var urlPrefix = getRemoteImagePrefix(options);
var url = self.getUrl(urlPrefix + "/RemoteImages/Providers", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getAvailableRemoteImages = function (options) {
if (!options) {
throw new Error("null options");
}
var urlPrefix = getRemoteImagePrefix(options);
var url = self.getUrl(urlPrefix + "/RemoteImages", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.downloadRemoteImage = function (options) {
if (!options) {
throw new Error("null options");
}
var urlPrefix = getRemoteImagePrefix(options);
var url = self.getUrl(urlPrefix + "/RemoteImages/Download", options);
return self.ajax({
type: "POST",
url: url
});
};
2014-01-14 13:03:35 -07:00
self.getLiveTvInfo = function (options) {
2014-01-14 13:03:35 -07:00
var url = self.getUrl("LiveTv/Info", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.getLiveTvGuideInfo = function (options) {
var url = self.getUrl("LiveTv/GuideInfo", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-12-17 13:02:12 -07:00
self.getLiveTvChannel = function (id, userId) {
if (!id) {
throw new Error("null id");
}
2014-01-01 20:53:27 -07:00
var options = {
2013-12-17 13:02:12 -07:00
};
2014-01-01 20:53:27 -07:00
2013-12-17 13:02:12 -07:00
if (userId) {
options.userId = userId;
}
var url = self.getUrl("LiveTv/Channels/" + id, options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.getLiveTvChannels = function (options) {
2013-11-27 12:04:19 -07:00
var url = self.getUrl("LiveTv/Channels", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-25 13:39:23 -07:00
self.getLiveTvPrograms = function (options) {
2014-01-10 06:52:01 -07:00
options = options || {};
2014-01-20 23:10:58 -07:00
2014-01-12 08:58:47 -07:00
if (options.channelIds && options.channelIds.length > 1800) {
2014-01-10 06:52:01 -07:00
return self.ajax({
type: "POST",
url: self.getUrl("LiveTv/Programs"),
data: JSON.stringify(options),
contentType: "application/json",
dataType: "json"
});
2013-11-25 13:39:23 -07:00
2014-01-10 06:52:01 -07:00
} else {
2014-01-20 23:10:58 -07:00
2014-01-10 06:52:01 -07:00
return self.ajax({
type: "GET",
url: self.getUrl("LiveTv/Programs", options),
dataType: "json"
});
}
2013-11-25 13:39:23 -07:00
};
2014-01-12 08:58:47 -07:00
self.getLiveTvRecommendedPrograms = function (options) {
options = options || {};
return self.ajax({
type: "GET",
url: self.getUrl("LiveTv/Programs/Recommended", options),
dataType: "json"
});
};
self.getLiveTvRecordings = function (options) {
2013-11-27 12:04:19 -07:00
var url = self.getUrl("LiveTv/Recordings", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-12-28 14:37:01 -07:00
self.getLiveTvRecordingGroups = function (options) {
var url = self.getUrl("LiveTv/Recordings/Groups", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-01-01 20:53:27 -07:00
self.getLiveTvRecordingGroup = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/Recordings/Groups/" + id);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-12-17 13:02:12 -07:00
self.getLiveTvRecording = function (id, userId) {
2013-11-27 12:04:19 -07:00
if (!id) {
throw new Error("null id");
}
2013-12-17 13:02:12 -07:00
var options = {
};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("LiveTv/Recordings/" + id, options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.getLiveTvProgram = function (id, userId) {
if (!id) {
throw new Error("null id");
}
var options = {
};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("LiveTv/Programs/" + id, options);
2013-11-27 12:04:19 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.deleteLiveTvRecording = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/Recordings/" + id);
return self.ajax({
type: "DELETE",
url: url
});
};
self.cancelLiveTvTimer = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/Timers/" + id);
return self.ajax({
type: "DELETE",
url: url
});
};
self.getLiveTvTimers = function (options) {
var url = self.getUrl("LiveTv/Timers", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.getLiveTvTimer = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/Timers/" + id);
return self.ajax({
type: "GET",
url: url,
2013-12-17 13:02:12 -07:00
dataType: "json"
});
};
2013-12-17 22:44:46 -07:00
self.getNewLiveTvTimerDefaults = function (options) {
2013-12-17 13:02:12 -07:00
2013-12-17 22:44:46 -07:00
options = options || {};
2014-01-01 20:53:27 -07:00
2013-12-17 22:44:46 -07:00
var url = self.getUrl("LiveTv/Timers/Defaults", options);
2013-12-17 13:02:12 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-12-14 18:17:57 -07:00
self.createLiveTvTimer = function (item) {
2013-12-14 18:17:57 -07:00
if (!item) {
throw new Error("null item");
}
2013-12-14 18:17:57 -07:00
var url = self.getUrl("LiveTv/Timers");
return self.ajax({
type: "POST",
2013-12-14 18:17:57 -07:00
url: url,
data: JSON.stringify(item),
contentType: "application/json"
});
};
self.updateLiveTvTimer = function (item) {
if (!item) {
throw new Error("null item");
}
var url = self.getUrl("LiveTv/Timers/" + item.Id);
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(item),
contentType: "application/json"
});
};
2014-01-23 15:15:15 -07:00
self.resetLiveTvTuner = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/Tuners/" + id + "/Reset");
return self.ajax({
type: "POST",
url: url
});
};
2013-12-14 18:17:57 -07:00
self.getLiveTvSeriesTimers = function (options) {
var url = self.getUrl("LiveTv/SeriesTimers", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-01-20 23:10:58 -07:00
self.getFileOrganizationResults = function (options) {
var url = self.getUrl("Library/FileOrganization", options || {});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.deleteOriginalFileFromOrganizationResult = function (id) {
var url = self.getUrl("Library/FileOrganizations/" + id + "/File");
return self.ajax({
type: "DELETE",
url: url
});
};
2014-01-22 10:05:06 -07:00
self.clearOrganizationLog = function () {
var url = self.getUrl("Library/FileOrganizations");
return self.ajax({
type: "DELETE",
url: url
});
};
2014-01-20 23:10:58 -07:00
self.performOrganization = function (id) {
var url = self.getUrl("Library/FileOrganizations/" + id + "/Organize");
return self.ajax({
type: "POST",
url: url
});
};
2014-01-22 10:05:06 -07:00
self.performEpisodeOrganization = function (id, options) {
var url = self.getUrl("Library/FileOrganizations/" + id + "/Episode/Organize", options || {});
return self.ajax({
type: "POST",
url: url
});
};
2013-12-14 18:17:57 -07:00
self.getLiveTvSeriesTimer = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/SeriesTimers/" + id);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.cancelLiveTvSeriesTimer = function (id) {
if (!id) {
throw new Error("null id");
}
var url = self.getUrl("LiveTv/SeriesTimers/" + id);
return self.ajax({
type: "DELETE",
url: url
});
};
2013-12-14 18:17:57 -07:00
self.createLiveTvSeriesTimer = function (item) {
if (!item) {
throw new Error("null item");
}
var url = self.getUrl("LiveTv/SeriesTimers");
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(item),
contentType: "application/json"
});
};
self.updateLiveTvSeriesTimer = function (item) {
if (!item) {
throw new Error("null item");
}
var url = self.getUrl("LiveTv/SeriesTimers/" + item.Id);
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(item),
contentType: "application/json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the current server status
*/
2013-11-08 14:21:51 -07:00
self.getSystemInfo = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("System/Info");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
2013-05-15 15:55:24 -07:00
dataType: "json"
});
};
2014-10-25 11:32:58 -07:00
/**
* Gets the current server status
*/
self.getPublicSystemInfo = function () {
var url = self.getUrl("System/Info/Public");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
}, false);
};
2013-11-08 14:21:51 -07:00
self.getInstantMixFromSong = function (itemId, options) {
2013-08-09 08:55:22 -07:00
var url = self.getUrl("Songs/" + itemId + "/InstantMix", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getInstantMixFromAlbum = function (itemId, options) {
2013-08-09 08:55:22 -07:00
var url = self.getUrl("Albums/" + itemId + "/InstantMix", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-08-18 18:42:53 -07:00
self.getInstantMixFromArtist = function (options) {
2013-08-09 08:55:22 -07:00
2014-08-18 18:42:53 -07:00
var url = self.getUrl("Artists/InstantMix", options);
2013-08-09 08:55:22 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-08-18 18:42:53 -07:00
self.getInstantMixFromMusicGenre = function (options) {
2013-08-09 08:55:22 -07:00
2014-08-18 18:42:53 -07:00
var url = self.getUrl("MusicGenres/InstantMix", options);
2013-08-09 08:55:22 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.getEpisodes = function (itemId, options) {
var url = self.getUrl("Shows/" + itemId + "/Episodes", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-08-09 08:55:22 -07:00
2014-05-21 12:33:46 -07:00
self.getDisplayPreferences = function (id, userId, app) {
var url = self.getUrl("DisplayPreferences/" + id, {
userId: userId,
client: app
});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
self.updateDisplayPreferences = function (id, obj, userId, app) {
var url = self.getUrl("DisplayPreferences/" + id, {
userId: userId,
client: app
});
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(obj),
contentType: "application/json"
});
};
2013-11-28 11:27:29 -07:00
self.getSeasons = function (itemId, options) {
var url = self.getUrl("Shows/" + itemId + "/Seasons", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSimilarMovies = function (itemId, options) {
2013-05-15 15:55:24 -07:00
var url = self.getUrl("Movies/" + itemId + "/Similar", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSimilarTrailers = function (itemId, options) {
var url = self.getUrl("Trailers/" + itemId + "/Similar", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSimilarShows = function (itemId, options) {
var url = self.getUrl("Shows/" + itemId + "/Similar", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSimilarAlbums = function (itemId, options) {
var url = self.getUrl("Albums/" + itemId + "/Similar", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSimilarGames = function (itemId, options) {
var url = self.getUrl("Games/" + itemId + "/Similar", options);
2013-05-15 15:55:24 -07:00
return self.ajax({
type: "GET",
url: url,
2013-03-21 13:20:00 -07:00
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets all cultures known to the server
*/
2013-11-08 14:21:51 -07:00
self.getCultures = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Localization/cultures");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets all countries known to the server
*/
2013-11-08 14:21:51 -07:00
self.getCountries = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Localization/countries");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets plugin security info
*/
2013-11-08 14:21:51 -07:00
self.getPluginSecurityInfo = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins/SecurityInfo");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the directory contents of a path on the server
*/
2013-11-08 14:21:51 -07:00
self.getDirectoryContents = function (path, options) {
2013-03-21 13:20:00 -07:00
if (!path) {
throw new Error("null path");
}
2013-03-21 13:20:00 -07:00
options = options || {};
2013-03-21 13:20:00 -07:00
options.path = path;
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Environment/DirectoryContents", options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
/**
* Gets shares from a network device
*/
self.getNetworkShares = function (path) {
if (!path) {
throw new Error("null path");
}
var options = {};
options.path = path;
var url = self.getUrl("Environment/NetworkShares", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
/**
* Gets the parent of a given path
*/
self.getParentPath = function (path) {
if (!path) {
throw new Error("null path");
}
var options = {};
options.path = path;
var url = self.getUrl("Environment/ParentPath", options);
return self.ajax({
type: "GET",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a list of physical drives from the server
*/
2013-11-08 14:21:51 -07:00
self.getDrives = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Environment/Drives");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-09-06 13:25:03 -07:00
/**
* Gets a list of network devices from the server
*/
2013-11-08 14:21:51 -07:00
self.getNetworkDevices = function () {
2013-09-06 13:25:03 -07:00
var url = self.getUrl("Environment/NetworkDevices");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Cancels a package installation
*/
2013-11-08 14:21:51 -07:00
self.cancelPackageInstallation = function (installationId) {
2013-03-21 13:20:00 -07:00
if (!installationId) {
throw new Error("null installationId");
}
2013-09-25 19:15:33 -07:00
var url = self.getUrl("Packages/Installing/" + installationId);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
/**
* Refreshes metadata for an item
*/
self.refreshItem = function (itemId, options) {
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Items/" + itemId + "/Refresh", options || {});
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
* Installs or updates a new plugin
*/
2013-11-08 14:21:51 -07:00
self.installPlugin = function (name, guid, updateClass, version) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2013-03-21 13:20:00 -07:00
if (!updateClass) {
throw new Error("null updateClass");
}
2013-03-21 13:20:00 -07:00
var options = {
updateClass: updateClass,
AssemblyGuid: guid
2013-03-21 13:20:00 -07:00
};
2013-03-21 13:20:00 -07:00
if (version) {
options.version = version;
}
var url = self.getUrl("Packages/Installed/" + name, options);
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
2013-07-16 10:18:32 -07:00
* Instructs the server to perform a restart.
2013-03-21 13:20:00 -07:00
*/
2013-11-08 14:21:51 -07:00
self.restartServer = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("System/Restart");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2013-10-01 08:16:38 -07:00
/**
* Instructs the server to perform a shutdown.
*/
2013-11-08 14:21:51 -07:00
self.shutdownServer = function () {
2013-10-01 08:16:38 -07:00
var url = self.getUrl("System/Shutdown");
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets information about an installable package
*/
2013-11-08 14:21:51 -07:00
self.getPackageInfo = function (name, guid) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
var options = {
AssemblyGuid: guid
};
var url = self.getUrl("Packages/" + name, options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the latest available application update (if any)
*/
2013-11-08 14:21:51 -07:00
self.getAvailableApplicationUpdate = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Packages/Updates", { PackageType: "System" });
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the latest available plugin updates (if any)
*/
2013-11-08 14:21:51 -07:00
self.getAvailablePluginUpdates = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Packages/Updates", { PackageType: "UserInstalled" });
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Gets the virtual folder list
2013-03-21 13:20:00 -07:00
*/
2013-11-08 14:21:51 -07:00
self.getVirtualFolders = function (userId) {
2013-03-21 13:20:00 -07:00
var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
2013-03-21 13:20:00 -07:00
url = self.getUrl(url);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets all the paths of the locations in the physical root.
*/
2013-11-08 14:21:51 -07:00
self.getPhysicalPaths = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Library/PhysicalPaths");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the current server configuration
*/
2013-11-08 14:21:51 -07:00
self.getServerConfiguration = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("System/Configuration");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-07-07 18:41:03 -07:00
2014-06-29 10:35:05 -07:00
self.getNamedConfiguration = function (name) {
var url = self.getUrl("System/Configuration/" + name);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the server's scheduled tasks
*/
self.getScheduledTasks = function (options) {
options = options || {};
var url = self.getUrl("ScheduledTasks", options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Starts a scheduled task
*/
2013-11-08 14:21:51 -07:00
self.startScheduledTask = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("ScheduledTasks/Running/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a scheduled task
*/
2013-11-08 14:21:51 -07:00
self.getScheduledTask = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("ScheduledTasks/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getNextUpEpisodes = function (options) {
2013-05-04 13:02:20 -07:00
var url = self.getUrl("Shows/NextUp", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Stops a scheduled task
*/
2013-11-08 14:21:51 -07:00
self.stopScheduledTask = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("ScheduledTasks/Running/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets the configuration of a plugin
* @param {String} Id
*/
2013-11-08 14:21:51 -07:00
self.getPluginConfiguration = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null Id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins/" + id + "/Configuration");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a list of plugins that are available to be installed
*/
2013-11-08 14:21:51 -07:00
self.getAvailablePlugins = function (options) {
2013-04-03 21:40:28 -07:00
options = $.extend({}, options || {});
options.PackageType = "UserInstalled";
var url = self.getUrl("Packages", options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Uninstalls a plugin
* @param {String} Id
*/
2013-11-08 14:21:51 -07:00
self.uninstallPlugin = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null Id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Removes a virtual folder
2013-03-21 13:20:00 -07:00
* @param {String} name
*/
2014-02-20 22:04:11 -07:00
self.removeVirtualFolder = function (name, refreshLibrary) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2014-02-20 22:04:11 -07:00
var url = "Library/VirtualFolders";
2013-09-05 10:05:39 -07:00
url = self.getUrl(url, {
refreshLibrary: refreshLibrary ? true : false,
name: name
2013-09-05 10:05:39 -07:00
});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Adds a virtual folder
2013-03-21 13:20:00 -07:00
* @param {String} name
*/
2014-02-20 22:04:11 -07:00
self.addVirtualFolder = function (name, type, refreshLibrary) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2013-07-12 12:56:40 -07:00
var options = {};
if (type) {
options.collectionType = type;
}
2013-09-05 10:05:39 -07:00
options.refreshLibrary = refreshLibrary ? true : false;
options.name = name;
2013-09-05 10:05:39 -07:00
2014-02-20 22:04:11 -07:00
var url = "Library/VirtualFolders";
2013-07-12 12:56:40 -07:00
url = self.getUrl(url, options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Renames a virtual folder
2013-03-21 13:20:00 -07:00
* @param {String} name
*/
2014-02-20 22:04:11 -07:00
self.renameVirtualFolder = function (name, newName, refreshLibrary) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2014-02-20 22:04:11 -07:00
var url = "Library/VirtualFolders/Name";
2013-09-05 10:05:39 -07:00
url = self.getUrl(url, {
refreshLibrary: refreshLibrary ? true : false,
newName: newName,
name: name
2013-09-05 10:05:39 -07:00
});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Adds an additional mediaPath to an existing virtual folder
2013-03-21 13:20:00 -07:00
* @param {String} name
*/
2014-02-20 22:04:11 -07:00
self.addMediaPath = function (virtualFolderName, mediaPath, refreshLibrary) {
2013-03-21 13:20:00 -07:00
if (!virtualFolderName) {
throw new Error("null virtualFolderName");
}
2013-03-21 13:20:00 -07:00
if (!mediaPath) {
throw new Error("null mediaPath");
}
2014-02-20 22:04:11 -07:00
var url = "Library/VirtualFolders/Paths";
2013-09-05 10:05:39 -07:00
url = self.getUrl(url, {
refreshLibrary: refreshLibrary ? true : false,
path: mediaPath,
name: virtualFolderName
2013-09-05 10:05:39 -07:00
});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2013-03-21 13:20:00 -07:00
/**
2014-02-20 22:04:11 -07:00
* Removes a media path from a virtual folder
2013-03-21 13:20:00 -07:00
* @param {String} name
*/
2014-02-20 22:04:11 -07:00
self.removeMediaPath = function (virtualFolderName, mediaPath, refreshLibrary) {
2013-03-21 13:20:00 -07:00
if (!virtualFolderName) {
throw new Error("null virtualFolderName");
}
2013-03-21 13:20:00 -07:00
if (!mediaPath) {
throw new Error("null mediaPath");
}
2014-02-20 22:04:11 -07:00
var url = "Library/VirtualFolders/Paths";
2013-09-05 10:05:39 -07:00
url = self.getUrl(url, {
refreshLibrary: refreshLibrary ? true : false,
path: mediaPath,
name: virtualFolderName
2013-09-05 10:05:39 -07:00
});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Deletes a user
* @param {String} id
*/
2013-11-08 14:21:51 -07:00
self.deleteUser = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null id");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Deletes a user image
* @param {String} userId
* @param {String} imageType The type of image to delete, based on the server-side ImageType enum.
*/
2013-11-08 14:21:51 -07:00
self.deleteUserImage = function (userId, imageType, imageIndex) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!imageType) {
throw new Error("null imageType");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
2013-05-04 21:49:49 -07:00
if (imageIndex != null) {
url += "/" + imageIndex;
}
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-04-18 10:10:23 -07:00
url: url
2013-03-21 13:20:00 -07:00
});
};
2014-04-26 20:42:05 -07:00
self.deleteItemImage = function (itemId, imageType, imageIndex) {
2013-05-04 21:49:49 -07:00
if (!imageType) {
throw new Error("null imageType");
}
2014-04-26 20:42:05 -07:00
var url = self.getUrl("Items/" + itemId + "/Images");
2013-08-03 07:38:56 -07:00
url += "/" + imageType;
2013-05-04 21:49:49 -07:00
if (imageIndex != null) {
url += "/" + imageIndex;
}
return self.ajax({
type: "DELETE",
url: url
});
};
2013-11-08 14:21:51 -07:00
self.deleteItem = function (itemId) {
2013-10-18 14:12:05 -07:00
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Items/" + itemId);
return self.ajax({
type: "DELETE",
url: url
});
};
self.stopActiveEncodings = function () {
var url = self.getUrl("Videos/ActiveEncodings", {
deviceId: deviceId
});
return self.ajax({
type: "DELETE",
url: url
});
};
2014-04-13 10:27:13 -07:00
self.reportCapabilities = function (options) {
var url = self.getUrl("Sessions/Capabilities", options);
return self.ajax({
type: "POST",
url: url
});
};
2014-04-26 20:42:05 -07:00
self.updateItemImageIndex = function (itemId, imageType, imageIndex, newIndex) {
2013-05-04 21:49:49 -07:00
if (!imageType) {
throw new Error("null imageType");
}
2013-08-03 07:38:56 -07:00
var options = { newIndex: newIndex };
2014-04-26 20:42:05 -07:00
var url = self.getUrl("Items/" + itemId + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
2013-05-04 21:49:49 -07:00
return self.ajax({
type: "POST",
url: url
});
};
2014-04-26 20:42:05 -07:00
self.getItemImageInfos = function (itemId) {
2013-08-03 07:38:56 -07:00
2014-04-26 20:42:05 -07:00
var url = self.getUrl("Items/" + itemId + "/Images");
2013-05-04 21:49:49 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getCriticReviews = function (itemId, options) {
2013-05-11 23:05:51 -07:00
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Items/" + itemId + "/CriticReviews", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSessions = function (options) {
2013-05-11 23:05:51 -07:00
var url = self.getUrl("Sessions", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Uploads a user image
* @param {String} userId
* @param {String} imageType The type of image to delete, based on the server-side ImageType enum.
* @param {Object} file The file from the input element
*/
2013-11-08 14:21:51 -07:00
self.uploadUserImage = function (userId, imageType, file) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!imageType) {
throw new Error("null imageType");
}
if (!file) {
throw new Error("File must be an image.");
}
if (file.type != "image/png" && file.type != "image/jpeg" && file.type != "image/jpeg") {
2013-03-21 13:20:00 -07:00
throw new Error("File must be an image.");
}
2013-03-21 13:20:00 -07:00
var deferred = $.Deferred();
2013-03-21 13:20:00 -07:00
var reader = new FileReader();
2013-11-08 14:21:51 -07:00
reader.onerror = function () {
2013-03-21 13:20:00 -07:00
deferred.reject();
};
2013-11-08 14:21:51 -07:00
reader.onabort = function () {
2013-03-21 13:20:00 -07:00
deferred.reject();
};
2013-03-21 13:20:00 -07:00
// Closure to capture the file information.
2013-11-08 14:21:51 -07:00
reader.onload = function (e) {
2013-05-16 19:32:23 -07:00
// Split by a comma to remove the url: prefix
var data = e.target.result.split(',')[1];
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
2013-03-21 13:20:00 -07:00
self.ajax({
type: "POST",
url: url,
data: data,
contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
2013-11-08 14:21:51 -07:00
}).done(function (result) {
2013-03-21 13:20:00 -07:00
deferred.resolveWith(null, [result]);
2013-11-08 14:21:51 -07:00
}).fail(function () {
2013-03-21 13:20:00 -07:00
deferred.reject();
});
};
2013-03-21 13:20:00 -07:00
// Read in the image file as a data URL.
2013-05-16 19:32:23 -07:00
reader.readAsDataURL(file);
2013-03-21 13:20:00 -07:00
return deferred.promise();
};
2014-04-26 20:42:05 -07:00
self.uploadItemImage = function (itemId, imageType, file) {
if (!itemId) {
throw new Error("null itemId");
}
if (!imageType) {
throw new Error("null imageType");
}
if (!file) {
throw new Error("File must be an image.");
}
if (file.type != "image/png" && file.type != "image/jpeg" && file.type != "image/jpeg") {
throw new Error("File must be an image.");
}
2014-05-21 12:33:46 -07:00
var url = self.getUrl("Items/" + itemId + "/Images");
2013-08-03 07:38:56 -07:00
url += "/" + imageType;
var deferred = $.Deferred();
var reader = new FileReader();
2013-11-08 14:21:51 -07:00
reader.onerror = function () {
deferred.reject();
};
2013-11-08 14:21:51 -07:00
reader.onabort = function () {
deferred.reject();
};
// Closure to capture the file information.
2013-11-08 14:21:51 -07:00
reader.onload = function (e) {
2013-05-16 19:32:23 -07:00
// Split by a comma to remove the url: prefix
var data = e.target.result.split(',')[1];
self.ajax({
type: "POST",
url: url,
data: data,
contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
2013-11-08 14:21:51 -07:00
}).done(function (result) {
deferred.resolveWith(null, [result]);
2013-11-08 14:21:51 -07:00
}).fail(function () {
deferred.reject();
});
};
// Read in the image file as a data URL.
2013-05-16 19:32:23 -07:00
reader.readAsDataURL(file);
return deferred.promise();
};
2013-03-21 13:20:00 -07:00
/**
* Gets the list of installed plugins on the server
*/
2013-11-08 14:21:51 -07:00
self.getInstalledPlugins = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a user by id
* @param {String} id
*/
2013-11-08 14:21:51 -07:00
self.getUser = function (id) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("Must supply a userId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a studio
*/
2013-11-08 14:21:51 -07:00
self.getStudio = function (name, userId) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2013-04-21 21:38:03 -07:00
var options = {};
if (userId) {
options.userId = userId;
}
2013-04-29 08:06:31 -07:00
var url = self.getUrl("Studios/" + self.encodeName(name), options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a genre
*/
2013-11-08 14:21:51 -07:00
self.getGenre = function (name, userId) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2013-04-21 21:38:03 -07:00
var options = {};
if (userId) {
options.userId = userId;
}
2013-04-29 08:06:31 -07:00
var url = self.getUrl("Genres/" + self.encodeName(name), options);
2013-04-21 21:38:03 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getMusicGenre = function (name, userId) {
2013-06-10 20:31:00 -07:00
if (!name) {
throw new Error("null name");
}
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("MusicGenres/" + self.encodeName(name), options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getGameGenre = function (name, userId) {
2013-07-01 10:17:33 -07:00
if (!name) {
throw new Error("null name");
}
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("GameGenres/" + self.encodeName(name), options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-04-21 21:38:03 -07:00
/**
* Gets an artist
*/
2013-11-08 14:21:51 -07:00
self.getArtist = function (name, userId) {
2013-04-21 21:38:03 -07:00
if (!name) {
throw new Error("null name");
}
var options = {};
if (userId) {
options.userId = userId;
}
2013-04-29 08:06:31 -07:00
var url = self.getUrl("Artists/" + self.encodeName(name), options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets a Person
*/
2013-11-08 14:21:51 -07:00
self.getPerson = function (name, userId) {
2013-03-21 13:20:00 -07:00
if (!name) {
throw new Error("null name");
}
2013-04-21 21:38:03 -07:00
var options = {};
if (userId) {
options.userId = userId;
}
2013-04-29 08:06:31 -07:00
var url = self.getUrl("Persons/" + self.encodeName(name), options);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getPublicUsers = function () {
2013-07-08 10:13:18 -07:00
var url = self.getUrl("users/public");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
2014-10-25 11:32:58 -07:00
}, false);
2013-07-08 10:13:18 -07:00
};
2013-03-21 13:20:00 -07:00
/**
* Gets all users from the server
*/
2013-11-08 14:21:51 -07:00
self.getUsers = function (options) {
2013-07-08 09:13:21 -07:00
var url = self.getUrl("users", options || {});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Gets all available parental ratings from the server
*/
2013-11-08 14:21:51 -07:00
self.getParentalRatings = function () {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Localization/ParentalRatings");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
function normalizeImageOptions(options) {
2014-10-26 17:13:47 -07:00
var ratio = devicePixelRatio || 1;
if (ratio) {
2014-07-07 18:41:03 -07:00
if (options.minScale) {
ratio = Math.max(options.minScale, ratio);
}
2014-05-21 12:33:46 -07:00
2014-07-07 18:41:03 -07:00
if (options.width) {
2014-05-02 07:49:28 -07:00
options.width = Math.round(options.width * ratio);
}
if (options.height) {
2014-05-02 07:49:28 -07:00
options.height = Math.round(options.height * ratio);
}
if (options.maxWidth) {
2014-05-02 07:49:28 -07:00
options.maxWidth = Math.round(options.maxWidth * ratio);
}
if (options.maxHeight) {
2014-05-02 07:49:28 -07:00
options.maxHeight = Math.round(options.maxHeight * ratio);
}
}
2014-07-12 21:55:56 -07:00
options.quality = options.quality || (options.type.toLowerCase() == 'backdrop' ? 80 : 90);
}
2013-03-21 13:20:00 -07:00
/**
* Constructs a url for a user image
* @param {String} userId
* @param {Object} options
* Options supports the following properties:
* width - download the image at a fixed width
* height - download the image at a fixed height
* maxWidth - download the image at a maxWidth
* maxHeight - download the image at a maxHeight
* quality - A scale of 0-100. This should almost always be omitted as the default will suffice.
* For best results do not specify both width and height together, as aspect ratio might be altered.
*/
2013-11-08 14:21:51 -07:00
self.getUserImageUrl = function (userId, options) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
options = options || {
2013-11-08 14:21:51 -07:00
2013-03-21 13:20:00 -07:00
};
2013-03-21 13:20:00 -07:00
var url = "Users/" + userId + "/Images/" + options.type;
2013-03-21 13:20:00 -07:00
if (options.index != null) {
url += "/" + options.index;
}
normalizeImageOptions(options);
2013-03-21 13:20:00 -07:00
// Don't put these on the query string
delete options.type;
delete options.index;
2013-03-21 13:20:00 -07:00
return self.getUrl(url, options);
};
2013-03-21 13:20:00 -07:00
/**
* Constructs a url for an item image
* @param {String} itemId
* @param {Object} options
* Options supports the following properties:
* type - Primary, logo, backdrop, etc. See the server-side enum ImageType
* index - When downloading a backdrop, use this to specify which one (omitting is equivalent to zero)
* width - download the image at a fixed width
* height - download the image at a fixed height
* maxWidth - download the image at a maxWidth
* maxHeight - download the image at a maxHeight
* quality - A scale of 0-100. This should almost always be omitted as the default will suffice.
* For best results do not specify both width and height together, as aspect ratio might be altered.
*/
2013-11-08 14:21:51 -07:00
self.getImageUrl = function (itemId, options) {
2013-03-21 13:20:00 -07:00
if (!itemId) {
throw new Error("itemId cannot be empty");
}
2014-04-11 20:48:57 -07:00
options = options || {};
2013-03-21 13:20:00 -07:00
var url = "Items/" + itemId + "/Images/" + options.type;
if (options.index != null) {
url += "/" + options.index;
}
options.quality = options.quality || (options.type.toLowerCase() == 'backdrop' ? 80 : 90);
2013-03-21 13:20:00 -07:00
// Don't put these on the query string
delete options.type;
delete options.index;
return self.getUrl(url, options);
};
self.getScaledImageUrl = function (itemId, options) {
if (!itemId) {
throw new Error("itemId cannot be empty");
2013-03-21 13:20:00 -07:00
}
options = options || {};
2013-11-08 14:21:51 -07:00
var url = "Items/" + itemId + "/Images/" + options.type;
2013-03-21 13:20:00 -07:00
if (options.index != null) {
url += "/" + options.index;
}
normalizeImageOptions(options);
// Don't put these on the query string
delete options.type;
delete options.index;
2014-07-07 18:41:03 -07:00
delete options.minScale;
return self.getUrl(url, options);
};
2013-11-08 14:21:51 -07:00
self.getThumbImageUrl = function (item, options) {
2013-10-24 10:49:24 -07:00
if (!item) {
throw new Error("null item");
}
options = options || {
2013-11-08 14:21:51 -07:00
2013-10-24 10:49:24 -07:00
};
options.imageType = "thumb";
var itemId = item.ImageTags && item.ImageTags.Thumb ? item.Id : item.ParentThumbItemId;
return itemId ? self.getImageUrl(itemId, options) : null;
};
2013-07-08 09:13:21 -07:00
/**
* Authenticates a user
* @param {String} name
* @param {String} password
*/
2013-11-08 14:21:51 -07:00
self.authenticateUserByName = function (name, password) {
2013-07-08 09:13:21 -07:00
if (!name) {
throw new Error("null name");
}
var url = self.getUrl("Users/authenticatebyname");
2013-07-08 09:13:21 -07:00
var postData = {
2014-11-05 12:28:41 -07:00
password: CryptoJS.SHA1(password || "").toString(),
Username: name
2013-07-08 09:13:21 -07:00
};
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(postData),
dataType: "json",
contentType: "application/json"
2014-10-23 21:54:35 -07:00
2014-10-25 11:32:58 -07:00
}).done(function (result) {
2014-10-23 21:54:35 -07:00
$(self).trigger('authenticated', [result]);
2013-07-08 09:13:21 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates a user's password
* @param {String} userId
* @param {String} currentPassword
* @param {String} newPassword
*/
2013-11-08 14:21:51 -07:00
self.updateUserPassword = function (userId, currentPassword, newPassword) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Password");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
2014-11-05 12:28:41 -07:00
data: {
currentPassword: CryptoJS.SHA1(currentPassword).toString(),
newPassword: CryptoJS.SHA1(newPassword).toString()
}
2013-03-21 13:20:00 -07:00
});
};
2013-03-15 22:52:33 -07:00
2013-03-21 13:20:00 -07:00
/**
* Resets a user's password
* @param {String} userId
*/
2013-11-08 14:21:51 -07:00
self.resetUserPassword = function (userId) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Password");
2013-03-21 13:20:00 -07:00
var postData = {
2013-11-08 14:21:51 -07:00
2013-03-21 13:20:00 -07:00
};
2013-03-21 13:20:00 -07:00
postData.resetPassword = true;
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
data: postData
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates the server's configuration
* @param {Object} configuration
*/
2013-11-08 14:21:51 -07:00
self.updateServerConfiguration = function (configuration) {
2013-03-21 13:20:00 -07:00
if (!configuration) {
throw new Error("null configuration");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("System/Configuration");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
2014-06-29 10:35:05 -07:00
url: url,
data: JSON.stringify(configuration),
contentType: "application/json"
});
};
self.updateNamedConfiguration = function (name, configuration) {
if (!configuration) {
throw new Error("null configuration");
}
var url = self.getUrl("System/Configuration/" + name);
return self.ajax({
type: "POST",
2013-03-21 13:20:00 -07:00
url: url,
data: JSON.stringify(configuration),
contentType: "application/json"
});
};
2013-11-08 14:21:51 -07:00
self.updateItem = function (item) {
2013-05-27 19:36:51 -07:00
if (!item) {
throw new Error("null item");
}
var url = self.getUrl("Items/" + item.Id);
return self.ajax({
2013-06-24 07:53:49 -07:00
type: "POST",
url: url,
data: JSON.stringify(item),
contentType: "application/json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates plugin security info
*/
2013-11-08 14:21:51 -07:00
self.updatePluginSecurityInfo = function (info) {
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins/SecurityInfo");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(info),
contentType: "application/json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Creates a user
* @param {Object} user
*/
2014-10-29 19:06:05 -07:00
self.createUser = function (name) {
2014-10-29 19:06:05 -07:00
var url = self.getUrl("Users/New");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
2014-10-29 19:06:05 -07:00
data: {
Name: name
},
dataType: "json"
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates a user
* @param {Object} user
*/
2013-11-08 14:21:51 -07:00
self.updateUser = function (user) {
2013-03-21 13:20:00 -07:00
if (!user) {
throw new Error("null user");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + user.Id);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(user),
contentType: "application/json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates the Triggers for a ScheduledTask
* @param {String} id
* @param {Object} triggers
*/
2013-11-08 14:21:51 -07:00
self.updateScheduledTaskTriggers = function (id, triggers) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null id");
}
2013-03-21 13:20:00 -07:00
if (!triggers) {
throw new Error("null triggers");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("ScheduledTasks/" + id + "/Triggers");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(triggers),
contentType: "application/json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates a plugin's configuration
* @param {String} Id
* @param {Object} configuration
*/
2013-11-08 14:21:51 -07:00
self.updatePluginConfiguration = function (id, configuration) {
2013-03-21 13:20:00 -07:00
if (!id) {
throw new Error("null Id");
}
2013-03-21 13:20:00 -07:00
if (!configuration) {
throw new Error("null configuration");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Plugins/" + id + "/Configuration");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(configuration),
contentType: "application/json"
});
};
2013-11-08 14:21:51 -07:00
self.getAncestorItems = function (itemId, userId) {
2013-08-03 07:38:56 -07:00
if (!itemId) {
throw new Error("null itemId");
}
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("Items/" + itemId + "/Ancestors", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
2013-04-11 12:36:50 -07:00
* Gets items based on a query, typically for children of a folder
2013-03-21 13:20:00 -07:00
* @param {String} userId
* @param {Object} options
* Options accepts the following properties:
* itemId - Localize the search to a specific folder (root if omitted)
* startIndex - Use for paging
* limit - Use to limit results to a certain number of items
* filter - Specify one or more ItemFilters, comma delimeted (see server-side enum)
* sortBy - Specify an ItemSortBy (comma-delimeted list see server-side enum)
* sortOrder - ascending/descending
* fields - additional fields to include aside from basic info. This is a comma delimited list. See server-side enum ItemFields.
* index - the name of the dynamic, localized index function
* dynamicSortBy - the name of the dynamic localized sort function
* recursive - Whether or not the query should be recursive
* searchTerm - search term to use as a filter
*/
2013-11-08 14:21:51 -07:00
self.getItems = function (userId, options) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2014-01-22 10:05:06 -07:00
var url;
if ((typeof userId).toString().toLowerCase() == 'string') {
url = self.getUrl("Users/" + userId + "/Items", options);
} else {
options = userId;
url = self.getUrl("Items", options || {});
}
2013-03-21 13:20:00 -07:00
2013-03-25 21:33:47 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-06-04 19:32:40 -07:00
self.getUserViews = function (userId, options) {
if (!userId) {
throw new Error("null userId");
}
options = options || {};
var url = self.getUrl("Users/" + userId + "/Views", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-04-21 21:38:03 -07:00
/**
Gets artists from an item
*/
2013-11-08 14:21:51 -07:00
self.getArtists = function (userId, options) {
2013-04-21 21:38:03 -07:00
if (!userId) {
throw new Error("null userId");
}
options = options || {};
options.userId = userId;
var url = self.getUrl("Artists", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-06-22 09:49:39 -07:00
/**
Gets artists from an item
*/
self.getAlbumArtists = function (userId, options) {
if (!userId) {
throw new Error("null userId");
}
options = options || {};
options.userId = userId;
2014-06-23 09:05:19 -07:00
var url = self.getUrl("Artists/AlbumArtists", options);
2014-06-22 09:49:39 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-04-11 12:36:50 -07:00
/**
Gets genres from an item
*/
2013-11-08 14:21:51 -07:00
self.getGenres = function (userId, options) {
2013-04-11 12:36:50 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-04-21 21:38:03 -07:00
options = options || {};
options.userId = userId;
2013-04-11 12:36:50 -07:00
2013-04-21 21:38:03 -07:00
var url = self.getUrl("Genres", options);
2013-04-11 12:36:50 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getMusicGenres = function (userId, options) {
2013-06-10 20:31:00 -07:00
if (!userId) {
throw new Error("null userId");
}
options = options || {};
options.userId = userId;
var url = self.getUrl("MusicGenres", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getGameGenres = function (userId, options) {
2013-07-01 10:17:33 -07:00
if (!userId) {
throw new Error("null userId");
}
options = options || {};
options.userId = userId;
var url = self.getUrl("GameGenres", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-04-11 20:50:47 -07:00
/**
Gets people from an item
*/
2013-11-08 14:21:51 -07:00
self.getPeople = function (userId, options) {
2013-04-11 20:50:47 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-04-21 21:38:03 -07:00
options = options || {};
options.userId = userId;
2013-04-11 20:50:47 -07:00
2013-04-21 21:38:03 -07:00
var url = self.getUrl("Persons", options);
2013-04-11 20:50:47 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-04-11 12:36:50 -07:00
/**
Gets studios from an item
*/
2013-11-08 14:21:51 -07:00
self.getStudios = function (userId, options) {
2013-04-11 12:36:50 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-04-21 21:38:03 -07:00
options = options || {};
options.userId = userId;
2013-04-11 12:36:50 -07:00
2013-04-21 21:38:03 -07:00
var url = self.getUrl("Studios", options);
2013-04-11 12:36:50 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-25 21:33:47 -07:00
/**
* Gets local trailers for an item
*/
2013-11-08 14:21:51 -07:00
self.getLocalTrailers = function (userId, itemId) {
2013-03-25 21:33:47 -07:00
if (!userId) {
throw new Error("null userId");
}
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/LocalTrailers");
return self.ajax({
type: "GET",
url: url,
2013-04-24 09:03:10 -07:00
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getAdditionalVideoParts = function (userId, itemId) {
if (!itemId) {
throw new Error("null itemId");
}
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("Videos/" + itemId + "/AdditionalParts", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2014-04-14 20:54:52 -07:00
self.getThemeMedia = function (userId, itemId, inherit) {
2013-04-24 09:03:10 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2013-05-15 09:56:38 -07:00
var options = {};
if (userId) {
options.userId = userId;
}
2014-04-14 20:54:52 -07:00
options.InheritFromParent = inherit || false;
2013-05-15 09:56:38 -07:00
2014-04-14 20:54:52 -07:00
var url = self.getUrl("Items/" + itemId + "/ThemeMedia", options);
2013-04-28 10:21:56 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getSearchHints = function (options) {
2013-04-28 10:21:56 -07:00
var url = self.getUrl("Search/Hints", options);
return self.ajax({
type: "GET",
url: url,
2013-03-25 21:33:47 -07:00
dataType: "json"
});
};
/**
* Gets special features for an item
*/
2013-11-08 14:21:51 -07:00
self.getSpecialFeatures = function (userId, itemId) {
2013-03-25 21:33:47 -07:00
if (!userId) {
throw new Error("null userId");
}
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/SpecialFeatures");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.getDateParamValue = function (date) {
2013-11-08 13:53:09 -07:00
function formatDigit(i) {
return i < 10 ? "0" + i : i;
}
var d = date;
return "" + d.getFullYear() + formatDigit(d.getMonth() + 1) + formatDigit(d.getDate()) + formatDigit(d.getHours()) + formatDigit(d.getMinutes()) + formatDigit(d.getSeconds());
};
2013-11-08 14:21:51 -07:00
self.markPlayed = function (userId, itemId, date) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!itemId) {
throw new Error("null itemId");
}
var options = {};
if (date) {
options.DatePlayed = self.getDateParamValue(date);
}
var url = self.getUrl("Users/" + userId + "/PlayedItems/" + itemId, options);
return self.ajax({
type: "POST",
url: url,
dataType: "json"
});
};
2013-11-08 14:21:51 -07:00
self.markUnplayed = function (userId, itemId) {
if (!userId) {
throw new Error("null userId");
}
if (!itemId) {
throw new Error("null itemId");
}
var url = self.getUrl("Users/" + userId + "/PlayedItems/" + itemId);
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-08-22 18:36:34 -07:00
url: url,
dataType: "json"
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates a user's favorite status for an item.
2013-03-21 13:20:00 -07:00
* @param {String} userId
* @param {String} itemId
* @param {Boolean} isFavorite
*/
2013-11-08 14:21:51 -07:00
self.updateFavoriteStatus = function (userId, itemId, isFavorite) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2013-03-29 10:25:12 -07:00
var url = self.getUrl("Users/" + userId + "/FavoriteItems/" + itemId);
2013-03-21 13:20:00 -07:00
var method = isFavorite ? "POST" : "DELETE";
2013-03-21 13:20:00 -07:00
return self.ajax({
type: method,
2013-08-22 18:36:34 -07:00
url: url,
dataType: "json"
2013-03-21 13:20:00 -07:00
});
};
2013-03-21 13:20:00 -07:00
/**
* Updates a user's personal rating for an item
* @param {String} userId
* @param {String} itemId
* @param {Boolean} likes
*/
2013-11-08 14:21:51 -07:00
self.updateUserItemRating = function (userId, itemId, likes) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating", {
likes: likes
});
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "POST",
2013-08-22 18:36:34 -07:00
url: url,
dataType: "json"
2013-03-21 13:20:00 -07:00
});
};
2013-11-08 14:21:51 -07:00
self.getItemCounts = function (userId) {
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("Items/Counts", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2013-03-21 13:20:00 -07:00
/**
* Clears a user's personal rating for an item
* @param {String} userId
* @param {String} itemId
*/
2013-11-08 14:21:51 -07:00
self.clearUserItemRating = function (userId, itemId) {
2013-03-21 13:20:00 -07:00
if (!userId) {
throw new Error("null userId");
}
2013-03-21 13:20:00 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating");
2013-03-21 13:20:00 -07:00
return self.ajax({
type: "DELETE",
2013-08-22 18:36:34 -07:00
url: url,
dataType: "json"
2013-03-21 13:20:00 -07:00
});
};
2013-03-24 20:23:42 -07:00
2013-03-25 10:18:44 -07:00
/**
* Reports the user has started playing something
* @param {String} userId
* @param {String} itemId
*/
2014-04-15 19:17:48 -07:00
self.reportPlaybackStart = function (options) {
2013-03-25 10:18:44 -07:00
2014-04-15 19:17:48 -07:00
if (!options) {
throw new Error("null options");
2013-03-25 10:18:44 -07:00
}
2013-05-10 05:18:07 -07:00
if (self.isWebSocketOpen()) {
var deferred = $.Deferred();
2014-04-15 19:17:48 -07:00
var msg = JSON.stringify(options);
2014-03-23 13:07:02 -07:00
2014-04-15 19:17:48 -07:00
self.sendWebSocketMessage("ReportPlaybackStart", msg);
2013-05-10 05:18:07 -07:00
deferred.resolveWith(null, []);
return deferred.promise();
}
2014-04-15 19:17:48 -07:00
var url = self.getUrl("Sessions/Playing");
2013-03-25 10:18:44 -07:00
return self.ajax({
type: "POST",
2014-04-15 19:17:48 -07:00
data: JSON.stringify(options),
contentType: "application/json",
2013-04-18 10:10:23 -07:00
url: url
2013-03-25 10:18:44 -07:00
});
};
2013-03-24 20:23:42 -07:00
/**
* Reports progress viewing an item
* @param {String} userId
* @param {String} itemId
*/
2014-04-15 19:17:48 -07:00
self.reportPlaybackProgress = function (options) {
2013-03-24 20:23:42 -07:00
2014-04-15 19:17:48 -07:00
if (!options) {
throw new Error("null options");
2013-03-24 20:23:42 -07:00
}
2013-05-10 05:18:07 -07:00
if (self.isWebSocketOpen()) {
var deferred = $.Deferred();
2014-04-15 19:17:48 -07:00
var msg = JSON.stringify(options);
2014-04-15 19:17:48 -07:00
self.sendWebSocketMessage("ReportPlaybackProgress", msg);
2013-05-10 05:18:07 -07:00
deferred.resolveWith(null, []);
return deferred.promise();
}
2014-04-15 19:17:48 -07:00
var url = self.getUrl("Sessions/Playing/Progress");
2013-03-24 20:23:42 -07:00
return self.ajax({
type: "POST",
2014-04-15 19:17:48 -07:00
data: JSON.stringify(options),
contentType: "application/json",
2013-04-18 10:10:23 -07:00
url: url
2013-03-24 20:23:42 -07:00
});
};
/**
* Reports a user has stopped playing an item
* @param {String} userId
* @param {String} itemId
*/
2014-04-15 19:17:48 -07:00
self.reportPlaybackStopped = function (options) {
2013-03-24 20:23:42 -07:00
2014-04-15 19:17:48 -07:00
if (!options) {
throw new Error("null options");
2013-03-24 20:23:42 -07:00
}
2013-09-09 11:23:55 -07:00
if (self.isWebSocketOpen()) {
2013-05-10 05:18:07 -07:00
2013-09-09 11:23:55 -07:00
var deferred = $.Deferred();
2013-05-10 05:18:07 -07:00
2014-04-15 19:17:48 -07:00
var msg = JSON.stringify(options);
2014-04-15 19:17:48 -07:00
self.sendWebSocketMessage("ReportPlaybackStopped", msg);
2013-05-10 05:18:07 -07:00
2013-09-09 11:23:55 -07:00
deferred.resolveWith(null, []);
return deferred.promise();
}
2013-05-10 05:18:07 -07:00
2014-04-15 19:17:48 -07:00
var url = self.getUrl("Sessions/Playing/Stopped");
2013-03-24 20:23:42 -07:00
return self.ajax({
2014-04-15 19:17:48 -07:00
type: "POST",
data: JSON.stringify(options),
contentType: "application/json",
2013-04-18 10:10:23 -07:00
url: url
2013-03-24 20:23:42 -07:00
});
};
2013-05-28 21:00:24 -07:00
2013-11-08 14:21:51 -07:00
self.sendPlayCommand = function (sessionId, options) {
2013-05-28 21:00:24 -07:00
if (!sessionId) {
throw new Error("null sessionId");
}
if (!options) {
throw new Error("null options");
}
var url = self.getUrl("Sessions/" + sessionId + "/Playing", options);
return self.ajax({
type: "POST",
2013-07-11 13:43:37 -07:00
url: url
});
};
2014-04-27 18:57:29 -07:00
self.sendCommand = function (sessionId, command) {
2013-08-27 21:16:21 -07:00
if (!sessionId) {
throw new Error("null sessionId");
}
if (!command) {
throw new Error("null command");
}
var url = self.getUrl("Sessions/" + sessionId + "/Command");
2013-08-27 21:16:21 -07:00
var ajaxOptions = {
2013-08-27 21:16:21 -07:00
type: "POST",
url: url
};
2014-04-27 18:57:29 -07:00
ajaxOptions.data = JSON.stringify(command);
ajaxOptions.contentType = "application/json";
return self.ajax(ajaxOptions);
2013-08-27 21:16:21 -07:00
};
2013-11-08 14:21:51 -07:00
self.sendMessageCommand = function (sessionId, options) {
2013-08-27 21:16:21 -07:00
if (!sessionId) {
throw new Error("null sessionId");
}
if (!options) {
throw new Error("null options");
}
var url = self.getUrl("Sessions/" + sessionId + "/Message", options);
return self.ajax({
type: "POST",
url: url
});
};
2013-11-08 14:21:51 -07:00
self.sendPlayStateCommand = function (sessionId, command, options) {
2013-07-11 13:43:37 -07:00
if (!sessionId) {
throw new Error("null sessionId");
}
if (!command) {
throw new Error("null command");
}
var url = self.getUrl("Sessions/" + sessionId + "/Playing/" + command, options || {});
return self.ajax({
type: "POST",
2013-05-28 21:00:24 -07:00
url: url
});
};
2013-11-07 10:27:05 -07:00
2013-11-08 14:21:51 -07:00
self.createPackageReview = function (review) {
2013-11-07 10:27:05 -07:00
2014-03-23 13:07:02 -07:00
var url = self.getUrl("Packages/Reviews/" + review.id, review);
2013-11-07 10:27:05 -07:00
return self.ajax({
type: "POST",
url: url,
});
};
2013-11-08 14:21:51 -07:00
2014-08-31 12:15:33 -07:00
self.getPackageReviews = function (packageId, minRating, maxRating, limit) {
2013-11-08 13:53:09 -07:00
if (!packageId) {
throw new Error("null packageId");
}
var options = {};
if (minRating) {
options.MinRating = minRating;
}
if (maxRating) {
options.MaxRating = maxRating;
}
if (limit) {
options.Limit = limit;
}
var url = self.getUrl("Packages/" + packageId + "/Reviews", options);
2013-11-08 13:53:09 -07:00
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
};
2014-10-27 14:45:50 -07:00
})(window, jQuery, window.JSON, window.WebSocket, window.setTimeout, window.devicePixelRatio, window.FileReader);