123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317 |
- if (!window.MediaBrowser) {
- window.MediaBrowser = {};
- }
- MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, window, FileReader) {
- /**
- * Creates a new api client instance
- * @param {String} serverAddress
- * @param {String} clientName
- * @param {String} applicationVersion
- */
- return function (serverAddress, clientName, applicationVersion) {
- if (!serverAddress) {
- throw new Error("Must supply a serverAddress");
- }
- var self = this;
- var deviceName = "Web Browser";
- var deviceId = MediaBrowser.SHA1(navigator.userAgent + (navigator.cpuClass || ""));
- var currentUserId;
- var webSocket;
- /**
- * Gets the server address.
- */
- self.serverAddress = function () {
- return serverAddress;
- };
- /**
- * Gets or sets the current user id.
- */
- self.currentUserId = function (val) {
- if (val !== undefined) {
- currentUserId = val;
- } else {
- return currentUserId;
- }
- };
- deviceName = (function () {
- var name = "";
- if ($.browser.chrome) {
- name = "Chrome";
- } else if ($.browser.safari) {
- name = "Safari";
- } else if ($.browser.webkit) {
- name = "WebKit";
- } else if ($.browser.msie) {
- name = "Internet Explorer";
- } else if ($.browser.opera) {
- name = "Opera";
- } else if ($.browser.firefox || $.browser.mozilla) {
- name = "Firefox";
- }
- if (name) {
- if ($.browser.version) {
- name += " " + $.browser.version;
- }
- } else {
- name = "Web Browser";
- }
- if ($.browser.ipad) {
- name += " Ipad";
- } else if ($.browser.iphone) {
- name += " Iphone";
- } else if ($.browser.android) {
- name += " Android";
- }
- return name;
- }());
- self.deviceId = function () {
- return deviceId;
- };
- self.encodeName = function (name) {
- name = name.split('/').join('-');
- name = name.split('?').join('-');
- var val = $.param({ name: name });
- return val.substring(val.indexOf('=') + 1).replace("'", '%27');
- };
- /**
- * Wraps around jQuery ajax methods to add additional info to the request.
- */
- self.ajax = function (request) {
- if (!request) {
- throw new Error("Request cannot be null");
- }
- if (clientName) {
- var auth = 'MediaBrowser Client="' + clientName + '", Device="' + deviceName + '", DeviceId="' + deviceId + '", Version="' + applicationVersion + '"';
- if (currentUserId) {
- auth += ', UserId="' + currentUserId + '"';
- }
- request.headers = {
- Authorization: auth
- };
- }
- return $.ajax(request);
- };
- /**
- * Creates an api url based on a handler name and query string parameters
- * @param {String} name
- * @param {Object} params
- */
- self.getUrl = function (name, params) {
- if (!name) {
- throw new Error("Url name cannot be empty");
- }
- var url = serverAddress;
- url += "/mediabrowser/" + name;
- if (params) {
- url += "?" + $.param(params);
- }
- return url;
- };
- self.openWebSocket = function (webSocketAddress) {
- var url = webSocketAddress + "/mediabrowser";
- webSocket = new WebSocket(url);
- webSocket.onmessage = function (msg) {
- msg = JSON.parse(msg.data);
- $(self).trigger("websocketmessage", [msg]);
- };
- webSocket.onopen = function () {
- setTimeout(function () {
- self.sendWebSocketMessage("Identity", clientName + "|" + deviceId + "|" + applicationVersion + "|" + deviceName);
- $(self).trigger("websocketopen");
- }, 500);
- };
- webSocket.onerror = function () {
- setTimeout(function () {
- $(self).trigger("websocketerror");
- }, 0);
- };
- webSocket.onclose = function () {
- setTimeout(function () {
- $(self).trigger("websocketclose");
- }, 0);
- };
- };
- self.closeWebSocket = function () {
- if (webSocket && webSocket.readyState === WebSocket.OPEN) {
- webSocket.close();
- }
- };
- self.sendWebSocketMessage = function (name, data) {
- var msg = { MessageType: name };
- if (data) {
- msg.Data = data;
- }
- msg = JSON.stringify(msg);
- webSocket.send(msg);
- };
- self.isWebSocketOpen = function () {
- return webSocket && webSocket.readyState === WebSocket.OPEN;
- };
- self.isWebSocketOpenOrConnecting = function () {
- return webSocket && (webSocket.readyState === WebSocket.OPEN || webSocket.readyState === WebSocket.CONNECTING);
- };
- self.getProductNews = function (options) {
- options = options || {};
- var url = self.getUrl("News/Product", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets an item from the server
- * Omit itemId to get the root folder.
- */
- self.getItem = function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the root folder from the server
- */
- self.getRootFolder = function (userId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/Root");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getNotificationSummary = function (userId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Notifications/" + userId + "/Summary");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getNotifications = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Notifications/" + userId, options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.markNotificationsRead = function (userId, idList, isRead) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!idList || !idList.length) {
- 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
- });
- };
- function getRemoteImagePrefix(options) {
- var urlPrefix;
- if (options.artist) {
- urlPrefix = "Artists/" + self.encodeName(options.artist);
- delete options.artist;
- } else if (options.person) {
- urlPrefix = "Persons/" + self.encodeName(options.person);
- delete options.person;
- } else if (options.genre) {
- urlPrefix = "Genres/" + self.encodeName(options.genre);
- delete options.genre;
- } else if (options.musicGenre) {
- urlPrefix = "MusicGenres/" + self.encodeName(options.musicGenre);
- delete options.musicGenre;
- } else if (options.gameGenre) {
- urlPrefix = "GameGenres/" + self.encodeName(options.gameGenre);
- delete options.gameGenre;
- } else if (options.studio) {
- urlPrefix = "Studios/" + self.encodeName(options.studio);
- delete options.studio;
- } else {
- urlPrefix = "Items/" + options.itemId;
- delete options.itemId;
- }
- return urlPrefix;
- }
- self.getRemoteImageProviders = function (options) {
- if (!options) {
- throw new Error("null options");
- }
- var urlPrefix = getRemoteImagePrefix(options);
- var url = self.getUrl(urlPrefix + "/RemoteImages/Providers", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getAvailableRemoteImages = function (options) {
- if (!options) {
- throw new Error("null options");
- }
- var urlPrefix = getRemoteImagePrefix(options);
- var url = self.getUrl(urlPrefix + "/RemoteImages", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.downloadRemoteImage = function (options) {
- if (!options) {
- throw new Error("null options");
- }
- var urlPrefix = getRemoteImagePrefix(options);
- var url = self.getUrl(urlPrefix + "/RemoteImages/Download", options);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.getLiveTvInfo = function (options) {
- var url = self.getUrl("LiveTv/Info", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvGuideInfo = function (options) {
- var url = self.getUrl("LiveTv/GuideInfo", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvChannel = function (id, userId) {
- if (!id) {
- throw new Error("null id");
- }
- var options = {
- };
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("LiveTv/Channels/" + id, options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvChannels = function (options) {
- var url = self.getUrl("LiveTv/Channels", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvPrograms = function (options) {
- options = options || {};
- if (options.channelIds && options.channelIds.length > 1800) {
- return self.ajax({
- type: "POST",
- url: self.getUrl("LiveTv/Programs"),
- data: JSON.stringify(options),
- contentType: "application/json",
- dataType: "json"
- });
- } else {
- return self.ajax({
- type: "GET",
- url: self.getUrl("LiveTv/Programs", options),
- dataType: "json"
- });
- }
- };
- self.getLiveTvRecommendedPrograms = function (options) {
- options = options || {};
- return self.ajax({
- type: "GET",
- url: self.getUrl("LiveTv/Programs/Recommended", options),
- dataType: "json"
- });
- };
- self.getLiveTvRecordings = function (options) {
- var url = self.getUrl("LiveTv/Recordings", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvRecordingGroups = function (options) {
- var url = self.getUrl("LiveTv/Recordings/Groups", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvRecordingGroup = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/Recordings/Groups/" + id);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvRecording = function (id, userId) {
- if (!id) {
- throw new Error("null id");
- }
- var options = {
- };
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("LiveTv/Recordings/" + id, options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvProgram = function (id, userId) {
- if (!id) {
- throw new Error("null id");
- }
- var options = {
- };
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("LiveTv/Programs/" + id, options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.deleteLiveTvRecording = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/Recordings/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.cancelLiveTvTimer = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/Timers/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.getLiveTvTimers = function (options) {
- var url = self.getUrl("LiveTv/Timers", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getLiveTvTimer = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/Timers/" + id);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getNewLiveTvTimerDefaults = function (options) {
- options = options || {};
- var url = self.getUrl("LiveTv/Timers/Defaults", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.createLiveTvTimer = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("LiveTv/Timers");
- return self.ajax({
- type: "POST",
- 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"
- });
- };
- 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
- });
- };
- self.getLiveTvSeriesTimers = function (options) {
- var url = self.getUrl("LiveTv/SeriesTimers", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getFileOrganizationResults = function (options) {
- var url = self.getUrl("Library/FileOrganization", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.deleteOriginalFileFromOrganizationResult = function (id) {
- var url = self.getUrl("Library/FileOrganizations/" + id + "/File");
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.clearOrganizationLog = function () {
- var url = self.getUrl("Library/FileOrganizations");
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.performOrganization = function (id) {
- var url = self.getUrl("Library/FileOrganizations/" + id + "/Organize");
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.performEpisodeOrganization = function (id, options) {
- var url = self.getUrl("Library/FileOrganizations/" + id + "/Episode/Organize", options || {});
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.getLiveTvSeriesTimer = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/SeriesTimers/" + id);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.cancelLiveTvSeriesTimer = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("LiveTv/SeriesTimers/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- 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"
- });
- };
- /**
- * Gets the current server status
- */
- self.getSystemInfo = function () {
- var url = self.getUrl("System/Info");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getInstantMixFromSong = function (itemId, options) {
- var url = self.getUrl("Songs/" + itemId + "/InstantMix", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getInstantMixFromAlbum = function (itemId, options) {
- var url = self.getUrl("Albums/" + itemId + "/InstantMix", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getInstantMixFromArtist = function (name, options) {
- var url = self.getUrl("Artists/" + self.encodeName(name) + "/InstantMix", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getInstantMixFromMusicGenre = function (name, options) {
- var url = self.getUrl("MusicGenres/" + self.encodeName(name) + "/InstantMix", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getEpisodes = function (itemId, options) {
- var url = self.getUrl("Shows/" + itemId + "/Episodes", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSeasons = function (itemId, options) {
- var url = self.getUrl("Shows/" + itemId + "/Seasons", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSimilarMovies = function (itemId, options) {
- var url = self.getUrl("Movies/" + itemId + "/Similar", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSimilarTrailers = function (itemId, options) {
- var url = self.getUrl("Trailers/" + itemId + "/Similar", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSimilarShows = function (itemId, options) {
- var url = self.getUrl("Shows/" + itemId + "/Similar", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSimilarAlbums = function (itemId, options) {
- var url = self.getUrl("Albums/" + itemId + "/Similar", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSimilarGames = function (itemId, options) {
- var url = self.getUrl("Games/" + itemId + "/Similar", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets all cultures known to the server
- */
- self.getCultures = function () {
- var url = self.getUrl("Localization/cultures");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets all countries known to the server
- */
- self.getCountries = function () {
- var url = self.getUrl("Localization/countries");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets plugin security info
- */
- self.getPluginSecurityInfo = function () {
- var url = self.getUrl("Plugins/SecurityInfo");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the directory contents of a path on the server
- */
- self.getDirectoryContents = function (path, options) {
- if (!path) {
- throw new Error("null path");
- }
- options = options || {};
- options.path = path;
- var url = self.getUrl("Environment/DirectoryContents", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets shares from a network device
- */
- self.getNetworkShares = function (path) {
- if (!path) {
- throw new Error("null path");
- }
- var options = {};
- options.path = path;
- var url = self.getUrl("Environment/NetworkShares", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the parent of a given path
- */
- self.getParentPath = function (path) {
- if (!path) {
- throw new Error("null path");
- }
- var options = {};
- options.path = path;
- var url = self.getUrl("Environment/ParentPath", options);
- return self.ajax({
- type: "GET",
- url: url
- });
- };
- /**
- * Gets a list of physical drives from the server
- */
- self.getDrives = function () {
- var url = self.getUrl("Environment/Drives");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a list of network devices from the server
- */
- self.getNetworkDevices = function () {
- var url = self.getUrl("Environment/NetworkDevices");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Cancels a package installation
- */
- self.cancelPackageInstallation = function (installationId) {
- if (!installationId) {
- throw new Error("null installationId");
- }
- var url = self.getUrl("Packages/Installing/" + installationId);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Refreshes metadata for an item
- */
- self.refreshItem = function (itemId, force, recursive) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Items/" + itemId + "/Refresh", {
- forced: force || false,
- recursive: recursive || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshArtist = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Artists/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshGenre = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Genres/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshMusicGenre = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("MusicGenres/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshGameGenre = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("GameGenres/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshPerson = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Persons/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.refreshStudio = function (name, force) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Studios/" + self.encodeName(name) + "/Refresh", {
- forced: force || false
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Installs or updates a new plugin
- */
- self.installPlugin = function (name, guid, updateClass, version) {
- if (!name) {
- throw new Error("null name");
- }
- if (!updateClass) {
- throw new Error("null updateClass");
- }
- var options = {
- updateClass: updateClass,
- AssemblyGuid: guid
- };
- if (version) {
- options.version = version;
- }
- var url = self.getUrl("Packages/Installed/" + name, options);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Instructs the server to perform a restart.
- */
- self.restartServer = function () {
- var url = self.getUrl("System/Restart");
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Instructs the server to perform a shutdown.
- */
- self.shutdownServer = function () {
- var url = self.getUrl("System/Shutdown");
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Gets information about an installable package
- */
- self.getPackageInfo = function (name, guid) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {
- AssemblyGuid: guid
- };
- var url = self.getUrl("Packages/" + name, options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the latest available application update (if any)
- */
- self.getAvailableApplicationUpdate = function () {
- var url = self.getUrl("Packages/Updates", { PackageType: "System" });
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the latest available plugin updates (if any)
- */
- self.getAvailablePluginUpdates = function () {
- var url = self.getUrl("Packages/Updates", { PackageType: "UserInstalled" });
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the virtual folder list
- */
- self.getVirtualFolders = function (userId) {
- var url = userId ? "Users/" + userId + "/VirtualFolders" : "Library/VirtualFolders";
- url = self.getUrl(url);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets all the paths of the locations in the physical root.
- */
- self.getPhysicalPaths = function () {
- var url = self.getUrl("Library/PhysicalPaths");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the current server configuration
- */
- self.getServerConfiguration = function () {
- var url = self.getUrl("System/Configuration");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets the server's scheduled tasks
- */
- self.getScheduledTasks = function (options) {
- options = options || {};
- var url = self.getUrl("ScheduledTasks", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Starts a scheduled task
- */
- self.startScheduledTask = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("ScheduledTasks/Running/" + id);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Gets a scheduled task
- */
- self.getScheduledTask = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("ScheduledTasks/" + id);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getNextUpEpisodes = function (options) {
- var url = self.getUrl("Shows/NextUp", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Stops a scheduled task
- */
- self.stopScheduledTask = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("ScheduledTasks/Running/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Gets the configuration of a plugin
- * @param {String} Id
- */
- self.getPluginConfiguration = function (id) {
- if (!id) {
- throw new Error("null Id");
- }
- var url = self.getUrl("Plugins/" + id + "/Configuration");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a list of plugins that are available to be installed
- */
- self.getAvailablePlugins = function (options) {
- options = $.extend({}, options || {});
- options.PackageType = "UserInstalled";
- var url = self.getUrl("Packages", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Uninstalls a plugin
- * @param {String} Id
- */
- self.uninstallPlugin = function (id) {
- if (!id) {
- throw new Error("null Id");
- }
- var url = self.getUrl("Plugins/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Removes a virtual folder
- * @param {String} name
- */
- self.removeVirtualFolder = function (name, refreshLibrary) {
- if (!name) {
- throw new Error("null name");
- }
- var url = "Library/VirtualFolders";
- url = self.getUrl(url, {
- refreshLibrary: refreshLibrary ? true : false,
- name: name
- });
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Adds a virtual folder
- * @param {String} name
- */
- self.addVirtualFolder = function (name, type, refreshLibrary) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (type) {
- options.collectionType = type;
- }
- options.refreshLibrary = refreshLibrary ? true : false;
- options.name = name;
- var url = "Library/VirtualFolders";
- url = self.getUrl(url, options);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Renames a virtual folder
- * @param {String} name
- */
- self.renameVirtualFolder = function (name, newName, refreshLibrary) {
- if (!name) {
- throw new Error("null name");
- }
- var url = "Library/VirtualFolders/Name";
- url = self.getUrl(url, {
- refreshLibrary: refreshLibrary ? true : false,
- newName: newName,
- name: name
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Adds an additional mediaPath to an existing virtual folder
- * @param {String} name
- */
- self.addMediaPath = function (virtualFolderName, mediaPath, refreshLibrary) {
- if (!virtualFolderName) {
- throw new Error("null virtualFolderName");
- }
- if (!mediaPath) {
- throw new Error("null mediaPath");
- }
- var url = "Library/VirtualFolders/Paths";
- url = self.getUrl(url, {
- refreshLibrary: refreshLibrary ? true : false,
- path: mediaPath,
- name: virtualFolderName
- });
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Removes a media path from a virtual folder
- * @param {String} name
- */
- self.removeMediaPath = function (virtualFolderName, mediaPath, refreshLibrary) {
- if (!virtualFolderName) {
- throw new Error("null virtualFolderName");
- }
- if (!mediaPath) {
- throw new Error("null mediaPath");
- }
- var url = "Library/VirtualFolders/Paths";
- url = self.getUrl(url, {
- refreshLibrary: refreshLibrary ? true : false,
- path: mediaPath,
- name: virtualFolderName
- });
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Deletes a user
- * @param {String} id
- */
- self.deleteUser = function (id) {
- if (!id) {
- throw new Error("null id");
- }
- var url = self.getUrl("Users/" + id);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- /**
- * Deletes a user image
- * @param {String} userId
- * @param {String} imageType The type of image to delete, based on the server-side ImageType enum.
- */
- self.deleteUserImage = function (userId, imageType, imageIndex) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!imageType) {
- throw new Error("null imageType");
- }
- var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
- if (imageIndex != null) {
- url += "/" + imageIndex;
- }
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.deleteItemImage = function (itemId, itemType, itemName, imageType, imageIndex) {
- if (!imageType) {
- throw new Error("null imageType");
- }
- if (!itemType) {
- throw new Error("null itemType");
- }
- var url;
- if (itemType == "Artist") {
- url = self.getUrl("Artists/" + self.encodeName(itemName) + "/Images");
- }
- else if (itemType == "Genre") {
- url = self.getUrl("Genres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "GameGenre") {
- url = self.getUrl("GameGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "MusicGenre") {
- url = self.getUrl("MusicGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Person") {
- url = self.getUrl("Persons/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Studio") {
- url = self.getUrl("Studios/" + self.encodeName(itemName) + "/Images");
- } else {
- url = self.getUrl("Items/" + itemId + "/Images");
- }
- url += "/" + imageType;
- if (imageIndex != null) {
- url += "/" + imageIndex;
- }
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.deleteItem = function (itemId) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Items/" + itemId);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.stopActiveEncodings = function () {
- var url = self.getUrl("Videos/ActiveEncodings", {
- deviceId: deviceId
- });
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.updateItemImageIndex = function (itemId, itemType, itemName, imageType, imageIndex, newIndex) {
- if (!imageType) {
- throw new Error("null imageType");
- }
- if (!itemType) {
- throw new Error("null itemType");
- }
- var url;
- var options = { newIndex: newIndex };
- if (itemType == "Artist") {
- url = self.getUrl("Artists/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- }
- else if (itemType == "Genre") {
- url = self.getUrl("Genres/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- } else if (itemType == "GameGenre") {
- url = self.getUrl("GameGenres/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- } else if (itemType == "MusicGenre") {
- url = self.getUrl("MusicGenres/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- } else if (itemType == "Person") {
- url = self.getUrl("Persons/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- } else if (itemType == "Studio") {
- url = self.getUrl("Studios/" + self.encodeName(itemName) + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- } else {
- url = self.getUrl("Items/" + itemId + "/Images/" + imageType + "/" + imageIndex + "/Index", options);
- }
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.getItemImageInfos = function (itemId, itemType, itemName) {
- if (!itemType) {
- throw new Error("null itemType");
- }
- var url;
- if (itemType == "Artist") {
- url = self.getUrl("Artists/" + self.encodeName(itemName) + "/Images");
- }
- else if (itemType == "Genre") {
- url = self.getUrl("Genres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "GameGenre") {
- url = self.getUrl("GameGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "MusicGenre") {
- url = self.getUrl("MusicGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Person") {
- url = self.getUrl("Persons/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Studio") {
- url = self.getUrl("Studios/" + self.encodeName(itemName) + "/Images");
- } else {
- url = self.getUrl("Items/" + itemId + "/Images");
- }
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getCriticReviews = function (itemId, options) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Items/" + itemId + "/CriticReviews", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSessions = function (options) {
- var url = self.getUrl("Sessions", options);
- return self.ajax({
- type: "GET",
- 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
- */
- self.uploadUserImage = function (userId, imageType, file) {
- if (!userId) {
- throw new Error("null userId");
- }
- 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.");
- }
- 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) {
- // Split by a comma to remove the url: prefix
- var data = e.target.result.split(',')[1];
- var url = self.getUrl("Users/" + userId + "/Images/" + imageType);
- self.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.readAsDataURL(file);
- return deferred.promise();
- };
- self.uploadItemImage = function (itemId, itemType, itemName, imageType, file) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- if (!imageType) {
- throw new Error("null imageType");
- }
- if (!file) {
- throw new Error("File must be an image.");
- }
- if (file.type != "image/png" && file.type != "image/jpeg" && file.type != "image/jpeg") {
- throw new Error("File must be an image.");
- }
- var url;
- if (itemType == "Artist") {
- url = self.getUrl("Artists/" + self.encodeName(itemName) + "/Images");
- }
- else if (itemType == "Genre") {
- url = self.getUrl("Genres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "GameGenre") {
- url = self.getUrl("GameGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "MusicGenre") {
- url = self.getUrl("MusicGenres/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Person") {
- url = self.getUrl("Persons/" + self.encodeName(itemName) + "/Images");
- } else if (itemType == "Studio") {
- url = self.getUrl("Studios/" + self.encodeName(itemName) + "/Images");
- } else {
- url = self.getUrl("Items/" + itemId + "/Images");
- }
- url += "/" + imageType;
- 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) {
- // Split by a comma to remove the url: prefix
- var data = e.target.result.split(',')[1];
- self.ajax({
- type: "POST",
- url: url,
- data: data,
- contentType: "image/" + file.name.substring(file.name.lastIndexOf('.') + 1)
- }).done(function (result) {
- deferred.resolveWith(null, [result]);
- }).fail(function () {
- deferred.reject();
- });
- };
- // Read in the image file as a data URL.
- reader.readAsDataURL(file);
- return deferred.promise();
- };
- /**
- * Gets the list of installed plugins on the server
- */
- self.getInstalledPlugins = function () {
- var url = self.getUrl("Plugins");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a user by id
- * @param {String} id
- */
- self.getUser = function (id) {
- if (!id) {
- throw new Error("Must supply a userId");
- }
- var url = self.getUrl("Users/" + id);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a studio
- */
- self.getStudio = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Studios/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a genre
- */
- self.getGenre = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Genres/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getMusicGenre = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("MusicGenres/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getGameGenre = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("GameGenres/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets an artist
- */
- self.getArtist = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Artists/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a year
- */
- self.getYear = function (yea, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Years/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets a Person
- */
- self.getPerson = function (name, userId) {
- if (!name) {
- throw new Error("null name");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Persons/" + self.encodeName(name), options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getPublicUsers = function () {
- var url = self.getUrl("users/public");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets all users from the server
- */
- self.getUsers = function (options) {
- var url = self.getUrl("users", options || {});
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets all available parental ratings from the server
- */
- self.getParentalRatings = function () {
- var url = self.getUrl("Localization/ParentalRatings");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * 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.
- */
- self.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 self.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.
- */
- self.getPersonImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Persons/" + self.encodeName(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 self.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.
- */
- self.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 self.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.
- */
- self.getGenreImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Genres/" + self.encodeName(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 self.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.
- */
- self.getMusicGenreImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "MusicGenres/" + self.encodeName(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 self.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.
- */
- self.getGameGenreImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "GameGenres/" + self.encodeName(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 self.getUrl(url, options);
- };
- /**
- * Constructs a url for a artist 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.
- */
- self.getArtistImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Artists/" + self.encodeName(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 self.getUrl(url, options);
- };
- /**
- * Constructs a url for a studio 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.
- */
- self.getStudioImageUrl = function (name, options) {
- if (!name) {
- throw new Error("null name");
- }
- options = options || {
- };
- var url = "Studios/" + self.encodeName(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 self.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.
- */
- self.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 self.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.
- */
- self.getLogoImageUrl = function (item, options) {
- if (!item) {
- throw new Error("null item");
- }
- options = options || {
- };
- options.imageType = "logo";
- var logoItemId = item.ImageTags && item.ImageTags.Logo ? item.Id : item.ParentLogoItemId;
- return logoItemId ? self.getImageUrl(logoItemId, options) : null;
- };
- self.getThumbImageUrl = function (item, options) {
- if (!item) {
- throw new Error("null item");
- }
- options = options || {
- };
- options.imageType = "thumb";
- var itemId = item.ImageTags && item.ImageTags.Thumb ? item.Id : item.ParentThumbItemId;
- return itemId ? self.getImageUrl(itemId, 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.
- */
- self.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] = self.getImageUrl(backdropItemId, options);
- }
- return files;
- };
- /**
- * Authenticates a user
- * @param {String} name
- * @param {String} password
- */
- self.authenticateUserByName = function (name, password) {
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/authenticatebyname");
- var postData = {
- password: MediaBrowser.SHA1(password || ""),
- Username: name
- };
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(postData),
- dataType: "json",
- contentType: "application/json"
- });
- };
- /**
- * Authenticates a user
- * @param {String} userId
- * @param {String} password
- */
- self.authenticateUser = function (userId, password) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Users/" + userId + "/authenticate");
- var postData = {
- password: MediaBrowser.SHA1(password || "")
- };
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(postData),
- dataType: "json",
- contentType: "application/json"
- });
- };
- /**
- * Updates a user's password
- * @param {String} userId
- * @param {String} currentPassword
- * @param {String} newPassword
- */
- self.updateUserPassword = function (userId, currentPassword, newPassword) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Users/" + userId + "/Password");
- var postData = {
- };
- postData.currentPassword = MediaBrowser.SHA1(currentPassword);
- if (newPassword) {
- postData.newPassword = newPassword;
- }
- return self.ajax({
- type: "POST",
- url: url,
- data: postData
- });
- };
- /**
- * Resets a user's password
- * @param {String} userId
- */
- self.resetUserPassword = function (userId) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url = self.getUrl("Users/" + userId + "/Password");
- var postData = {
- };
- postData.resetPassword = true;
- return self.ajax({
- type: "POST",
- url: url,
- data: postData
- });
- };
- /**
- * Updates the server's configuration
- * @param {Object} configuration
- */
- self.updateServerConfiguration = function (configuration) {
- if (!configuration) {
- throw new Error("null configuration");
- }
- var url = self.getUrl("System/Configuration");
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(configuration),
- contentType: "application/json"
- });
- };
- self.updateItem = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("Items/" + item.Id);
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updateArtist = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("Artists/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updatePerson = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("Persons/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updateStudio = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("Studios/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updateGenre = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("Genres/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updateMusicGenre = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("MusicGenres/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- self.updateGameGenre = function (item) {
- if (!item) {
- throw new Error("null item");
- }
- var url = self.getUrl("GameGenres/" + self.encodeName(item.Name));
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(item),
- contentType: "application/json"
- });
- };
- /**
- * Updates plugin security info
- */
- self.updatePluginSecurityInfo = function (info) {
- var url = self.getUrl("Plugins/SecurityInfo");
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(info),
- contentType: "application/json"
- });
- };
- /**
- * Creates a user
- * @param {Object} user
- */
- self.createUser = function (user) {
- if (!user) {
- throw new Error("null user");
- }
- var url = self.getUrl("Users");
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(user),
- dataType: "json",
- contentType: "application/json"
- });
- };
- /**
- * Updates a user
- * @param {Object} user
- */
- self.updateUser = function (user) {
- if (!user) {
- throw new Error("null user");
- }
- var url = self.getUrl("Users/" + user.Id);
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(user),
- contentType: "application/json"
- });
- };
- /**
- * Updates the Triggers for a ScheduledTask
- * @param {String} id
- * @param {Object} triggers
- */
- self.updateScheduledTaskTriggers = function (id, triggers) {
- if (!id) {
- throw new Error("null id");
- }
- if (!triggers) {
- throw new Error("null triggers");
- }
- var url = self.getUrl("ScheduledTasks/" + id + "/Triggers");
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(triggers),
- contentType: "application/json"
- });
- };
- /**
- * Updates a plugin's configuration
- * @param {String} Id
- * @param {Object} configuration
- */
- self.updatePluginConfiguration = function (id, configuration) {
- if (!id) {
- throw new Error("null Id");
- }
- if (!configuration) {
- throw new Error("null configuration");
- }
- var url = self.getUrl("Plugins/" + id + "/Configuration");
- return self.ajax({
- type: "POST",
- url: url,
- data: JSON.stringify(configuration),
- contentType: "application/json"
- });
- };
- self.getAncestorItems = function (itemId, userId) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Items/" + itemId + "/Ancestors", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets items based on a query, typically 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
- */
- self.getItems = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- var url;
- if ((typeof userId).toString().toLowerCase() == 'string') {
- url = self.getUrl("Users/" + userId + "/Items", options);
- } else {
- options = userId;
- url = self.getUrl("Items", options || {});
- }
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- Gets artists from an item
- */
- self.getArtists = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("Artists", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- Gets genres from an item
- */
- self.getGenres = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("Genres", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getMusicGenres = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("MusicGenres", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getGameGenres = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("GameGenres", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- Gets people from an item
- */
- self.getPeople = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("Persons", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- Gets studios from an item
- */
- self.getStudios = function (userId, options) {
- if (!userId) {
- throw new Error("null userId");
- }
- options = options || {};
- options.userId = userId;
- var url = self.getUrl("Studios", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets local trailers for an item
- */
- self.getLocalTrailers = function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/LocalTrailers");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getAdditionalVideoParts = function (userId, itemId) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Videos/" + itemId + "/AdditionalParts", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets theme songs for an item
- */
- self.getThemeSongs = function (userId, itemId) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Items/" + itemId + "/ThemeSongs", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getThemeVideos = function (userId, itemId) {
- if (!itemId) {
- throw new Error("null itemId");
- }
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Items/" + itemId + "/ThemeVideos", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getSearchHints = function (options) {
- var url = self.getUrl("Search/Hints", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Gets special features for an item
- */
- self.getSpecialFeatures = function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/SpecialFeatures");
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- self.getDateParamValue = function (date) {
- 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());
- };
- self.markPlayed = function (userId, itemId, date) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var options = {};
- if (date) {
- options.DatePlayed = self.getDateParamValue(date);
- }
- var url = self.getUrl("Users/" + userId + "/PlayedItems/" + itemId, options);
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.markUnplayed = function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/PlayedItems/" + itemId);
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Updates a user's favorite status for an item.
- * @param {String} userId
- * @param {String} itemId
- * @param {Boolean} isFavorite
- */
- self.updateFavoriteStatus = function (userId, itemId, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/FavoriteItems/" + itemId);
- var method = isFavorite ? "POST" : "DELETE";
- return self.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
- */
- self.updateUserItemRating = function (userId, itemId, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating", {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Updates a user's favorite status for an item by name.
- * @param {String} userId
- * @param {String} name
- * @param {Boolean} isFavorite
- */
- self.updateFavoriteArtistStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/Artists/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- self.updateFavoritePersonStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/Persons/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- self.updateFavoriteStudioStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/Studios/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- self.updateFavoriteGenreStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/Genres/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- self.updateFavoriteMusicGenreStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/MusicGenres/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- self.updateFavoriteGameGenreStatus = function (userId, name, isFavorite) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Favorites/GameGenres/" + self.encodeName(name));
- var method = isFavorite ? "POST" : "DELETE";
- return self.ajax({
- type: method,
- url: url,
- dataType: "json"
- });
- };
- /**
- * Updates a user's rating for an item by name.
- * @param {String} userId
- * @param {String} name
- * @param {Boolean} likes
- */
- self.updateArtistRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Artists/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.updatePersonRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Persons/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.updateStudioRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Studios/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.updateGenreRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Genres/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.updateMusicGenreRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/MusicGenres/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- self.updateGameGenreRating = function (userId, name, likes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/GameGenres/" + self.encodeName(name), {
- likes: likes
- });
- return self.ajax({
- type: "POST",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Clears a user's rating for an item by name.
- * @param {String} userId
- * @param {String} name
- */
- self.clearArtistRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Artists/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.clearPersonRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Persons/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.clearStudioRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Studios/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.clearGenreRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/Genres/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.clearMusicGenreRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/MusicGenres/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.clearGameGenreRating = function (userId, name) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!name) {
- throw new Error("null name");
- }
- var url = self.getUrl("Users/" + userId + "/Ratings/GameGenres/" + self.encodeName(name));
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- self.getItemCounts = function (userId) {
- var options = {};
- if (userId) {
- options.userId = userId;
- }
- var url = self.getUrl("Items/Counts", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Clears a user's personal rating for an item
- * @param {String} userId
- * @param {String} itemId
- */
- self.clearUserItemRating = function (userId, itemId) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/Rating");
- return self.ajax({
- type: "DELETE",
- url: url,
- dataType: "json"
- });
- };
- /**
- * Reports the user has started playing something
- * @param {String} userId
- * @param {String} itemId
- */
- self.reportPlaybackStart = function (userId, itemId, mediaSourceId, canSeek, queueableMediaTypes) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- canSeek = canSeek || false;
- queueableMediaTypes = queueableMediaTypes || '';
- if (self.isWebSocketOpen()) {
- var deferred = $.Deferred();
- var msg = [itemId, canSeek, queueableMediaTypes];
- if (mediaSourceId) {
- msg.push(mediaSourceId);
- }
- self.sendWebSocketMessage("PlaybackStart", msg.join('|'));
- deferred.resolveWith(null, []);
- return deferred.promise();
- }
- var params = {
- CanSeek: canSeek,
- QueueableMediaTypes: queueableMediaTypes
- };
- if (mediaSourceId) {
- params.mediaSourceId = mediaSourceId;
- }
- var url = self.getUrl("Users/" + userId + "/PlayingItems/" + itemId, params);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Reports progress viewing an item
- * @param {String} userId
- * @param {String} itemId
- */
- self.reportPlaybackProgress = function (userId, itemId, mediaSourceId, positionTicks, isPaused, isMuted) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- if (self.isWebSocketOpen()) {
- var deferred = $.Deferred();
- var msgData = itemId;
- msgData += "|" + (positionTicks == null ? "" : positionTicks);
- msgData += "|" + (isPaused == null ? "" : isPaused);
- msgData += "|" + (isMuted == null ? "" : isMuted);
- msgData += "|" + (mediaSourceId == null ? "" : mediaSourceId);
- self.sendWebSocketMessage("PlaybackProgress", msgData);
- deferred.resolveWith(null, []);
- return deferred.promise();
- }
- var params = {
- isPaused: isPaused,
- isMuted: isMuted
- };
- if (positionTicks) {
- params.positionTicks = positionTicks;
- }
- if (mediaSourceId) {
- params.mediaSourceId = mediaSourceId;
- }
- var url = self.getUrl("Users/" + userId + "/PlayingItems/" + itemId + "/Progress", params);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- /**
- * Reports a user has stopped playing an item
- * @param {String} userId
- * @param {String} itemId
- */
- self.reportPlaybackStopped = function (userId, itemId, mediaSourceId, positionTicks) {
- if (!userId) {
- throw new Error("null userId");
- }
- if (!itemId) {
- throw new Error("null itemId");
- }
- if (self.isWebSocketOpen()) {
- var deferred = $.Deferred();
- var msg = itemId;
- msg += "|" + (positionTicks == null ? "" : positionTicks);
- msg += "|" + (mediaSourceId == null ? "" : mediaSourceId);
- self.sendWebSocketMessage("PlaybackStopped", msg);
- deferred.resolveWith(null, []);
- return deferred.promise();
- }
- var params = {};
- if (positionTicks) {
- params.positionTicks = positionTicks;
- }
- if (mediaSourceId) {
- params.mediaSourceId = mediaSourceId;
- }
- var url = self.getUrl("Users/" + userId + "/PlayingItems/" + itemId, params);
- return self.ajax({
- type: "DELETE",
- url: url
- });
- };
- self.sendBrowseCommand = function (sessionId, options) {
- if (!sessionId) {
- throw new Error("null sessionId");
- }
- if (!options) {
- throw new Error("null options");
- }
- var url = self.getUrl("Sessions/" + sessionId + "/Viewing", options);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.sendPlayCommand = function (sessionId, options) {
- 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",
- url: url
- });
- };
- self.sendSystemCommand = function (sessionId, command) {
- if (!sessionId) {
- throw new Error("null sessionId");
- }
- if (!command) {
- throw new Error("null command");
- }
- var url = self.getUrl("Sessions/" + sessionId + "/System/" + command);
- return self.ajax({
- type: "POST",
- url: url
- });
- };
- self.sendMessageCommand = function (sessionId, options) {
- 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
- });
- };
- self.sendPlayStateCommand = function (sessionId, command, options) {
- 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",
- url: url
- });
- };
- self.createPackageReview = function (review) {
- var url = self.getUrl("Packages/Reviews/" + review.id, review);
- return self.ajax({
- type: "POST",
- url: url,
- });
- };
- self.getPackageReviews = function (packageId, minRating, maxRating, limit, forceTitle) {
- if (!packageId) {
- throw new Error("null packageId");
- }
- var options = {};
- if (minRating) {
- options.MinRating = minRating;
- }
- if (maxRating) {
- options.MaxRating = maxRating;
- }
- if (limit) {
- options.Limit = limit;
- }
- if (forceTitle) {
- options.ForceTitle = true;
- }
- var url = self.getUrl("Packages/" + packageId + "Reviews", options);
- return self.ajax({
- type: "GET",
- url: url,
- dataType: "json"
- });
- };
- };
- }(jQuery, navigator, window.JSON, window.WebSocket, setTimeout, window, window.FileReader);
- /**
- * Provides a friendly way to create an api client instance using information from the browser's current url
- */
- MediaBrowser.ApiClient.create = function (clientName, applicationVersion) {
- var loc = window.location;
- var address = loc.protocol + '//' + loc.hostname;
- if (loc.port) {
- address += ':' + loc.port;
- }
- return new MediaBrowser.ApiClient(address, clientName, applicationVersion);
- };
- /**
- *
- * Secure Hash Algorithm (SHA1)
- * http://www.webtoolkit.info/
- *
- **/
- MediaBrowser.SHA1 = function (msg) {
- function rotate_left(n, s) {
- var t4 = (n << s) | (n >>> (32 - s));
- return t4;
- }
- function lsb_hex(val) {
- var str = "";
- var i;
- var vh;
- var vl;
- for (i = 0; i <= 6; i += 2) {
- vh = (val >>> (i * 4 + 4)) & 0x0f;
- vl = (val >>> (i * 4)) & 0x0f;
- str += vh.toString(16) + vl.toString(16);
- }
- return str;
- }
- function cvt_hex(val) {
- var str = "";
- var i;
- var v;
- for (i = 7; i >= 0; i--) {
- v = (val >>> (i * 4)) & 0x0f;
- str += v.toString(16);
- }
- return str;
- }
- function Utf8Encode(string) {
- string = string.replace(/\r\n/g, "\n");
- var utftext = "";
- for (var n = 0; n < string.length; n++) {
- var c = string.charCodeAt(n);
- if (c < 128) {
- utftext += String.fromCharCode(c);
- }
- else if ((c > 127) && (c < 2048)) {
- utftext += String.fromCharCode((c >> 6) | 192);
- utftext += String.fromCharCode((c & 63) | 128);
- }
- else {
- utftext += String.fromCharCode((c >> 12) | 224);
- utftext += String.fromCharCode(((c >> 6) & 63) | 128);
- utftext += String.fromCharCode((c & 63) | 128);
- }
- }
- return utftext;
- }
- var blockstart;
- var i, j;
- var W = new Array(80);
- var H0 = 0x67452301;
- var H1 = 0xEFCDAB89;
- var H2 = 0x98BADCFE;
- var H3 = 0x10325476;
- var H4 = 0xC3D2E1F0;
- var A, B, C, D, E;
- var temp;
- msg = Utf8Encode(msg);
- var msg_len = msg.length;
- var word_array = new Array();
- for (i = 0; i < msg_len - 3; i += 4) {
- j = msg.charCodeAt(i) << 24 | msg.charCodeAt(i + 1) << 16 |
- msg.charCodeAt(i + 2) << 8 | msg.charCodeAt(i + 3);
- word_array.push(j);
- }
- switch (msg_len % 4) {
- case 0:
- i = 0x080000000;
- break;
- case 1:
- i = msg.charCodeAt(msg_len - 1) << 24 | 0x0800000;
- break;
- case 2:
- i = msg.charCodeAt(msg_len - 2) << 24 | msg.charCodeAt(msg_len - 1) << 16 | 0x08000;
- break;
- case 3:
- i = msg.charCodeAt(msg_len - 3) << 24 | msg.charCodeAt(msg_len - 2) << 16 | msg.charCodeAt(msg_len - 1) << 8 | 0x80;
- break;
- }
- word_array.push(i);
- while ((word_array.length % 16) != 14) word_array.push(0);
- word_array.push(msg_len >>> 29);
- word_array.push((msg_len << 3) & 0x0ffffffff);
- for (blockstart = 0; blockstart < word_array.length; blockstart += 16) {
- for (i = 0; i < 16; i++) W[i] = word_array[blockstart + i];
- for (i = 16; i <= 79; i++) W[i] = rotate_left(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16], 1);
- A = H0;
- B = H1;
- C = H2;
- D = H3;
- E = H4;
- for (i = 0; i <= 19; i++) {
- temp = (rotate_left(A, 5) + ((B & C) | (~B & D)) + E + W[i] + 0x5A827999) & 0x0ffffffff;
- E = D;
- D = C;
- C = rotate_left(B, 30);
- B = A;
- A = temp;
- }
- for (i = 20; i <= 39; i++) {
- temp = (rotate_left(A, 5) + (B ^ C ^ D) + E + W[i] + 0x6ED9EBA1) & 0x0ffffffff;
- E = D;
- D = C;
- C = rotate_left(B, 30);
- B = A;
- A = temp;
- }
- for (i = 40; i <= 59; i++) {
- temp = (rotate_left(A, 5) + ((B & C) | (B & D) | (C & D)) + E + W[i] + 0x8F1BBCDC) & 0x0ffffffff;
- E = D;
- D = C;
- C = rotate_left(B, 30);
- B = A;
- A = temp;
- }
- for (i = 60; i <= 79; i++) {
- temp = (rotate_left(A, 5) + (B ^ C ^ D) + E + W[i] + 0xCA62C1D6) & 0x0ffffffff;
- E = D;
- D = C;
- C = rotate_left(B, 30);
- B = A;
- A = temp;
- }
- H0 = (H0 + A) & 0x0ffffffff;
- H1 = (H1 + B) & 0x0ffffffff;
- H2 = (H2 + C) & 0x0ffffffff;
- H3 = (H3 + D) & 0x0ffffffff;
- H4 = (H4 + E) & 0x0ffffffff;
- }
- var temp = cvt_hex(H0) + cvt_hex(H1) + cvt_hex(H2) + cvt_hex(H3) + cvt_hex(H4);
- return temp.toLowerCase();
- };
- (function (jQuery, window, undefined) {
- "use strict";
- var matched, browser;
- jQuery.uaMatch = function (ua) {
- ua = ua.toLowerCase();
- var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
- /(webkit)[ \/]([\w.]+)/.exec(ua) ||
- /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
- /(msie) ([\w.]+)/.exec(ua) ||
- ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
- [];
- var platform_match = /(ipad)/.exec(ua) ||
- /(iphone)/.exec(ua) ||
- /(android)/.exec(ua) ||
- [];
- var browser = match[1] || "";
- if (ua.indexOf("like gecko") != -1 && ua.indexOf('webkit') == -1 && ua.indexOf('opera') == -1) {
- browser = "msie";
- }
- return {
- browser: browser,
- version: match[2] || "0",
- platform: platform_match[0] || ""
- };
- };
- matched = jQuery.uaMatch(window.navigator.userAgent);
- browser = {};
- if (matched.browser) {
- browser[matched.browser] = true;
- browser.version = matched.version;
- }
- if (matched.platform) {
- browser[matched.platform] = true;
- }
- // Chrome is Webkit, but Webkit is also Safari.
- if (browser.chrome) {
- browser.webkit = true;
- } else if (browser.webkit) {
- browser.safari = true;
- }
- jQuery.browser = browser;
- })(jQuery, window);
|