2016-07-26 22:19:56 -07:00
|
|
|
|
define(['events'], function (events) {
|
2014-07-07 18:41:03 -07:00
|
|
|
|
|
2013-03-09 18:18:29 -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
|
2013-07-09 09:11:16 -07:00
|
|
|
|
* @param {String} applicationVersion
|
2013-03-09 18:18:29 -07:00
|
|
|
|
*/
|
2015-12-23 10:46:01 -07:00
|
|
|
|
return function (serverAddress, clientName, applicationVersion, deviceName, deviceId, devicePixelRatio) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-01-18 12:25:20 -07:00
|
|
|
|
if (!serverAddress) {
|
|
|
|
|
throw new Error("Must supply a serverAddress");
|
2013-03-25 20:01:47 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-23 10:46:01 -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);
|
2014-10-21 21:42:26 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var self = this;
|
2013-03-22 21:04:36 -07:00
|
|
|
|
var webSocket;
|
2015-05-20 09:28:55 -07:00
|
|
|
|
var serverInfo = {};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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) {
|
2016-07-26 22:19:56 -07:00
|
|
|
|
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
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
self.serverInfo = function (info) {
|
|
|
|
|
|
|
|
|
|
serverInfo = info || serverInfo;
|
|
|
|
|
|
|
|
|
|
return serverInfo;
|
|
|
|
|
};
|
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
self.serverId = function () {
|
|
|
|
|
return self.serverInfo().Id;
|
|
|
|
|
};
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var currentUser;
|
2015-04-27 11:52:54 -07:00
|
|
|
|
/**
|
|
|
|
|
* Gets or sets the current user id.
|
|
|
|
|
*/
|
|
|
|
|
self.getCurrentUser = function () {
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (currentUser) {
|
2016-03-25 09:38:04 -07:00
|
|
|
|
return Promise.resolve(currentUser);
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var userId = self.getCurrentUserId();
|
2015-04-27 11:52:54 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (!userId) {
|
2016-03-25 09:38:04 -07:00
|
|
|
|
return Promise.reject();
|
2015-05-07 15:27:01 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getUser(userId).then(function (user) {
|
|
|
|
|
currentUser = user;
|
|
|
|
|
return user;
|
|
|
|
|
});
|
2016-03-14 21:00:17 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
self.isLoggedIn = function () {
|
2016-03-14 21:00:17 -07:00
|
|
|
|
|
|
|
|
|
var info = self.serverInfo();
|
|
|
|
|
if (info) {
|
|
|
|
|
if (info.UserId && info.AccessToken) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
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 () {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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
|
|
|
|
};
|
2013-03-09 18:18:29 -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-12-14 08:43:03 -07:00
|
|
|
|
currentUser = null;
|
2015-05-20 09:28:55 -07:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-05-12 08:27:56 -07:00
|
|
|
|
name = name.split('/').join('-');
|
2014-10-20 20:41:11 -07:00
|
|
|
|
name = name.split('&').join('-');
|
2013-05-12 08:27:56 -07:00
|
|
|
|
name = name.split('?').join('-');
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var val = paramsToString({ 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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
function onFetchFail(url, response) {
|
2014-10-28 16:17:55 -07:00
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
events.trigger(self, 'requestfail', [
|
2014-10-28 16:17:55 -07:00
|
|
|
|
{
|
2015-12-14 08:43:03 -07:00
|
|
|
|
url: url,
|
|
|
|
|
status: response.status,
|
2016-04-22 09:25:52 -07:00
|
|
|
|
errorCode: response.headers ? response.headers.get('X-Application-Error-Code') : null
|
2014-10-28 16:17:55 -07:00
|
|
|
|
}]);
|
|
|
|
|
}
|
|
|
|
|
|
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-07 14:42:29 -07:00
|
|
|
|
headers['X-MediaBrowser-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-09 18:18:29 -07:00
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.fetch(request, includeAuthorization);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function getFetchPromise(request) {
|
|
|
|
|
|
|
|
|
|
var headers = request.headers || {};
|
|
|
|
|
|
|
|
|
|
if (request.dataType == 'json') {
|
|
|
|
|
headers.accept = 'application/json';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var fetchRequest = {
|
|
|
|
|
headers: headers,
|
2015-12-26 11:35:53 -07:00
|
|
|
|
method: request.type,
|
|
|
|
|
credentials: 'same-origin'
|
2015-12-14 08:43:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var contentType = request.contentType;
|
|
|
|
|
|
|
|
|
|
if (request.data) {
|
|
|
|
|
|
|
|
|
|
if (typeof request.data === 'string') {
|
|
|
|
|
fetchRequest.body = request.data;
|
|
|
|
|
} else {
|
|
|
|
|
fetchRequest.body = paramsToString(request.data);
|
|
|
|
|
|
|
|
|
|
contentType = contentType || 'application/x-www-form-urlencoded; charset=UTF-8';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (contentType) {
|
|
|
|
|
|
|
|
|
|
headers['Content-Type'] = contentType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!request.timeout) {
|
|
|
|
|
return fetch(request.url, fetchRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fetchWithTimeout(request.url, fetchRequest, request.timeout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fetchWithTimeout(url, options, timeoutMs) {
|
|
|
|
|
|
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
|
|
|
|
|
var timeout = setTimeout(reject, timeoutMs);
|
|
|
|
|
|
2015-12-26 11:35:53 -07:00
|
|
|
|
options = options || {};
|
|
|
|
|
options.credentials = 'same-origin';
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
fetch(url, options).then(function (response) {
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
resolve(response);
|
|
|
|
|
}, function (error) {
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
reject();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function paramsToString(params) {
|
|
|
|
|
|
|
|
|
|
var values = [];
|
|
|
|
|
|
|
|
|
|
for (var key in params) {
|
|
|
|
|
|
|
|
|
|
var value = params[key];
|
|
|
|
|
|
|
|
|
|
if (value !== null && value !== undefined && value !== '') {
|
|
|
|
|
values.push(encodeURIComponent(key) + "=" + encodeURIComponent(value));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return values.join('&');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Wraps around jQuery ajax methods to add additional info to the request.
|
|
|
|
|
*/
|
|
|
|
|
self.fetch = function (request, includeAuthorization) {
|
|
|
|
|
|
|
|
|
|
if (!request) {
|
|
|
|
|
throw new Error("Request cannot be null");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
request.headers = request.headers || {};
|
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
if (includeAuthorization !== false) {
|
2015-05-27 22:51:48 -07:00
|
|
|
|
|
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-12-23 10:46:01 -07:00
|
|
|
|
console.log('Requesting url without automatic networking: ' + request.url);
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
|
|
|
|
return getFetchPromise(request).then(function (response) {
|
|
|
|
|
|
|
|
|
|
if (response.status < 400) {
|
|
|
|
|
|
|
|
|
|
if (request.dataType == 'json' || request.headers.accept == 'application/json') {
|
|
|
|
|
return response.json();
|
2016-01-29 21:55:05 -07:00
|
|
|
|
} else if (request.dataType == 'text' || (response.headers.get('Content-Type') || '').toLowerCase().indexOf('text/') == 0) {
|
|
|
|
|
return response.text();
|
2015-12-14 08:43:03 -07:00
|
|
|
|
} else {
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
onFetchFail(request.url, response);
|
|
|
|
|
return Promise.reject(response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}, function (error) {
|
|
|
|
|
onFetchFail(request.url, {});
|
|
|
|
|
throw error;
|
|
|
|
|
});
|
2014-10-27 14:45:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.fetchWithFailover(request, true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.getJSON = function (url, includeAuthorization) {
|
|
|
|
|
|
|
|
|
|
return self.fetch({
|
|
|
|
|
|
|
|
|
|
url: url,
|
|
|
|
|
type: 'GET',
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
headers: {
|
|
|
|
|
accept: 'application/json'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}, includeAuthorization);
|
2014-10-27 14:45:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
function tryReconnectInternal(resolve, reject, 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-12-23 10:46:01 -07:00
|
|
|
|
console.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-12-14 08:43:03 -07:00
|
|
|
|
fetchWithTimeout(url + "/system/info/public", {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
method: 'GET',
|
|
|
|
|
accept: 'application/json'
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Commenting this out since the fetch api doesn't have a timeout option yet
|
|
|
|
|
//timeout: timeout
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, timeout).then(function () {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
resolve();
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, function () {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.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 () {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
tryReconnectInternal(resolve, reject, newConnectionMode, currentRetryCount + 1);
|
|
|
|
|
}, 300);
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
|
|
|
|
} else {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
reject();
|
2014-10-27 14:45:50 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function tryReconnect() {
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
tryReconnectInternal(resolve, reject, self.serverInfo().LastConnectionMode, 0);
|
|
|
|
|
}, 300);
|
|
|
|
|
});
|
2014-10-27 14:45:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
self.fetchWithFailover = function (request, enableReconnection) {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.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-12-14 08:43:03 -07:00
|
|
|
|
return getFetchPromise(request).then(function (response) {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (response.status < 400) {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (request.dataType == 'json' || request.headers.accept == 'application/json') {
|
|
|
|
|
return response.json();
|
2016-01-29 21:55:05 -07:00
|
|
|
|
} else if (request.dataType == 'text' || (response.headers.get('Content-Type') || '').toLowerCase().indexOf('text/') == 0) {
|
|
|
|
|
return response.text();
|
2015-12-14 08:43:03 -07:00
|
|
|
|
} else {
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
onFetchFail(request.url, response);
|
|
|
|
|
return Promise.reject(response);
|
|
|
|
|
}
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, function (error) {
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log("Request failed to " + request.url);
|
2014-10-29 15:01:02 -07:00
|
|
|
|
|
2014-10-28 16:17:55 -07:00
|
|
|
|
// http://api.jquery.com/jQuery.ajax/
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (enableReconnection) {
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log("Attempting reconnection");
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2015-07-05 11:34:52 -07:00
|
|
|
|
var previousServerAddress = self.serverAddress();
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return tryReconnect().then(function () {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.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-12-14 08:43:03 -07:00
|
|
|
|
return self.fetchWithFailover(request, false);
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, function (innerError) {
|
2014-10-27 14:45:50 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log("Reconnect failed");
|
2015-12-14 08:43:03 -07:00
|
|
|
|
onFetchFail(request.url, {});
|
|
|
|
|
throw innerError;
|
2014-10-27 14:45:50 -07:00
|
|
|
|
});
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2014-10-27 14:45:50 -07:00
|
|
|
|
} else {
|
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log("Reporting request failure");
|
2015-07-01 08:47:41 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
onFetchFail(request.url, {});
|
|
|
|
|
throw error;
|
2014-10-27 14:45:50 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-11-26 12:29:49 -07:00
|
|
|
|
self.get = function (url) {
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "GET",
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("Url name cannot be empty");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-03-26 09:58:02 -07:00
|
|
|
|
var url = serverAddress;
|
|
|
|
|
|
2015-05-20 09:28:55 -07:00
|
|
|
|
if (!url) {
|
|
|
|
|
throw new Error("serverAddress is yet not set");
|
|
|
|
|
}
|
2015-10-06 07:59:42 -07:00
|
|
|
|
var lowered = url.toLowerCase();
|
|
|
|
|
if (lowered.indexOf('/emby') == -1 && lowered.indexOf('/mediabrowser') == -1) {
|
2015-10-05 19:50:20 -07:00
|
|
|
|
url += '/emby';
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 09:58:02 -07:00
|
|
|
|
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) {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
params = paramsToString(params);
|
2015-10-02 13:27:05 -07:00
|
|
|
|
if (params) {
|
|
|
|
|
url += "?" + params;
|
|
|
|
|
}
|
2013-03-21 13:20:00 -07:00
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return url;
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-12-23 10:46:01 -07:00
|
|
|
|
console.log('Begin updateServerInfo. connectionMode: ' + connectionMode);
|
2015-02-15 17:33:06 -07:00
|
|
|
|
|
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-12-23 10:46:01 -07:00
|
|
|
|
console.log('Setting server address to ' + serverUrl);
|
2015-05-19 12:15:40 -07:00
|
|
|
|
self.serverAddress(serverUrl);
|
2014-10-27 14:45:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.isWebSocketSupported = function () {
|
2016-01-19 18:10:59 -07:00
|
|
|
|
try {
|
|
|
|
|
return WebSocket != null;
|
|
|
|
|
}
|
|
|
|
|
catch (err) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-10-23 21:54:35 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
self.ensureWebSocket = function () {
|
2016-04-08 20:08:50 -07:00
|
|
|
|
if (self.isWebSocketOpenOrConnecting() || !self.isWebSocketSupported()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self.openWebSocket();
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-28 14:48:34 -07:00
|
|
|
|
function replaceAll(originalString, strReplace, strWith) {
|
|
|
|
|
var reg = new RegExp(strReplace, 'ig');
|
|
|
|
|
return originalString.replace(reg, strWith);
|
|
|
|
|
}
|
|
|
|
|
|
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.");
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-28 14:48:34 -07:00
|
|
|
|
var url = self.getUrl("socket");
|
|
|
|
|
|
|
|
|
|
url = replaceAll(url, 'emby/socket', 'embywebsocket');
|
|
|
|
|
url = replaceAll(url, 'http', 'ws');
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
2015-03-08 12:48:30 -07:00
|
|
|
|
url += "?api_key=" + accessToken;
|
2015-03-12 18:55:22 -07:00
|
|
|
|
url += "&deviceId=" + deviceId;
|
2013-03-22 21:04:36 -07:00
|
|
|
|
|
|
|
|
|
webSocket = new WebSocket(url);
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
webSocket.onmessage = function (msg) {
|
2014-07-18 18:28:40 -07:00
|
|
|
|
|
2013-03-22 21:04:36 -07:00
|
|
|
|
msg = JSON.parse(msg.data);
|
2015-05-07 15:27:01 -07:00
|
|
|
|
onWebSocketMessage(msg);
|
2013-03-22 21:04:36 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
webSocket.onopen = function () {
|
2014-05-16 21:24:10 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log('web socket connection opened');
|
2013-11-08 14:21:51 -07:00
|
|
|
|
setTimeout(function () {
|
2016-07-26 22:19:56 -07:00
|
|
|
|
events.trigger(self, 'websocketopen');
|
2015-03-08 12:48:30 -07:00
|
|
|
|
}, 0);
|
2013-03-22 21:04:36 -07:00
|
|
|
|
};
|
2013-11-08 14:21:51 -07:00
|
|
|
|
webSocket.onerror = function () {
|
2016-07-26 22:19:56 -07:00
|
|
|
|
events.trigger(self, 'websocketerror');
|
2013-03-22 21:04:36 -07:00
|
|
|
|
};
|
2013-11-08 14:21:51 -07:00
|
|
|
|
webSocket.onclose = function () {
|
|
|
|
|
setTimeout(function () {
|
2016-07-26 22:19:56 -07:00
|
|
|
|
events.trigger(self, 'websocketclose');
|
2013-03-22 21:04:36 -07:00
|
|
|
|
}, 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") {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
currentUser = null;
|
2015-05-07 15:27:01 -07:00
|
|
|
|
}
|
|
|
|
|
else if (msg.MessageType === "UserUpdated" || msg.MessageType === "UserConfigurationUpdated") {
|
|
|
|
|
|
|
|
|
|
var user = msg.Data;
|
|
|
|
|
if (user.Id == self.getCurrentUserId()) {
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
currentUser = null;
|
2015-05-07 15:27:01 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
events.trigger(self, 'websocketmessage', [msg]);
|
2015-05-07 15:27:01 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.sendWebSocketMessage = function (name, data) {
|
2013-03-22 21:04:36 -07:00
|
|
|
|
|
2015-12-23 10:46:01 -07:00
|
|
|
|
console.log('Sending web socket message: ' + name);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2013-03-22 21:04:36 -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 () {
|
2013-03-22 21:04:36 -07:00
|
|
|
|
return webSocket && webSocket.readyState === WebSocket.OPEN;
|
|
|
|
|
};
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.isWebSocketOpenOrConnecting = function () {
|
2013-03-22 21:04:36 -07:00
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-01-18 14:52:01 -07:00
|
|
|
|
};
|
|
|
|
|
|
2015-07-08 09:10:34 -07:00
|
|
|
|
self.getDownloadSpeed = function (byteSize) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl('Playback/BitrateTest', {
|
|
|
|
|
|
|
|
|
|
Size: byteSize
|
|
|
|
|
});
|
|
|
|
|
|
2015-09-05 21:53:37 -07:00
|
|
|
|
var now = new Date().getTime();
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
url: url,
|
|
|
|
|
timeout: 5000
|
|
|
|
|
|
|
|
|
|
}).then(function () {
|
2015-07-08 09:10:34 -07:00
|
|
|
|
|
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-12-14 08:43:03 -07:00
|
|
|
|
return bitrate;
|
2015-07-08 09:10:34 -07:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.detectBitrate = function () {
|
|
|
|
|
|
|
|
|
|
// First try a small amount so that we don't hang up their mobile connection
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getDownloadSpeed(1000000).then(function (bitrate) {
|
2015-07-08 09:10:34 -07:00
|
|
|
|
|
2015-09-05 14:15:36 -07:00
|
|
|
|
if (bitrate < 1000000) {
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return Math.round(bitrate * .8);
|
2015-07-08 09:10:34 -07:00
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// If that produced a fairly high speed, try again with a larger size to get a more accurate result
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getDownloadSpeed(2400000).then(function (bitrate) {
|
2015-07-08 09:10:34 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return Math.round(bitrate * .8);
|
2015-07-08 09:10:34 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2014-04-07 21:17:18 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-29 10:25:12 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Items/Root");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-07-06 14:23:32 -07:00
|
|
|
|
};
|
|
|
|
|
|
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 || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-07-06 14:23:32 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-12-14 08:43:03 -07:00
|
|
|
|
|
|
|
|
|
}).then(done, done);
|
2014-07-07 18:41:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
resolve();
|
|
|
|
|
});
|
2014-07-07 18:41:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-10-31 18:48:14 -07:00
|
|
|
|
function getRemoteImagePrefix(options) {
|
2013-11-04 12:54:32 -07:00
|
|
|
|
|
2013-10-31 18:48:14 -07:00
|
|
|
|
var urlPrefix;
|
|
|
|
|
|
|
|
|
|
if (options.artist) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "Artists/" + self.encodeName(options.artist);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.artist;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else if (options.person) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "Persons/" + self.encodeName(options.person);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.person;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else if (options.genre) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "Genres/" + self.encodeName(options.genre);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.genre;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else if (options.musicGenre) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "MusicGenres/" + self.encodeName(options.musicGenre);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.musicGenre;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else if (options.gameGenre) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "GameGenres/" + self.encodeName(options.gameGenre);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.gameGenre;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else if (options.studio) {
|
2013-11-05 08:12:13 -07:00
|
|
|
|
urlPrefix = "Studios/" + self.encodeName(options.studio);
|
2013-10-31 18:48:14 -07:00
|
|
|
|
delete options.studio;
|
2013-11-08 13:53:09 -07:00
|
|
|
|
} else {
|
2013-10-31 18:48:14 -07:00
|
|
|
|
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) {
|
2013-11-05 08:38:59 -07:00
|
|
|
|
|
|
|
|
|
if (!options) {
|
|
|
|
|
throw new Error("null options");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var urlPrefix = getRemoteImagePrefix(options);
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl(urlPrefix + "/RemoteImages/Providers", options);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-05 08:38:59 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.getAvailableRemoteImages = function (options) {
|
2013-10-31 08:39:09 -07:00
|
|
|
|
|
2013-10-31 14:03:24 -07:00
|
|
|
|
if (!options) {
|
|
|
|
|
throw new Error("null options");
|
2013-10-31 08:39:09 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-31 18:48:14 -07:00
|
|
|
|
var urlPrefix = getRemoteImagePrefix(options);
|
2013-10-31 14:03:24 -07:00
|
|
|
|
|
2013-10-31 18:48:14 -07:00
|
|
|
|
var url = self.getUrl(urlPrefix + "/RemoteImages", options);
|
2013-10-31 08:39:09 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-10-31 08:39:09 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.downloadRemoteImage = function (options) {
|
2013-10-31 18:48:14 -07:00
|
|
|
|
|
|
|
|
|
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-13 13:31:09 -07:00
|
|
|
|
|
2014-01-14 13:03:35 -07:00
|
|
|
|
var url = self.getUrl("LiveTv/Info", options || {});
|
2013-11-15 09:00:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-15 09:00:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
2014-01-07 11:39:35 -07:00
|
|
|
|
self.getLiveTvGuideInfo = function (options) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("LiveTv/GuideInfo", options || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-01-07 11:39:35 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-12-17 13:02:12 -07:00
|
|
|
|
self.getLiveTvChannel = function (id, userId) {
|
2013-11-24 16:37:38 -07:00
|
|
|
|
|
|
|
|
|
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);
|
2013-11-24 16:37:38 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-24 16:37:38 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-15 09:00:50 -07:00
|
|
|
|
self.getLiveTvChannels = function (options) {
|
|
|
|
|
|
2013-11-27 12:04:19 -07:00
|
|
|
|
var url = self.getUrl("LiveTv/Channels", options || {});
|
2013-11-15 09:00:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-15 09:00:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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"
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2013-11-15 09:00:50 -07:00
|
|
|
|
self.getLiveTvRecordings = function (options) {
|
|
|
|
|
|
2013-11-27 12:04:19 -07:00
|
|
|
|
var url = self.getUrl("LiveTv/Recordings", options || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-27 12:04:19 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-12-28 14:37:01 -07:00
|
|
|
|
self.getLiveTvRecordingGroups = function (options) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("LiveTv/Recordings/Groups", options || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-12-28 14:37:01 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-01-01 20:53:27 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-12-17 13:02:12 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-27 12:04:19 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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 || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-27 12:04:19 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.getLiveTvTimer = function (id) {
|
|
|
|
|
|
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("LiveTv/Timers/" + id);
|
2013-11-15 09:00:50 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-12-17 13:02:12 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-15 09:00:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
self.createLiveTvTimer = function (item) {
|
2013-11-29 09:58:24 -07:00
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
if (!item) {
|
|
|
|
|
throw new Error("null item");
|
2013-11-29 09:58:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 18:17:57 -07:00
|
|
|
|
var url = self.getUrl("LiveTv/Timers");
|
2013-11-29 09:58:24 -07:00
|
|
|
|
|
|
|
|
|
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 || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-12-14 18:17:57 -07:00
|
|
|
|
};
|
|
|
|
|
|
2014-01-20 23:10:58 -07:00
|
|
|
|
self.getFileOrganizationResults = function (options) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Library/FileOrganization", options || {});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-01-20 23:10:58 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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) {
|
|
|
|
|
|
2016-02-27 22:18:16 -07:00
|
|
|
|
var url = self.getUrl("Library/FileOrganizations/" + id + "/Episode/Organize");
|
2014-01-22 10:05:06 -07:00
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
2016-02-27 22:18:16 -07:00
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(options),
|
|
|
|
|
contentType: 'application/json'
|
2014-01-22 10:05:06 -07:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-12-14 18:17:57 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.cancelLiveTvSeriesTimer = function (id) {
|
|
|
|
|
|
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("LiveTv/SeriesTimers/" + id);
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "DELETE",
|
2013-11-29 09:58:24 -07:00
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2015-05-26 08:31:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("System/Info");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-15 15:55:24 -07:00
|
|
|
|
};
|
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
/**
|
|
|
|
|
* Gets the current server status
|
|
|
|
|
*/
|
|
|
|
|
self.getPublicSystemInfo = function () {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("System/Info/Public");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url, false);
|
2014-10-25 11:32:58 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-12-12 20:56:30 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-11-22 08:33:14 -07:00
|
|
|
|
self.getEpisodes = function (itemId, options) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Shows/" + itemId + "/Episodes", options);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-22 08:33:14 -07:00
|
|
|
|
};
|
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
|
|
|
|
|
});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-28 11:27:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Localization/cultures");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Localization/countries");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Plugins/SecurityInfo");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!path) {
|
|
|
|
|
throw new Error("null path");
|
|
|
|
|
}
|
2016-01-29 21:55:05 -07:00
|
|
|
|
if (typeof (path) !== 'string') {
|
|
|
|
|
throw new Error('invalid path');
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
options = options || {};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
options.path = path;
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Environment/DirectoryContents", options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-01-01 11:26:31 -07:00
|
|
|
|
/**
|
|
|
|
|
* 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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-01-01 11:26:31 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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",
|
2016-01-29 21:55:05 -07:00
|
|
|
|
url: url,
|
|
|
|
|
dataType: 'text'
|
2014-01-01 11:26:31 -07:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Environment/Drives");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-09-06 13:25:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!installationId) {
|
|
|
|
|
throw new Error("null installationId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-09-25 19:15:33 -07:00
|
|
|
|
var url = self.getUrl("Packages/Installing/" + installationId);
|
2013-03-09 18:18:29 -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-05-22 12:49:12 -07:00
|
|
|
|
/**
|
|
|
|
|
* Refreshes metadata for an item
|
|
|
|
|
*/
|
2014-06-14 19:24:04 -07:00
|
|
|
|
self.refreshItem = function (itemId, options) {
|
2013-05-22 12:49:12 -07:00
|
|
|
|
|
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-14 19:24:04 -07:00
|
|
|
|
var url = self.getUrl("Items/" + itemId + "/Refresh", options || {});
|
2013-05-22 12:49:12 -07:00
|
|
|
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!updateClass) {
|
|
|
|
|
throw new Error("null updateClass");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var options = {
|
2013-11-04 11:16:47 -07:00
|
|
|
|
updateClass: updateClass,
|
|
|
|
|
AssemblyGuid: guid
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("System/Restart");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-11-04 11:16:47 -07:00
|
|
|
|
var options = {
|
|
|
|
|
AssemblyGuid: guid
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Packages/" + name, options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Packages/Updates", { PackageType: "System" });
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Packages/Updates", { PackageType: "UserInstalled" });
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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 () {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-01-20 20:54:45 -07:00
|
|
|
|
var url = "Library/VirtualFolders";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
url = self.getUrl(url);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Library/PhysicalPaths");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("System/Configuration");
|
2015-12-14 08:43:03 -07:00
|
|
|
|
|
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2015-09-09 10:49:44 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the current server configuration
|
|
|
|
|
*/
|
|
|
|
|
self.getContentUploadHistory = function () {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Devices/CameraUploads", {
|
|
|
|
|
DeviceId: self.deviceId()
|
|
|
|
|
});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2015-09-09 10:49:44 -07:00
|
|
|
|
};
|
|
|
|
|
|
2014-06-29 10:35:05 -07:00
|
|
|
|
self.getNamedConfiguration = function (name) {
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("System/Configuration/" + name);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-06-29 10:35:05 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
/**
|
|
|
|
|
* Gets the server's scheduled tasks
|
|
|
|
|
*/
|
2013-11-29 09:58:24 -07:00
|
|
|
|
self.getScheduledTasks = function (options) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-11-29 09:58:24 -07:00
|
|
|
|
options = options || {};
|
2013-12-01 13:17:24 -07:00
|
|
|
|
|
2013-11-29 09:58:24 -07:00
|
|
|
|
var url = self.getUrl("ScheduledTasks", options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("ScheduledTasks/Running/" + id);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("ScheduledTasks/" + id);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-04 13:02:20 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("ScheduledTasks/Running/" + id);
|
2013-03-09 18:18:29 -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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null Id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Plugins/" + id + "/Configuration");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-03-09 18:18:29 -07:00
|
|
|
|
|
2015-02-15 17:33:06 -07:00
|
|
|
|
options = options || {};
|
2013-04-03 21:40:28 -07:00
|
|
|
|
options.PackageType = "UserInstalled";
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Packages", options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null Id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Plugins/" + id);
|
2013-03-09 18:18:29 -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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-02-20 22:04:11 -07:00
|
|
|
|
var url = "Library/VirtualFolders";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-09-05 10:05:39 -07:00
|
|
|
|
url = self.getUrl(url, {
|
2013-12-29 07:54:11 -07:00
|
|
|
|
refreshLibrary: refreshLibrary ? true : false,
|
|
|
|
|
name: name
|
2013-09-05 10:05:39 -07:00
|
|
|
|
});
|
2013-03-09 18:18:29 -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-09 18:18:29 -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
|
|
|
|
|
*/
|
2015-10-25 22:29:32 -07:00
|
|
|
|
self.addVirtualFolder = function (name, type, refreshLibrary, initialPaths) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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;
|
2013-12-29 07:54:11 -07:00
|
|
|
|
options.name = name;
|
2013-09-05 10:05:39 -07:00
|
|
|
|
|
2014-02-20 22:04:11 -07:00
|
|
|
|
var url = "Library/VirtualFolders";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-07-12 12:56:40 -07:00
|
|
|
|
url = self.getUrl(url, options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
2015-10-15 19:06:44 -07:00
|
|
|
|
url: url,
|
2015-10-25 22:29:32 -07:00
|
|
|
|
data: JSON.stringify({
|
|
|
|
|
Paths: initialPaths
|
|
|
|
|
}),
|
|
|
|
|
contentType: 'application/json'
|
2013-03-21 13:20:00 -07:00
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-02-20 22:04:11 -07:00
|
|
|
|
var url = "Library/VirtualFolders/Name";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-09-05 10:05:39 -07:00
|
|
|
|
url = self.getUrl(url, {
|
|
|
|
|
refreshLibrary: refreshLibrary ? true : false,
|
2013-12-29 07:54:11 -07:00
|
|
|
|
newName: newName,
|
|
|
|
|
name: name
|
2013-09-05 10:05:39 -07:00
|
|
|
|
});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!virtualFolderName) {
|
|
|
|
|
throw new Error("null virtualFolderName");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!mediaPath) {
|
|
|
|
|
throw new Error("null mediaPath");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-02-20 22:04:11 -07:00
|
|
|
|
var url = "Library/VirtualFolders/Paths";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-09-05 10:05:39 -07:00
|
|
|
|
url = self.getUrl(url, {
|
|
|
|
|
refreshLibrary: refreshLibrary ? true : false,
|
2013-12-29 07:54:11 -07:00
|
|
|
|
path: mediaPath,
|
|
|
|
|
name: virtualFolderName
|
2013-09-05 10:05:39 -07:00
|
|
|
|
});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!virtualFolderName) {
|
|
|
|
|
throw new Error("null virtualFolderName");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!mediaPath) {
|
|
|
|
|
throw new Error("null mediaPath");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-02-20 22:04:11 -07:00
|
|
|
|
var url = "Library/VirtualFolders/Paths";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-09-05 10:05:39 -07:00
|
|
|
|
url = self.getUrl(url, {
|
|
|
|
|
refreshLibrary: refreshLibrary ? true : false,
|
2013-12-29 07:54:11 -07:00
|
|
|
|
path: mediaPath,
|
|
|
|
|
name: virtualFolderName
|
2013-09-05 10:05:39 -07:00
|
|
|
|
});
|
2013-03-09 18:18:29 -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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + id);
|
2013-03-09 18:18:29 -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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!imageType) {
|
|
|
|
|
throw new Error("null imageType");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -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) {
|
2013-12-01 13:17:24 -07:00
|
|
|
|
|
2015-03-20 10:29:18 -07:00
|
|
|
|
var options = {
|
2013-12-01 13:17:24 -07:00
|
|
|
|
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);
|
2013-12-01 13:17:24 -07:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-04 21:49:49 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-11 23:05:51 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-11 23:05:51 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!imageType) {
|
|
|
|
|
throw new Error("null imageType");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-04-17 09:45:37 -07:00
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var reader = new FileReader();
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
reader.onerror = function () {
|
|
|
|
|
reject();
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
reader.onabort = function () {
|
|
|
|
|
reject();
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Closure to capture the file information.
|
|
|
|
|
reader.onload = function (e) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Split by a comma to remove the url: prefix
|
|
|
|
|
var data = e.target.result.split(',')[1];
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: data,
|
|
|
|
|
contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
|
|
|
|
|
}).then(function (result) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
resolve(result);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, function () {
|
|
|
|
|
reject();
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Read in the image file as a data URL.
|
|
|
|
|
reader.readAsDataURL(file);
|
|
|
|
|
});
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-04-26 20:42:05 -07:00
|
|
|
|
self.uploadItemImage = function (itemId, imageType, file) {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
|
|
|
|
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-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var reader = new FileReader();
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
reader.onerror = function () {
|
|
|
|
|
reject();
|
|
|
|
|
};
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
reader.onabort = function () {
|
|
|
|
|
reject();
|
|
|
|
|
};
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Closure to capture the file information.
|
|
|
|
|
reader.onload = function (e) {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Split by a comma to remove the url: prefix
|
|
|
|
|
var data = e.target.result.split(',')[1];
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: data,
|
|
|
|
|
contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
|
|
|
|
|
}).then(function (result) {
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
resolve(result);
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, function () {
|
|
|
|
|
reject();
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-05-04 14:20:27 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
// Read in the image file as a data URL.
|
|
|
|
|
reader.readAsDataURL(file);
|
|
|
|
|
});
|
2013-05-04 14:20:27 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-05-16 12:09:02 -07:00
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Plugins", options);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("Must supply a userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + id);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2015-09-10 11:28:22 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-21 21:38:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-06-10 20:31:00 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-07-01 10:17:33 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
throw new Error("null name");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-03-09 18:18:29 -07:00
|
|
|
|
|
2013-07-08 09:13:21 -07:00
|
|
|
|
var url = self.getUrl("users", options || {});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Localization/ParentalRatings");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2014-04-12 10:27:53 -07:00
|
|
|
|
|
2015-04-25 20:25:07 -07:00
|
|
|
|
self.getDefaultImageQuality = function (imageType) {
|
|
|
|
|
return imageType.toLowerCase() == 'backdrop' ? 80 : 90;
|
|
|
|
|
};
|
|
|
|
|
|
2014-04-11 08:36:25 -07:00
|
|
|
|
function normalizeImageOptions(options) {
|
|
|
|
|
|
2014-10-26 17:13:47 -07:00
|
|
|
|
var ratio = devicePixelRatio || 1;
|
2014-04-12 10:27:53 -07:00
|
|
|
|
|
2014-04-11 08:36:25 -07:00
|
|
|
|
if (ratio) {
|
2014-04-12 10:27:53 -07:00
|
|
|
|
|
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);
|
2014-04-11 08:36:25 -07:00
|
|
|
|
}
|
|
|
|
|
if (options.height) {
|
2014-05-02 07:49:28 -07:00
|
|
|
|
options.height = Math.round(options.height * ratio);
|
2014-04-11 08:36:25 -07:00
|
|
|
|
}
|
|
|
|
|
if (options.maxWidth) {
|
2014-05-02 07:49:28 -07:00
|
|
|
|
options.maxWidth = Math.round(options.maxWidth * ratio);
|
2014-04-11 08:36:25 -07:00
|
|
|
|
}
|
|
|
|
|
if (options.maxHeight) {
|
2014-05-02 07:49:28 -07:00
|
|
|
|
options.maxHeight = Math.round(options.maxHeight * ratio);
|
2014-04-11 08:36:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
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);
|
|
|
|
|
}
|
2014-04-11 08:36:25 -07:00
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2015-04-27 10:55:57 -07:00
|
|
|
|
options = options || {};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = "Users/" + userId + "/Images/" + options.type;
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (options.index != null) {
|
|
|
|
|
url += "/" + options.index;
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-05-23 18:16:53 -07:00
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.getUrl(url, options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
2014-05-23 18:16:53 -07:00
|
|
|
|
|
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);
|
|
|
|
|
};
|
2014-05-23 18:16:53 -07:00
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
self.getScaledImageUrl = function (itemId, options) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("itemId cannot be empty");
|
2013-03-21 13:20:00 -07:00
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
options = options || {};
|
2013-11-08 14:21:51 -07:00
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
var url = "Items/" + itemId + "/Images/" + options.type;
|
2013-03-21 13:20:00 -07:00
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
if (options.index != null) {
|
|
|
|
|
url += "/" + options.index;
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-05-23 18:16:53 -07:00
|
|
|
|
normalizeImageOptions(options);
|
|
|
|
|
|
2014-05-23 16:58:28 -07:00
|
|
|
|
// 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;
|
2014-05-23 16:58:28 -07:00
|
|
|
|
|
|
|
|
|
return self.getUrl(url, options);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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";
|
|
|
|
|
|
2015-10-18 14:41:39 -07:00
|
|
|
|
if (item.ImageTags && item.ImageTags.Thumb) {
|
2013-10-24 10:49:24 -07:00
|
|
|
|
|
2015-10-18 14:41:39 -07:00
|
|
|
|
options.tag = item.ImageTags.Thumb;
|
|
|
|
|
return self.getImageUrl(item.Id, options);
|
|
|
|
|
}
|
|
|
|
|
else if (item.ParentThumbItemId) {
|
|
|
|
|
|
|
|
|
|
options.tag = item.ImageTags.ParentThumbImageTag;
|
|
|
|
|
return self.getImageUrl(item.ParentThumbItemId, options);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-10-24 10:49:24 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2013-07-08 09:13:21 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
reject();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-07-08 09:13:21 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var url = self.getUrl("Users/authenticatebyname");
|
2013-07-08 09:13:21 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
require(["cryptojs-sha1"], function () {
|
|
|
|
|
var postData = {
|
|
|
|
|
password: CryptoJS.SHA1(password || "").toString(),
|
|
|
|
|
Username: name
|
|
|
|
|
};
|
2014-10-23 21:54:35 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -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-12-14 08:43:03 -07:00
|
|
|
|
}).then(function (result) {
|
2015-07-24 14:44:25 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (self.onAuthenticated) {
|
|
|
|
|
self.onAuthenticated(self, result);
|
|
|
|
|
}
|
2015-07-24 14:44:25 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
resolve(result);
|
2015-07-24 14:44:25 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
}, reject);
|
2015-09-09 10:49:44 -07:00
|
|
|
|
});
|
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-09 18:18:29 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
reject();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Password");
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
require(["cryptojs-sha1"], function () {
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: {
|
|
|
|
|
currentPassword: CryptoJS.SHA1(currentPassword).toString(),
|
|
|
|
|
newPassword: CryptoJS.SHA1(newPassword).toString()
|
|
|
|
|
}
|
|
|
|
|
}).then(resolve, reject);
|
2015-09-09 10:49:44 -07:00
|
|
|
|
});
|
2013-03-21 13:20:00 -07:00
|
|
|
|
});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
};
|
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-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2015-01-28 23:06:24 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
reject();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/EasyPassword");
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
require(["cryptojs-sha1"], function () {
|
2015-09-09 10:49:44 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: {
|
|
|
|
|
newPassword: CryptoJS.SHA1(newPassword).toString()
|
|
|
|
|
}
|
|
|
|
|
}).then(resolve, reject);
|
2015-09-09 10:49:44 -07:00
|
|
|
|
});
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Password");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
postData.resetPassword = true;
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: postData
|
|
|
|
|
});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!configuration) {
|
|
|
|
|
throw new Error("null configuration");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("System/Configuration");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Plugins/SecurityInfo");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(info),
|
|
|
|
|
contentType: "application/json"
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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) {
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2014-10-29 19:06:05 -07:00
|
|
|
|
var url = self.getUrl("Users/New");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!user) {
|
|
|
|
|
throw new Error("null user");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + user.Id);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(user),
|
|
|
|
|
contentType: "application/json"
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!triggers) {
|
|
|
|
|
throw new Error("null triggers");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("ScheduledTasks/" + id + "/Triggers");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(triggers),
|
|
|
|
|
contentType: "application/json"
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!id) {
|
|
|
|
|
throw new Error("null Id");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!configuration) {
|
|
|
|
|
throw new Error("null configuration");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Plugins/" + id + "/Configuration");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(configuration),
|
|
|
|
|
contentType: "application/json"
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-08-03 07:38:56 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-25 21:33:47 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-07-26 22:19:56 -07:00
|
|
|
|
self.getMovieRecommendations = function (options) {
|
|
|
|
|
|
|
|
|
|
return self.getJSON(self.getUrl('Movies/Recommendations', options));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.getUpcomingEpisodes = function (options) {
|
|
|
|
|
|
|
|
|
|
return self.getJSON(self.getUrl('Shows/Upcoming', options));
|
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-06-04 19:32:40 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-21 21:38:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2014-06-22 09:49:39 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-11 12:36:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-06-10 20:31:00 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-07-01 10:17:33 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-11 20:50:47 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-11 12:36:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-24 09:03:10 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-05-24 09:58:12 -07:00
|
|
|
|
self.getGameSystems = function () {
|
|
|
|
|
|
|
|
|
|
var options = {};
|
|
|
|
|
|
2016-06-15 23:20:12 -07:00
|
|
|
|
var userId = self.getCurrentUserId();
|
2016-05-24 09:58:12 -07:00
|
|
|
|
if (userId) {
|
|
|
|
|
options.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Games/SystemSummaries", options);
|
|
|
|
|
|
|
|
|
|
return self.getJSON(url);
|
|
|
|
|
};
|
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.getAdditionalVideoParts = function (userId, itemId) {
|
2013-06-12 14:46:50 -07:00
|
|
|
|
|
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
|
|
if (userId) {
|
|
|
|
|
options.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Videos/" + itemId + "/AdditionalParts", options);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-06-12 14:46:50 -07:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-04-28 10:21:56 -07:00
|
|
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
|
|
2016-08-03 22:00:39 -07:00
|
|
|
|
return self.getJSON(url).then(function (result) {
|
|
|
|
|
var serverId = self.serverId();
|
|
|
|
|
result.SearchHints.forEach(function (i) {
|
|
|
|
|
i.ServerId = serverId;
|
|
|
|
|
});
|
|
|
|
|
return result;
|
|
|
|
|
});
|
2013-03-25 21:33:47 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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");
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-03-21 13:20:00 -07:00
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.getDateParamValue = function (date) {
|
2013-11-08 13:53:09 -07:00
|
|
|
|
|
2013-10-28 07:56:57 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-10-28 07:56:57 -07:00
|
|
|
|
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) {
|
2013-10-28 07:56:57 -07:00
|
|
|
|
|
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-10-28 07:56:57 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/PlayedItems/" + itemId);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
return self.ajax({
|
2013-10-28 07:56:57 -07:00
|
|
|
|
type: "DELETE",
|
2013-08-22 18:36:34 -07:00
|
|
|
|
url: url,
|
|
|
|
|
dataType: "json"
|
2013-03-21 13:20:00 -07:00
|
|
|
|
});
|
|
|
|
|
};
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
/**
|
2013-04-12 17:42:51 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-29 10:25:12 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/FavoriteItems/" + itemId);
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var method = isFavorite ? "POST" : "DELETE";
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-09 18:18:29 -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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating", {
|
|
|
|
|
likes: likes
|
|
|
|
|
});
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-03-09 18:18:29 -07:00
|
|
|
|
|
2013-11-08 14:21:51 -07:00
|
|
|
|
self.getItemCounts = function (userId) {
|
2013-05-13 22:36:36 -07:00
|
|
|
|
|
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
|
|
if (userId) {
|
|
|
|
|
options.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Items/Counts", options);
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-05-13 22:36:36 -07:00
|
|
|
|
};
|
|
|
|
|
|
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-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!userId) {
|
|
|
|
|
throw new Error("null userId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
if (!itemId) {
|
|
|
|
|
throw new Error("null itemId");
|
|
|
|
|
}
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
2013-03-21 13:20:00 -07:00
|
|
|
|
var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating");
|
2013-03-09 18:18:29 -07:00
|
|
|
|
|
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-12-14 08:43:03 -07:00
|
|
|
|
return new Promise(function (resolve, reject) {
|
2014-03-21 20:35:03 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
var msg = JSON.stringify(options);
|
|
|
|
|
self.sendWebSocketMessage("ReportPlaybackProgress", msg);
|
|
|
|
|
resolve();
|
|
|
|
|
});
|
2013-05-10 05:18:07 -07:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
});
|
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2015-09-14 12:47:03 -07:00
|
|
|
|
};
|
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-12 10:27:53 -07:00
|
|
|
|
var url = self.getUrl("Sessions/" + sessionId + "/Command");
|
2013-08-27 21:16:21 -07:00
|
|
|
|
|
2014-04-12 10:27:53 -07:00
|
|
|
|
var ajaxOptions = {
|
2013-08-27 21:16:21 -07:00
|
|
|
|
type: "POST",
|
|
|
|
|
url: url
|
2014-04-12 10:27:53 -07:00
|
|
|
|
};
|
|
|
|
|
|
2014-04-27 18:57:29 -07:00
|
|
|
|
ajaxOptions.data = JSON.stringify(command);
|
2014-04-12 10:27:53 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-30 09:49:40 -07:00
|
|
|
|
var url = self.getUrl("Packages/" + packageId + "/Reviews", options);
|
2013-11-08 13:53:09 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
return self.getJSON(url);
|
2013-11-08 13:53:09 -07:00
|
|
|
|
};
|
2016-02-09 10:13:38 -07:00
|
|
|
|
|
|
|
|
|
self.getSmartMatchInfos = function (options) {
|
|
|
|
|
|
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
|
|
var url = self.getUrl("Library/FileOrganizations/SmartMatches", options);
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "GET",
|
|
|
|
|
url: url,
|
|
|
|
|
dataType: "json"
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-12 23:19:28 -07:00
|
|
|
|
self.deleteSmartMatchEntries = function (entries) {
|
2016-02-09 10:13:38 -07:00
|
|
|
|
|
2016-02-12 23:39:23 -07:00
|
|
|
|
var url = self.getUrl("Library/FileOrganizations/SmartMatches/Delete");
|
2016-02-09 10:13:38 -07:00
|
|
|
|
|
|
|
|
|
var postData = {
|
2016-02-12 23:19:28 -07:00
|
|
|
|
Entries: entries
|
2016-02-09 10:13:38 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: url,
|
|
|
|
|
data: JSON.stringify(postData),
|
|
|
|
|
contentType: "application/json"
|
|
|
|
|
});
|
|
|
|
|
};
|
2016-02-21 10:22:41 -07:00
|
|
|
|
|
|
|
|
|
self.createPin = function () {
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: "POST",
|
|
|
|
|
url: self.getUrl('Auth/Pin'),
|
|
|
|
|
data: {
|
|
|
|
|
deviceId: self.deviceId(),
|
|
|
|
|
appName: self.appName()
|
|
|
|
|
},
|
|
|
|
|
dataType: "json"
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.getPinStatus = function (pinInfo) {
|
|
|
|
|
|
|
|
|
|
var queryString = {
|
|
|
|
|
deviceId: pinInfo.DeviceId,
|
|
|
|
|
pin: pinInfo.Pin
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: 'GET',
|
|
|
|
|
url: self.getUrl('Auth/Pin', queryString),
|
|
|
|
|
dataType: 'json'
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function exchangePin(pinInfo) {
|
|
|
|
|
|
|
|
|
|
return self.ajax({
|
|
|
|
|
type: 'POST',
|
|
|
|
|
url: self.getUrl('Auth/Pin/Exchange'),
|
|
|
|
|
data: {
|
|
|
|
|
deviceId: pinInfo.DeviceId,
|
|
|
|
|
pin: pinInfo.Pin
|
|
|
|
|
},
|
|
|
|
|
dataType: 'json'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self.exchangePin = function (pinInfo) {
|
|
|
|
|
|
|
|
|
|
return exchangePin(pinInfo).then(function (result) {
|
|
|
|
|
|
|
|
|
|
if (self.onAuthenticated) {
|
|
|
|
|
self.onAuthenticated(self, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
};
|
2013-11-08 13:53:09 -07:00
|
|
|
|
};
|
2015-12-23 10:46:01 -07:00
|
|
|
|
});
|