12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334 |
- /**
- * Represents a javascript version of ApiClient.
- * This should be kept up to date with all possible api methods and parameters
- */
- var ApiClient = {
- serverProtocol: "http",
- /**
- * Gets or sets the host name of the server
- */
- serverHostName: "localhost",
- serverPortNumber: 8096,
- /**
- * Detects the hostname and port of MB server based on the current url
- */
- inferServerFromUrl: function () {
- var loc = window.location;
- ApiClient.serverProtocol = loc.protocol;
- ApiClient.serverHostName = loc.hostname;
- ApiClient.serverPortNumber = loc.port;
- },
- /**
- * Creates an api url based on a handler name and query string parameters
- * @param {String} name
- * @param {Object} params
- */
- getUrl: function (name, params) {
- if (!name) {
- throw new Error("Url name cannot be empty");
- }
- params = params || {};
- var url = ApiClient.serverProtocol + "//" + ApiClient.serverHostName + ":" + ApiClient.serverPortNumber + "/mediabrowser/" + name;
- if (params) {
- url += "?" + $.param(params);
- }
- return url;
- },
- /**
- * Returns the name of the current browser
- */
- getDeviceName: function () {
- /*if ($.browser.chrome) {
- return "Chrome";
- }
- if ($.browser.safari) {
- return "Safari";
- }
- if ($.browser.webkit) {
- return "WebKit";
- }
- if ($.browser.msie) {
- return "Internet Explorer";
- }
- if ($.browser.firefox) {
- return "Firefox";
- }
- if ($.browser.mozilla) {
- return "Firefox";
- }
- if ($.browser.opera) {
- return "Opera";
- }*/
- return "Web Browser";
- },
- /**
- * Creates a custom api url based on a handler name and query string parameters
- * @param {String} name
- * @param {Object} params
- */
- getCustomUrl: function (name, params) {
- if (!name) {
- throw new Error("Url name cannot be empty");
- }
- params = params || {};
- params.client = "Dashboard";
- params.device = ApiClient.getDeviceName();
- params.format = "json";
- var url = ApiClient.serverProtocol + "//" + ApiClient.serverHostName + ":" + ApiClient.serverPortNumber + "/mediabrowser/" + name;
- if (params) {
- url += "?" + $.param(params);
- }
- return url;
- },
- /**
- * Gets an item from the server
- * Omit itemId to get the root folder.
- */
- getItem: function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Items/" + itemId);
- return $.getJSON(url);
- },
- /**
- * Gets the root folder from the server
- */
- getRootFolder: function (userId) {
- return ApiClient.getItem(userId);
- },
- /**
- * Gets the current server status
- */
- getSystemInfo: function () {
- var url = ApiClient.getUrl("System/Info");
- return $.getJSON(url);
- },
- /**
- * Gets all cultures known to the server
- */
- getCultures: function () {
- var url = ApiClient.getUrl("Localization/cultures");
- return $.getJSON(url);
- },
- /**
- * Gets all countries known to the server
- */
- getCountries: function () {
- var url = ApiClient.getUrl("Localization/countries");
- return $.getJSON(url);
- },
- /**
- * Gets plugin security info
- */
- getPluginSecurityInfo: function () {
- var url = ApiClient.getUrl("Plugins/SecurityInfo");
- return $.getJSON(url);
- },
- /**
- * Gets the directory contents of a path on the server
- */
- getDirectoryContents: function (path, options) {
- if (!path) {
- throw new Error("null path");
- }
- options = options || {};
- options.path = path;
- var url = ApiClient.getUrl("Environment/DirectoryContents", options);
- return $.getJSON(url);
- },
- /**
- * Gets a list of physical drives from the server
- */
- getDrives: function () {
- var url = ApiClient.getUrl("Environment/Drives");
- return $.getJSON(url);
- },
- /**
- * Gets a list of network computers from the server
- */
- getNetworkComputers: function () {
- var url = ApiClient.getUrl("Environment/NetworkComputers");
- return $.getJSON(url);
- },
- /**
- * Cancels a package installation
- */
- cancelPackageInstallation: function (installationId) {
- if (!installationId) {
- throw new Error("null installationId");
- }
- var url = ApiClient.getUrl("Packages/Installing/" + id);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Installs or updates a new plugin
- */
- installPlugin: function (name, updateClass, version) {
- if (!name) {
- throw new Error("null name");
- }
- if (!updateClass) {
- throw new Error("null updateClass");
- }
- var options = {
- updateClass: updateClass
- };
- if (version) {
- options.version = version;
- }
- var url = ApiClient.getUrl("Packages/Installed/" + name, options);
- return $.post(url);
- },
- /**
- * Instructs the server to perform a pending kernel reload or app restart.
- * If a restart is not currently required, nothing will happen.
- */
- performPendingRestart: function () {
- var url = ApiClient.getUrl("System/Restart");
- return $.post(url);
- },
- /**
- * Gets information about an installable package
- */
- getPackageInfo: function (name) {
- if (!name) {
- throw new Error("null name");
- }
- var url = ApiClient.getUrl("Packages/" + name);
- return $.getJSON(url);
- },
- /**
- * Gets the latest available application update (if any)
- */
- getAvailableApplicationUpdate: function () {
- var url = ApiClient.getUrl("Packages/Updates", { PackageType: "System" });
- return $.getJSON(url);
- },
- /**
- * Gets the latest available plugin updates (if any)
- */
- getAvailablePluginUpdates: function () {
- var url = ApiClient.getUrl("Packages/Updates", { PackageType: "UserInstalled" });
- return $.getJSON(url);
- },
- /**
- * Gets the virtual folder for a view. Specify a userId to get a user view, or omit for the default view.
- */
- getVirtualFolders: function (userId) {
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url = ApiClient.getUrl(url);
- return $.getJSON(url);
- },
- /**
- * Gets all the paths of the locations in the physical root.
- */
- getPhysicalPaths: function () {
- var url = ApiClient.getUrl("Library/PhysicalPaths");
- return $.getJSON(url);
- },
- /**
- * Gets the current server configuration
- */
- getServerConfiguration: function () {
- var url = ApiClient.getUrl("System/Configuration");
- return $.getJSON(url);
- },
- /**
- * Gets the server's scheduled tasks
- */
- getScheduledTasks: function () {
- var url = ApiClient.getUrl("ScheduledTasks");
- return $.getJSON(url);
- },
- /**
- * Starts a scheduled task
- */
- startScheduledTask: function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = ApiClient.getUrl("ScheduledTasks/Running/" + id);
- return $.post(url);
- },
- /**
- * Gets a scheduled task
- */
- getScheduledTask: function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = ApiClient.getUrl("ScheduledTasks/" + id);
- return $.getJSON(url);
- },
- /**
- * Stops a scheduled task
- */
- stopScheduledTask: function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = ApiClient.getUrl("ScheduledTasks/Running/" + id);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Gets the configuration of a plugin
- * @param {String} Id
- */
- getPluginConfiguration: function (id) {
- if (!id) {
- throw new Error("null Id");
- }
- var url = ApiClient.getUrl("Plugins/" + id + "/Configuration");
- return $.getJSON(url);
- },
- /**
- * Gets a list of plugins that are available to be installed
- */
- getAvailablePlugins: function () {
- var url = ApiClient.getUrl("Packages", { PackageType: "UserInstalled" });
- return $.getJSON(url);
- },
- /**
- * Uninstalls a plugin
- * @param {String} Id
- */
- uninstallPlugin: function (id) {
- if (!id) {
- throw new Error("null Id");
- }
- var url = ApiClient.getUrl("Plugins/" + id);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Removes a virtual folder from either the default view or a user view
- * @param {String} name
- */
- removeVirtualFolder: function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url += "/" + name;
- url = ApiClient.getUrl(url);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Adds a virtual folder to either the default view or a user view
- * @param {String} name
- */
- addVirtualFolder: function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url += "/" + name;
- url = ApiClient.getUrl(url);
- return $.post(url);
- },
- /**
- * Renames a virtual folder, within either the default view or a user view
- * @param {String} name
- */
- renameVirtualFolder: function (name, newName, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url += "/" + name + "/Name";
- url = ApiClient.getUrl(url, { newName: newName });
- return $.post(url);
- },
- /**
- * Adds an additional mediaPath to an existing virtual folder, within either the default view or a user view
- * @param {String} name
- */
- addMediaPath: function (virtualFolderName, mediaPath, userId) {
- if (!virtualFolderName) {
- throw new Error("null virtualFolderName");
- }
- if (!mediaPath) {
- throw new Error("null mediaPath");
- }
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url += "/" + virtualFolderName + "/Paths";
- url = ApiClient.getUrl(url, { path: mediaPath });
- return $.post(url);
- },
- /**
- * Removes a media path from a virtual folder, within either the default view or a user view
- * @param {String} name
- */
- removeMediaPath: function (virtualFolderName, mediaPath, userId) {
- if (!virtualFolderName) {
- throw new Error("null virtualFolderName");
- }
- if (!mediaPath) {
- throw new Error("null mediaPath");
- }
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url += "/" + virtualFolderName + "/Paths";
- url = ApiClient.getUrl(url, { path: mediaPath });
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Deletes a user
- * @param {String} id
- */
- deleteUser: function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = ApiClient.getUrl("Users/" + id);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * Deletes a user image
- * @param {String} userId
- * @param {String} imageType The type of image to delete, based on the server-side ImageType enum.
- */
- deleteUserImage: function (userId, imageType) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!imageType) {
- throw new Error("null imageType");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Images/" + imageType);
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- },
- /**
- * 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
- */
- uploadUserImage: function (userId, imageType, file) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!imageType) {
- throw new Error("null imageType");
- }
- if (!file || !file.type.match('image.*')) {
- throw new Error("File must be an image.");
- }
- var deferred = $.Deferred();
- var reader = new FileReader();
- reader.onerror = function () {
- deferred.reject();
- };
- reader.onabort = function () {
- deferred.reject();
- };
- // Closure to capture the file information.
- reader.onload = function (e) {
- var data = window.btoa(e.target.result);
- var url = ApiClient.getUrl("Users/" + userId + "/Images/" + imageType);
- $.ajax({
- type: "POST",
- url: url,
- data: data,
- contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
- }).done(function (result) {
- deferred.resolveWith(null, [result]);
- }).fail(function () {
- deferred.reject();
- });
- };
- // Read in the image file as a data URL.
- reader.readAsBinaryString(file);
- return deferred.promise();
- },
- /**
- * Gets the list of installed plugins on the server
- */
- getInstalledPlugins: function () {
- var url = ApiClient.getUrl("Plugins");
- return $.getJSON(url);
- },
- /**
- * Gets a user by id
- * @param {String} id
- */
- getUser: function (id) {
- if (!id) {
- throw new Error("Must supply a userId");
- }
- var url = ApiClient.getUrl("Users/" + id);
- return $.getJSON(url);
- },
- /**
- * Gets a studio
- */
- getStudio: function (name) {
- if (!name) {
- throw new Error("null name");
- }
- var url = ApiClient.getUrl("Library/Studios/" + name);
- return $.getJSON(url);
- },
- /**
- * Gets a genre
- */
- getGenre: function (name) {
- if (!name) {
- throw new Error("null name");
- }
- var url = ApiClient.getUrl("Library/Genres/" + name);
- return $.getJSON(url);
- },
- /**
- * Gets a year
- */
- getYear: function (year) {
- if (!year) {
- throw new Error("null year");
- }
- var url = ApiClient.getUrl("Library/Years/" + year);
- return $.getJSON(url);
- },
- /**
- * Gets a Person
- */
- getPerson: function (name) {
- if (!name) {
- throw new Error("null name");
- }
- var url = ApiClient.getUrl("Library/Persons/" + name);
- return $.getJSON(url);
- },
- /**
- * Gets weather info
- * @param {String} location - us zip code / city, state, country / city, country
- * Omit location to get weather info using stored server configuration value
- */
- getWeatherInfo: function (location) {
- var url = ApiClient.getUrl("weather", {
- location: location
- });
- return $.getJSON(url);
- },
- /**
- * Gets all users from the server
- */
- getAllUsers: function () {
- var url = ApiClient.getUrl("users");
- return $.getJSON(url);
- },
- /**
- * Gets all available parental ratings from the server
- */
- getParentalRatings: function () {
- var url = ApiClient.getUrl("Localization/ParentalRatings");
- return $.getJSON(url);
- },
- /**
- * Gets a list of all available conrete BaseItem types from the server
- */
- getItemTypes: function (options) {
- var url = ApiClient.getUrl("Library/ItemTypes", options);
- return $.getJSON(url);
- },
- /**
- * 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.
- */
- getUserImageUrl: function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {
- };
- var url = "Users/" + userId + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * Constructs a url for a person image
- * @param {String} name
- * @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.
- */
- getPersonImageUrl: function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Persons/" + name + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * Constructs a url for a year image
- * @param {String} year
- * @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.
- */
- getYearImageUrl: function (year, options) {
- if (!year) {
- throw new Error("null year");
- }
- options = options || {
- };
- var url = "Years/" + year + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * Constructs a url for a genre image
- * @param {String} name
- * @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.
- */
- getGenreImageUrl: function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Genres/" + name + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * Constructs a url for a genre image
- * @param {String} name
- * @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.
- */
- getStudioImageUrl: function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Studios/" + name + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * 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.
- */
- getImageUrl: function (itemId, options) {
- if (!itemId) {
- throw new Error("itemId cannot be empty");
- }
- options = options || {
- };
- var url = "Items/" + itemId + "/Images/" + options.type;
- if (options.index != null) {
- url += "/" + options.index;
- }
- // Don't put these on the query string
- delete options.type;
- delete options.index;
- return ApiClient.getUrl(url, options);
- },
- /**
- * Constructs a url for an item logo image
- * If the item doesn't have a logo, it will inherit a logo from a parent
- * @param {Object} item A BaseItem
- * @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.
- */
- getLogoImageUrl: function (item, options) {
- if (!item) {
- throw new Error("null item");
- }
- options = options || {
- };
- options.imageType = "logo";
- var logoItemId = item.HasLogo ? item.Id : item.ParentLogoItemId;
- return logoItemId ? ApiClient.getImageUrl(logoItemId, options) : null;
- },
- /**
- * Constructs an array of backdrop image url's for an item
- * If the item doesn't have any backdrops, it will inherit them from a parent
- * @param {Object} item A BaseItem
- * @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.
- */
- getBackdropImageUrl: function (item, options) {
- if (!item) {
- throw new Error("null item");
- }
- options = options || {
- };
- options.imageType = "backdrop";
- var backdropItemId;
- var backdropCount;
- if (!item.BackdropCount) {
- backdropItemId = item.ParentBackdropItemId;
- backdropCount = item.ParentBackdropCount || 0;
- } else {
- backdropItemId = item.Id;
- backdropCount = item.BackdropCount;
- }
- if (!backdropItemId) {
- return [];
- }
- var files = [];
- for (var i = 0; i < backdropCount; i++) {
- options.imageIndex = i;
- files[i] = ApiClient.getImageUrl(backdropItemId, options);
- }
- return files;
- },
- /**
- * Authenticates a user
- * @param {String} userId
- * @param {String} password
- */
- authenticateUser: function (userId, password) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/authenticate");
- var postData = {
- };
- if (password) {
- postData.password = password;
- }
- return $.post(url, postData);
- },
- /**
- * Updates a user's password
- * @param {String} userId
- * @param {String} currentPassword
- * @param {String} newPassword
- */
- updateUserPassword: function (userId, currentPassword, newPassword) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Password");
- var postData = {
- };
- if (currentPassword) {
- postData.currentPassword = currentPassword;
- }
- if (newPassword) {
- postData.newPassword = newPassword;
- }
- return $.post(url, postData);
- },
- /**
- * Resets a user's password
- * @param {String} userId
- */
- resetUserPassword: function (userId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Password");
- var postData = {
- };
- postData.resetPassword = 1;
- return $.post(url, postData);
- },
- /**
- * Updates the server's configuration
- * @param {Object} configuration
- */
- updateServerConfiguration: function (configuration) {
- if (!configuration) {
- throw new Error("null configuration");
- }
- var url = ApiClient.getUrl("System/Configuration");
- return $.post(url, JSON.stringify(configuration));
- },
- /**
- * Creates a user
- * @param {Object} user
- */
- createUser: function (user) {
- if (!user) {
- throw new Error("null user");
- }
- var url = ApiClient.getUrl("Users");
- return $.post(url, JSON.stringify(user));
- },
- /**
- * Updates a user
- * @param {Object} user
- */
- updateUser: function (user) {
- if (!user) {
- throw new Error("null user");
- }
- var url = ApiClient.getUrl("Users/" + user.Id);
- return $.post(url, JSON.stringify(user));
- },
- /**
- * Updates the Triggers for a ScheduledTask
- * @param {String} id
- * @param {Object} triggers
- */
- updateScheduledTaskTriggers: function (id, triggers) {
- if (!id) {
- throw new Error("null id");
- }
- if (!triggers) {
- throw new Error("null triggers");
- }
- var url = ApiClient.getUrl("ScheduledTasks/" + id + "/Triggers");
- return $.post(url, JSON.stringify(triggers));
- },
- /**
- * Updates a plugin's configuration
- * @param {String} Id
- * @param {Object} configuration
- */
- updatePluginConfiguration: function (id, configuration) {
- if (!id) {
- throw new Error("null Id");
- }
- if (!configuration) {
- throw new Error("null configuration");
- }
- var url = ApiClient.getUrl("Plugins/" + id + "/Configuration");
- return $.post(url, JSON.stringify(configuration));
- },
- /**
- * Gets items based on a query, typicall for children of a folder
- * @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
- */
- getItems: function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- return $.getJSON(ApiClient.getUrl("Users/" + userId + "/Items", options));
- },
- /**
- * Marks an item as played or unplayed
- * This should not be used to update playstate following playback.
- * There are separate playstate check-in methods for that. This should be used for a
- * separate option to reset playstate.
- * @param {String} userId
- * @param {String} itemId
- * @param {Boolean} wasPlayed
- */
- updatePlayedStatus: function (userId, itemId, wasPlayed) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = "Users/" + userId + "/PlayedItems/" + itemId;
- var method = wasPlayed ? "POST" : "DELETE";
- return $.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- },
- /**
- * Updates a user's favorite status for an item and returns the updated UserItemData object.
- * @param {String} userId
- * @param {String} itemId
- * @param {Boolean} isFavorite
- */
- updateFavoriteStatus: function (userId, itemId, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = "Users/" + userId + "/FavoriteItems/" + itemId;
- var method = isFavorite ? "POST" : "DELETE";
- return $.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- },
- /**
- * Updates a user's personal rating for an item
- * @param {String} userId
- * @param {String} itemId
- * @param {Boolean} likes
- */
- updateUserItemRating: function (userId, itemId, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating", {
- likes: likes
- });
- return $.post(url);
- },
- /**
- * Clears a user's personal rating for an item
- * @param {String} userId
- * @param {String} itemId
- */
- clearUserItemRating: function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = ApiClient.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating");
- return $.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- }
- };
- // Do this initially. The consumer can always override later
- ApiClient.inferServerFromUrl();
|