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

3661 lines
94 KiB
JavaScript
Raw Normal View History

2015-01-16 13:54:37 -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
2015-05-20 09:28:55 -07:00
* @param {String} clientName s
* @param {String} applicationVersion
*/
2015-02-19 10:46:18 -07:00
globalScope.MediaBrowser.ApiClient = function (logger, serverAddress, clientName, applicationVersion, deviceName, deviceId) {
2014-01-18 12:25:20 -07:00
if (!serverAddress) {
throw new Error("Must supply a serverAddress");
}
2015-01-16 13:54:37 -07:00
logger.log('ApiClient serverAddress: ' + serverAddress);
logger.log('ApiClient clientName: ' + clientName);
logger.log('ApiClient applicationVersion: ' + applicationVersion);
logger.log('ApiClient deviceName: ' + deviceName);
logger.log('ApiClient deviceId: ' + deviceId);
2014-10-21 21:42:26 -07:00
2013-03-21 13:20:00 -07:00
var self = this;
var webSocket;
2015-05-20 09:28:55 -07:00
var serverInfo = {};
2015-05-16 12:09:02 -07:00
self.enableAppStorePolicy = false;
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) {
2015-05-20 09:28:55 -07:00
if (val.toLowerCase().indexOf('http') != 0) {
throw new Error('Invalid url: ' + val);
}
2014-10-29 15:01:02 -07:00
var changed = val != serverAddress;
serverAddress = val;
if (changed) {
Events.trigger(this, 'serveraddresschanged');
2014-10-29 15:01:02 -07:00
}
}
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-10-25 11:32:58 -07:00
self.serverInfo = function (info) {
serverInfo = info || serverInfo;
return serverInfo;
};
2015-05-07 15:27:01 -07:00
var currentUserPromise;
2015-04-27 11:52:54 -07:00
/**
* Gets or sets the current user id.
*/
self.getCurrentUser = function () {
2015-05-07 15:27:01 -07:00
var promise = currentUserPromise;
2015-04-27 11:52:54 -07:00
2015-05-07 15:27:01 -07:00
if (promise == null) {
2015-04-27 11:52:54 -07:00
2015-05-07 15:27:01 -07:00
promise = self.getUser(self.getCurrentUserId()).fail(function () {
currentUserPromise = null;
});
2015-04-27 11:52:54 -07:00
2015-05-07 15:27:01 -07:00
currentUserPromise = promise;
}
return promise;
2015-04-27 11:52:54 -07:00
};
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 () {
2015-05-20 09:28:55 -07:00
return serverInfo.UserId;
2014-07-07 18:41:03 -07:00
};
2014-09-15 20:33:30 -07:00
self.accessToken = function () {
2015-05-20 09:28:55 -07:00
return serverInfo.AccessToken;
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;
};
2015-07-09 20:00:03 -07:00
self.appName = function () {
return clientName;
};
self.appVersion = function () {
return applicationVersion;
};
2014-10-23 21:54:35 -07:00
self.clearAuthenticationInfo = function () {
2015-05-20 09:28:55 -07:00
self.setAuthenticationInfo(null, null);
2014-10-23 21:54:35 -07:00
};
self.setAuthenticationInfo = function (accessKey, userId) {
2015-05-20 09:28:55 -07:00
currentUserPromise = null;
serverInfo.AccessToken = accessKey;
serverInfo.UserId = userId;
2014-10-23 21:54:35 -07:00
};
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('-');
2015-06-30 10:21:20 -07:00
var val = HttpClient.param({ name: name });
2013-04-29 08:06:31 -07:00
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) {
Events.trigger(self, 'requestfail', [
2014-10-28 16:17:55 -07:00
{
url: this.url,
2015-05-12 21:55:19 -07:00
type: this.type,
2014-10-28 16:17:55 -07:00
status: e.status,
errorCode: e.getResponseHeader("X-Application-Error-Code")
}]);
}
function onRetryRequestFail(request) {
Events.trigger(self, 'requestfail', [
2014-10-28 16:17:55 -07:00
{
url: request.url
}]);
}
2015-07-09 20:00:03 -07:00
self.setRequestHeaders = function (headers) {
2015-07-08 17:20:01 -07:00
var currentServerInfo = self.serverInfo();
if (clientName) {
var auth = 'MediaBrowser Client="' + clientName + '", Device="' + deviceName + '", DeviceId="' + deviceId + '", Version="' + applicationVersion + '"';
var userId = currentServerInfo.UserId;
if (userId) {
auth += ', UserId="' + userId + '"';
}
2015-07-23 09:32:34 -07:00
headers["X-Emby-Authorization"] = auth;
2015-07-08 17:20:01 -07:00
}
var accessToken = currentServerInfo.AccessToken;
if (accessToken) {
2015-10-05 19:50:20 -07:00
headers['X-Emby-Token'] = accessToken;
2015-07-08 17:20:01 -07:00
}
};
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) {
2015-05-27 22:51:48 -07:00
2015-07-09 20:00:03 -07:00
request.headers = request.headers || {};
2015-07-08 17:20:01 -07:00
self.setRequestHeaders(request.headers);
2014-07-07 18:41:03 -07:00
}
2015-06-03 21:50:10 -07:00
if (self.enableAutomaticNetworking === false || request.type != "GET") {
2015-01-16 13:54:37 -07:00
logger.log('Requesting url without automatic networking: ' + request.url);
2015-06-30 10:21:20 -07:00
return HttpClient.send(request).fail(onRequestFail);
2014-10-27 14:45:50 -07:00
}
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.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) {
2015-05-27 22:51:48 -07:00
var currentServerInfo = self.serverInfo();
2015-06-01 07:49:23 -07:00
var newConnectionMode = connectionMode;
newConnectionMode--;
if (newConnectionMode < 0) {
newConnectionMode = MediaBrowser.ConnectionMode.Manual;
}
2015-05-27 22:51:48 -07:00
2015-06-01 07:49:23 -07:00
if (MediaBrowser.ServerInfo.getServerAddress(currentServerInfo, newConnectionMode)) {
return newConnectionMode;
2014-10-27 14:45:50 -07:00
}
2015-06-01 07:49:23 -07:00
newConnectionMode--;
if (newConnectionMode < 0) {
newConnectionMode = MediaBrowser.ConnectionMode.Manual;
2014-10-28 16:17:55 -07:00
}
2015-06-01 07:49:23 -07:00
if (MediaBrowser.ServerInfo.getServerAddress(currentServerInfo, newConnectionMode)) {
return newConnectionMode;
2014-10-28 16:17:55 -07:00
}
2015-06-01 07:49:23 -07:00
return connectionMode;
2014-10-28 16:17:55 -07:00
}
function tryReconnectInternal(deferred, connectionMode, currentRetryCount) {
2014-10-27 14:45:50 -07:00
2015-05-31 11:22:51 -07:00
connectionMode = switchConnectionMode(connectionMode);
2015-05-27 22:51:48 -07:00
var url = MediaBrowser.ServerInfo.getServerAddress(self.serverInfo(), connectionMode);
2014-10-27 14:45:50 -07:00
2015-01-16 13:54:37 -07:00
logger.log("Attempting reconnection to " + url);
2014-10-29 15:01:02 -07:00
2015-07-06 19:25:23 -07:00
var timeout = connectionMode == MediaBrowser.ConnectionMode.Local ? 7000 : 15000;
2015-06-01 07:49:23 -07:00
2015-06-30 10:21:20 -07:00
HttpClient.send({
2014-10-27 14:45:50 -07:00
type: "GET",
2015-01-17 12:30:23 -07:00
url: url + "/system/info/public",
2014-10-27 14:45:50 -07:00
dataType: "json",
2015-06-01 07:49:23 -07:00
timeout: timeout
2014-10-27 14:45:50 -07:00
}).done(function () {
2015-07-03 04:51:45 -07:00
logger.log("Reconnect succeeded to " + url);
2014-10-29 15:01:02 -07:00
2015-06-03 21:50:10 -07:00
self.serverInfo().LastConnectionMode = connectionMode;
2014-10-28 16:17:55 -07:00
self.serverAddress(url);
2014-10-27 14:45:50 -07:00
deferred.resolve();
}).fail(function () {
2015-01-16 13:54:37 -07:00
logger.log("Reconnect attempt failed to " + url);
2014-10-29 15:01:02 -07:00
2015-09-11 09:26:06 -07:00
if (currentRetryCount < 5) {
2014-10-27 14:45:50 -07:00
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() {
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.Deferred();
2014-10-28 16:17:55 -07:00
setTimeout(function () {
2015-06-03 21:50:10 -07:00
tryReconnectInternal(deferred, self.serverInfo().LastConnectionMode, 0);
2014-10-28 16:17:55 -07:00
}, 500);
2014-10-27 14:45:50 -07:00
return deferred.promise();
}
2015-07-05 11:34:52 -07:00
self.ajaxWithFailover = function (request, deferred, enableReconnection) {
2014-10-27 14:45:50 -07:00
2015-01-16 13:54:37 -07:00
logger.log("Requesting " + request.url);
2014-10-29 15:01:02 -07:00
2015-07-03 04:51:45 -07:00
request.timeout = 30000;
2014-10-29 15:01:02 -07:00
2015-06-30 10:21:20 -07:00
HttpClient.send(request).done(function (response) {
2014-10-27 14:45:50 -07:00
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
2015-01-16 13:54:37 -07:00
logger.log("Request failed with textStatus " + textStatus + " to " + request.url);
2014-10-29 15:01:02 -07:00
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) {
2015-07-01 08:47:41 -07:00
logger.log("Attempting reconnection");
2015-07-05 11:34:52 -07:00
var previousServerAddress = self.serverAddress();
2014-10-27 14:45:50 -07:00
tryReconnect().done(function () {
2015-01-16 13:54:37 -07:00
logger.log("Reconnect succeesed");
2015-07-05 11:34:52 -07:00
request.url = request.url.replace(previousServerAddress, self.serverAddress());
2015-07-03 04:51:45 -07:00
2015-07-05 11:34:52 -07:00
self.ajaxWithFailover(request, deferred, false);
2014-10-27 14:45:50 -07:00
}).fail(function () {
2015-01-16 13:54:37 -07:00
logger.log("Reconnect failed");
2014-10-28 16:17:55 -07:00
onRetryRequestFail(request);
2014-10-27 14:45:50 -07:00
deferred.reject();
});
} else {
2015-07-01 08:47:41 -07:00
logger.log("Reporting request failure");
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");
}
var url = serverAddress;
2015-05-20 09:28:55 -07:00
if (!url) {
throw new Error("serverAddress is yet not set");
}
2015-10-05 19:50:20 -07:00
if (url.toLowerCase().indexOf('/emby') == -1) {
url += '/emby';
}
if (name.charAt(0) != '/') {
url += '/';
}
url += name;
2013-03-15 22:52:33 -07:00
2013-03-21 13:20:00 -07:00
if (params) {
params = HttpClient.param(params);
if (params) {
url += "?" + params;
}
2013-03-21 13:20:00 -07:00
}
2013-03-21 13:20:00 -07:00
return url;
};
2015-06-03 21:50:10 -07:00
self.updateServerInfo = function (server, connectionMode) {
2014-10-23 21:54:35 -07:00
2015-05-20 09:28:55 -07:00
if (server == null) {
throw new Error('server cannot be null');
}
if (connectionMode == null) {
throw new Error('connectionMode cannot be null');
}
2015-06-04 13:27:46 -07:00
logger.log('Begin updateServerInfo. connectionMode: ' + connectionMode);
2014-10-27 14:45:50 -07:00
self.serverInfo(server);
2014-10-28 16:17:55 -07:00
2015-06-04 13:27:46 -07:00
var serverUrl = MediaBrowser.ServerInfo.getServerAddress(server, connectionMode);
if (!serverUrl) {
throw new Error('serverUrl cannot be null. serverInfo: ' + JSON.stringify(server));
}
2015-05-19 12:15:40 -07:00
logger.log('Setting server address to ' + serverUrl);
self.serverAddress(serverUrl);
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 () {
2015-09-10 11:28:22 -07:00
var accessToken = self.accessToken();
2015-05-20 09:28:55 -07:00
2015-03-08 12:48:30 -07:00
if (!accessToken) {
throw new Error("Cannot open web socket without access token.");
}
2015-10-05 19:50:20 -07:00
var url = self.getUrl("socket").replace("/socket", "").replace('http', 'ws');
2015-03-08 12:48:30 -07:00
url += "?api_key=" + accessToken;
2015-03-12 18:55:22 -07:00
url += "&deviceId=" + deviceId;
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);
2015-05-07 15:27:01 -07:00
onWebSocketMessage(msg);
};
2013-11-08 14:21:51 -07:00
webSocket.onopen = function () {
2014-05-16 21:24:10 -07:00
2015-01-16 13:54:37 -07:00
logger.log('web socket connection opened');
2013-11-08 14:21:51 -07:00
setTimeout(function () {
Events.trigger(self, 'websocketopen');
2015-03-08 12:48:30 -07:00
}, 0);
};
2013-11-08 14:21:51 -07:00
webSocket.onerror = function () {
setTimeout(function () {
Events.trigger(self, 'websocketerror');
}, 0);
};
2013-11-08 14:21:51 -07:00
webSocket.onclose = function () {
setTimeout(function () {
Events.trigger(self, '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();
}
};
2015-05-07 15:27:01 -07:00
function onWebSocketMessage(msg) {
2015-05-20 09:28:55 -07:00
2015-05-07 15:27:01 -07:00
if (msg.MessageType === "UserDeleted") {
currentUserPromise = null;
}
else if (msg.MessageType === "UserUpdated" || msg.MessageType === "UserConfigurationUpdated") {
var user = msg.Data;
if (user.Id == self.getCurrentUserId()) {
currentUserPromise = null;
}
}
Events.trigger(self, 'websocketmessage', [msg]);
}
2013-11-08 14:21:51 -07:00
self.sendWebSocketMessage = function (name, data) {
2015-01-16 13:54:37 -07:00
logger.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"
});
};
2015-07-08 09:10:34 -07:00
self.getDownloadSpeed = function (byteSize) {
var url = self.getUrl('Playback/BitrateTest', {
Size: byteSize
});
var deferred = DeferredBuilder.Deferred();
2015-09-05 21:53:37 -07:00
var now = new Date().getTime();
2015-07-08 09:10:34 -07:00
self.get(url).done(function () {
2015-09-05 21:53:37 -07:00
var responseTimeSeconds = (new Date().getTime() - now) / 1000;
var bytesPerSecond = byteSize / responseTimeSeconds;
var bitrate = Math.round(bytesPerSecond * 8);
2015-07-08 09:10:34 -07:00
2015-09-05 21:53:37 -07:00
deferred.resolveWith(null, [bitrate]);
2015-07-08 09:10:34 -07:00
}).fail(function () {
deferred.reject();
});
return deferred.promise();
};
self.detectBitrate = function () {
var deferred = DeferredBuilder.Deferred();
// First try a small amount so that we don't hang up their mobile connection
self.getDownloadSpeed(1000000).done(function (bitrate) {
2015-09-05 14:15:36 -07:00
if (bitrate < 1000000) {
2015-07-08 09:10:34 -07:00
deferred.resolveWith(null, [Math.round(bitrate * .8)]);
} else {
// If that produced a fairly high speed, try again with a larger size to get a more accurate result
2015-09-09 10:49:44 -07:00
self.getDownloadSpeed(2400000).done(function (bitrate) {
2015-07-08 09:10:34 -07:00
deferred.resolveWith(null, [Math.round(bitrate * .8)]);
}).fail(function () {
deferred.reject();
});
}
}).fail(function () {
deferred.reject();
});
return deferred.promise();
};
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) {
2014-04-07 21:17:18 -07:00
if (!itemId) {
throw new Error("null itemId");
}
2015-07-08 09:10:34 -07:00
var url = userId ?
2015-07-03 09:49:49 -07:00
self.getUrl("Users/" + userId + "/Items/" + itemId) :
self.getUrl("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 () {
2015-05-18 15:23:03 -07:00
self.closeWebSocket();
2014-07-07 18:41:03 -07:00
var done = function () {
2015-05-20 09:28:55 -07:00
self.setAuthenticationInfo(null, null);
2014-07-07 18:41:03 -07:00
};
2015-09-10 11:28:22 -07:00
if (self.accessToken()) {
2014-07-07 18:41:03 -07:00
var url = self.getUrl("Sessions/Logout");
return self.ajax({
type: "POST",
url: url
2015-05-19 12:15:40 -07:00
}).always(done);
2014-07-07 18:41:03 -07:00
}
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.Deferred();
2015-09-10 11:28:22 -07:00
done();
2014-07-07 18:41:03 -07:00
deferred.resolveWith(null, []);
2015-09-10 11:28:22 -07:00
return deferred.promise();
2014-07-07 18:41:03 -07:00
};
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"
});
};
2015-05-26 08:31:50 -07:00
self.getRegistrationInfo = function (feature) {
var url = self.getUrl("Registrations/" + feature);
return self.ajax({
type: "GET",
url: url,
dataType: "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);
};
2015-08-27 21:19:08 -07:00
self.getInstantMixFromItem = function (itemId, options) {
2013-08-09 08:55:22 -07:00
2015-08-27 21:19:08 -07:00
var url = self.getUrl("Items/" + itemId + "/InstantMix", options);
2014-12-12 20:56:30 -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"
});
};
2015-08-20 19:36:30 -07:00
self.getSimilarItems = function (itemId, options) {
2013-05-15 15:55:24 -07:00
2015-08-20 19:36:30 -07:00
var url = self.getUrl("Items/" + 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
*/
2015-01-20 20:54:45 -07:00
self.getVirtualFolders = function () {
2015-01-20 20:54:45 -07:00
var url = "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
2015-09-09 10:49:44 -07:00
/**
* Gets the current server configuration
*/
self.getDevicesOptions = function () {
var url = self.getUrl("System/Configuration/devices");
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
/**
* Gets the current server configuration
*/
self.getContentUploadHistory = function () {
var url = self.getUrl("Devices/CameraUploads", {
DeviceId: self.deviceId()
});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
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) {
options = options || {};
2013-04-03 21:40:28 -07:00
options.PackageType = "UserInstalled";
2015-05-16 12:09:02 -07:00
if (self.enableAppStorePolicy) {
options.IsAppStoreEnabled = true;
}
2013-04-03 21:40:28 -07:00
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
});
};
2015-03-29 11:31:28 -07:00
self.stopActiveEncodings = function (playSessionId) {
2015-03-20 10:29:18 -07:00
var options = {
deviceId: deviceId
2015-03-20 10:29:18 -07:00
};
2015-03-29 11:31:28 -07:00
if (playSessionId) {
options.PlaySessionId = playSessionId;
2015-03-20 10:29:18 -07:00
}
var url = self.getUrl("Videos/ActiveEncodings", options);
return self.ajax({
type: "DELETE",
url: url
});
};
2014-04-13 10:27:13 -07:00
self.reportCapabilities = function (options) {
2014-12-14 13:01:26 -07:00
var url = self.getUrl("Sessions/Capabilities/Full");
2014-04-13 10:27:13 -07:00
return self.ajax({
type: "POST",
2014-12-14 13:01:26 -07:00
url: url,
data: JSON.stringify(options),
contentType: "application/json"
2014-04-13 10:27:13 -07:00
});
};
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.");
}
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.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;
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.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 () {
2015-05-16 12:09:02 -07:00
var options = {};
if (self.enableAppStorePolicy) {
options.IsAppStoreEnabled = true;
}
var url = self.getUrl("Plugins", 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 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"
});
};
2015-09-10 11:28:22 -07:00
/**
* Gets a user by id
* @param {String} id
*/
self.getOfflineUser = function (id) {
if (!id) {
throw new Error("Must supply a userId");
}
var url = self.getUrl("Users/" + id + "/Offline");
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"
});
};
2015-04-25 20:25:07 -07:00
self.getDefaultImageQuality = function (imageType) {
return imageType.toLowerCase() == 'backdrop' ? 80 : 90;
};
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
2015-04-25 20:25:07 -07:00
options.quality = options.quality || self.getDefaultImageQuality(options.type);
2015-05-11 09:32:15 -07:00
if (self.normalizeImageOptions) {
self.normalizeImageOptions(options);
}
}
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");
}
2015-04-27 10:55:57 -07:00
options = options || {};
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;
}
2015-05-06 20:11:51 -07:00
options.quality = options.quality || self.getDefaultImageQuality(options.type);
2015-05-11 09:32:15 -07:00
if (self.normalizeImageOptions) {
self.normalizeImageOptions(options);
}
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
2015-07-24 14:44:25 -07:00
var deferred = DeferredBuilder.Deferred();
2013-07-08 09:13:21 -07:00
if (!name) {
2015-05-06 05:56:26 -07:00
deferred.reject();
return deferred.promise();
2013-07-08 09:13:21 -07:00
}
var url = self.getUrl("Users/authenticatebyname");
2013-07-08 09:13:21 -07:00
2015-09-09 10:49:44 -07:00
require(["cryptojs-sha1"], function () {
var postData = {
password: CryptoJS.SHA1(password || "").toString(),
Username: name
};
2013-07-08 09:13:21 -07:00
2015-09-09 10:49:44 -07:00
self.ajax({
type: "POST",
url: url,
data: JSON.stringify(postData),
dataType: "json",
contentType: "application/json"
2014-10-23 21:54:35 -07:00
2015-09-09 10:49:44 -07:00
}).done(function (result) {
2014-10-23 21:54:35 -07:00
2015-09-09 10:49:44 -07:00
if (self.onAuthenticated) {
self.onAuthenticated(self, result);
}
2015-07-24 14:44:25 -07:00
2015-09-09 10:49:44 -07:00
deferred.resolveWith(null, [result]);
2015-07-24 14:44:25 -07:00
2015-09-09 10:49:44 -07:00
}).fail(function () {
2015-07-24 14:44:25 -07:00
2015-09-09 10:49:44 -07:00
deferred.reject();
});
2013-07-08 09:13:21 -07:00
});
2015-07-24 14:44:25 -07:00
return deferred.promise();
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) {
2015-09-09 10:49:44 -07:00
var deferred = DeferredBuilder.Deferred();
2013-03-21 13:20:00 -07:00
if (!userId) {
2015-09-09 10:49:44 -07:00
deferred.reject();
return deferred.promise();
2013-03-21 13:20:00 -07:00
}
2013-03-21 13:20:00 -07:00
var url = self.getUrl("Users/" + userId + "/Password");
2015-09-09 10:49:44 -07:00
require(["cryptojs-sha1"], function () {
self.ajax({
type: "POST",
url: url,
data: {
currentPassword: CryptoJS.SHA1(currentPassword).toString(),
newPassword: CryptoJS.SHA1(newPassword).toString()
}
}).done(function (result) {
deferred.resolveWith(null, [result]);
}).fail(function () {
deferred.reject();
});
2013-03-21 13:20:00 -07:00
});
2015-09-09 10:49:44 -07:00
return deferred.promise();
};
2013-03-15 22:52:33 -07:00
2015-01-28 23:06:24 -07:00
/**
* Updates a user's easy password
* @param {String} userId
* @param {String} newPassword
*/
self.updateEasyPassword = function (userId, newPassword) {
2015-09-09 10:49:44 -07:00
var deferred = DeferredBuilder.Deferred();
2015-01-28 23:06:24 -07:00
if (!userId) {
2015-09-09 10:49:44 -07:00
deferred.reject();
return deferred.promise();
2015-01-28 23:06:24 -07:00
}
var url = self.getUrl("Users/" + userId + "/EasyPassword");
2015-09-09 10:49:44 -07:00
require(["cryptojs-sha1"], function () {
self.ajax({
type: "POST",
url: url,
data: {
newPassword: CryptoJS.SHA1(newPassword).toString()
}
}).done(function (result) {
deferred.resolveWith(null, [result]);
}).fail(function () {
deferred.reject();
});
2015-01-28 23:06:24 -07:00
});
2015-09-09 10:49:44 -07:00
return deferred.promise();
2015-01-28 23:06:24 -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
});
};
2015-01-28 23:06:24 -07:00
self.resetEasyPassword = function (userId) {
if (!userId) {
throw new Error("null userId");
}
var url = self.getUrl("Users/" + userId + "/EasyPassword");
var postData = {
};
postData.resetPassword = true;
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"
});
};
2014-12-18 21:20:07 -07:00
self.updateUserPolicy = function (userId, policy) {
if (!userId) {
throw new Error("null userId");
}
if (!policy) {
throw new Error("null policy");
}
var url = self.getUrl("Users/" + userId + "/Policy");
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(policy),
contentType: "application/json"
});
};
self.updateUserConfiguration = function (userId, configuration) {
if (!userId) {
throw new Error("null userId");
}
if (!configuration) {
throw new Error("null configuration");
}
var url = self.getUrl("Users/" + userId + "/Configuration");
return self.ajax({
type: "POST",
url: url,
data: JSON.stringify(configuration),
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
2014-01-22 10:05:06 -07:00
var url;
if ((typeof userId).toString().toLowerCase() == 'string') {
url = self.getUrl("Users/" + userId + "/Items", options);
} else {
2015-02-06 20:25:23 -07:00
url = self.getUrl("Items", options);
2014-01-22 10:05:06 -07:00
}
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"
});
};
2015-08-03 17:09:54 -07:00
self.getChannels = function (query) {
return self.getJSON(self.getUrl("Channels", query || {}));
};
2015-07-30 07:34:46 -07:00
self.getUserViews = function (options, userId) {
2014-06-04 19:32:40 -07:00
options = options || {};
2015-07-30 07:34:46 -07:00
var url = self.getUrl("Users/" + (userId || self.getCurrentUserId()) + "/Views", options);
2014-06-04 19:32:40 -07:00
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
}
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()) {
2015-02-15 20:05:21 -07:00
var deferred = DeferredBuilder.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("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
});
};
2015-09-14 12:47:03 -07:00
self.reportOfflineActions = function (actions) {
if (!actions) {
throw new Error("null actions");
}
var url = self.getUrl("Sync/OfflineActions");
return self.ajax({
type: "POST",
data: JSON.stringify(actions),
contentType: "application/json",
url: url
});
};
self.syncData = function (data) {
if (!data) {
throw new Error("null data");
}
var url = self.getUrl("Sync/Data");
return self.ajax({
type: "POST",
data: JSON.stringify(data),
contentType: "application/json",
url: url,
dataType: "json"
});
};
self.getReadySyncItems = function (deviceId) {
if (!deviceId) {
throw new Error("null deviceId");
}
var url = self.getUrl("Sync/Items/Ready", {
TargetId: deviceId
});
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
2015-09-14 14:24:54 -07:00
self.reportSyncJobItemTransferred = function (syncJobItemId) {
if (!syncJobItemId) {
throw new Error("null syncJobItemId");
}
var url = self.getUrl("Sync/JobItems/" + syncJobItemId + "/Transferred");
return self.ajax({
type: "POST",
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
}
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"
});
};
};
2015-01-16 13:54:37 -07:00
})(window, window.JSON, window.WebSocket, window.setTimeout, window.devicePixelRatio, window.FileReader);