123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585 |
- using MediaBrowser.Model.Authentication;
- using MediaBrowser.Model.Configuration;
- using MediaBrowser.Model.DTO;
- using MediaBrowser.Model.Weather;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Text;
- namespace MediaBrowser.ApiInteraction.Portable
- {
- public class ApiClient : BaseApiClient
- {
- private HttpWebRequest GetNewRequest(string url)
- {
- return HttpWebRequest.CreateHttp(url);
- }
- /// <summary>
- /// Gets an image stream based on a url
- /// </summary>
- public void GetImageStreamAsync(string url, Action<Stream> callback)
- {
- GetStreamAsync(url, callback);
- }
- /// <summary>
- /// Gets an image stream based on a url
- /// </summary>
- private void GetStreamAsync(string url, Action<Stream> callback)
- {
- HttpWebRequest request = GetNewRequest(url);
- request.BeginGetResponse(new AsyncCallback(result =>
- {
- using (WebResponse response = (result.AsyncState as HttpWebRequest).EndGetResponse(result))
- {
- Stream stream = response.GetResponseStream();
- callback(stream);
- }
- }), request);
- }
- /// <summary>
- /// Gets a BaseItem
- /// </summary>
- public void GetItemAsync(Guid id, Guid userId, Action<DTOBaseItem> callback)
- {
- string url = ApiUrl + "/item?userId=" + userId.ToString();
- if (id != Guid.Empty)
- {
- url += "&id=" + id.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all users
- /// </summary>
- public void GetAllUsersAsync(Action<DTOUser[]> callback)
- {
- string url = ApiUrl + "/users";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all Genres
- /// </summary>
- public void GetAllGenresAsync(Guid userId, Action<IBNItem[]> callback)
- {
- string url = ApiUrl + "/genres?userId=" + userId.ToString();
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets in-progress items
- /// </summary>
- /// <param name="userId">The user id.</param>
- /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>
- public void GetInProgressItemsItemsAsync(Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=inprogressitems&userId=" + userId.ToString();
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets recently added items
- /// </summary>
- /// <param name="userId">The user id.</param>
- /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>
- public void GetRecentlyAddedItemsAsync(Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=recentlyaddeditems&userId=" + userId.ToString();
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets favorite items
- /// </summary>
- /// <param name="userId">The user id.</param>
- /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>
- public void GetFavoriteItemsAsync(Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=favorites&userId=" + userId.ToString();
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets recently added items that are unplayed.
- /// </summary>
- /// <param name="userId">The user id.</param>
- /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>
- public void GetRecentlyAddedUnplayedItemsAsync(Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=recentlyaddedunplayeditems&userId=" + userId.ToString();
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all Years
- /// </summary>
- public void GetAllYearsAsync(Guid userId, Action<IBNItem[]> callback)
- {
- string url = ApiUrl + "/years?userId=" + userId.ToString();
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all items that contain a given Year
- /// </summary>
- public void GetItemsWithYearAsync(string name, Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=itemswithyear&userId=" + userId.ToString() + "&name=" + name;
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all items that contain a given Genre
- /// </summary>
- public void GetItemsWithGenreAsync(string name, Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=itemswithgenre&userId=" + userId.ToString() + "&name=" + name;
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all items that contain a given Person
- /// </summary>
- public void GetItemsWithPersonAsync(string name, Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=itemswithperson&userId=" + userId.ToString() + "&name=" + name;
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
-
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all items that contain a given Person
- /// </summary>
- public void GetItemsWithPersonAsync(string name, string personType, Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=itemswithperson&userId=" + userId.ToString() + "&name=" + name;
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
-
- url += "&persontype=" + personType;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all studious
- /// </summary>
- public void GetAllStudiosAsync(Guid userId, Action<IBNItem[]> callback)
- {
- string url = ApiUrl + "/studios?userId=" + userId.ToString();
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets all items that contain a given Studio
- /// </summary>
- public void GetItemsWithStudioAsync(string name, Guid userId, Action<DTOBaseItem[]> callback, Guid? folderId = null)
- {
- string url = ApiUrl + "/itemlist?listtype=itemswithstudio&userId=" + userId.ToString() + "&name=" + name;
- if (folderId.HasValue)
- {
- url += "&id=" + folderId.ToString();
- }
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a studio
- /// </summary>
- public void GetStudioAsync(Guid userId, string name, Action<IBNItem> callback)
- {
- string url = ApiUrl + "/studio?userId=" + userId.ToString() + "&name=" + name;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a genre
- /// </summary>
- public void GetGenreAsync(Guid userId, string name, Action<IBNItem> callback)
- {
- string url = ApiUrl + "/genre?userId=" + userId.ToString() + "&name=" + name;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a person
- /// </summary>
- public void GetPersonAsync(Guid userId, string name, Action<IBNItem> callback)
- {
- string url = ApiUrl + "/person?userId=" + userId.ToString() + "&name=" + name;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a year
- /// </summary>
- public void GetYearAsync(Guid userId, int year, Action<IBNItem> callback)
- {
- string url = ApiUrl + "/year?userId=" + userId.ToString() + "&year=" + year;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a list of plugins installed on the server
- /// </summary>
- public void GetInstalledPluginsAsync(Action<PluginInfo[]> callback)
- {
- string url = ApiUrl + "/plugins";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a list of plugins installed on the server
- /// </summary>
- public void GetPluginAssemblyAsync(PluginInfo plugin, Action<Stream> callback)
- {
- string url = ApiUrl + "/pluginassembly?assemblyfilename=" + plugin.AssemblyFileName;
- GetStreamAsync(url, callback);
- }
- /// <summary>
- /// Gets the current server configuration
- /// </summary>
- public void GetServerConfigurationAsync(Action<ServerConfiguration> callback)
- {
- string url = ApiUrl + "/ServerConfiguration";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets weather information for the default location as set in configuration
- /// </summary>
- public void GetPluginConfigurationAsync(PluginInfo plugin, Type configurationType, Action<object> callback)
- {
- string url = ApiUrl + "/PluginConfiguration?assemblyfilename=" + plugin.AssemblyFileName;
- // At the moment this can't be retrieved in protobuf format
- SerializationFormats format = DataSerializer.CanDeSerializeJsv ? SerializationFormats.Jsv : SerializationFormats.Json;
- GetDataAsync(url, callback, configurationType, format);
- }
- /// <summary>
- /// Gets the default user
- /// </summary>
- public void GetDefaultUserAsync(Action<DTOUser> callback)
- {
- string url = ApiUrl + "/user";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets a user by id
- /// </summary>
- public void GetUserAsync(Guid id, Action<DTOUser> callback)
- {
- string url = ApiUrl + "/user?id=" + id.ToString();
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets weather information for the default location as set in configuration
- /// </summary>
- public void GetWeatherInfoAsync(Action<WeatherInfo> callback)
- {
- string url = ApiUrl + "/weather";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets weather information for a specific zip code
- /// </summary>
- public void GetWeatherInfoAsync(string zipCode, Action<WeatherInfo> callback)
- {
- string url = ApiUrl + "/weather?zipcode=" + zipCode;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Gets special features for a Movie
- /// </summary>
- public void GetMovieSpecialFeaturesAsync(Guid itemId, Guid userId, Action<DTOBaseItem[]> callback)
- {
- string url = ApiUrl + "/MovieSpecialFeatures?id=" + itemId;
- url += "&userid=" + userId;
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Authenticates a user and returns the result
- /// </summary>
- public void AuthenticateUserAsync(Guid userId, string password, Action<AuthenticationResult> callback)
- {
- string url = ApiUrl + "/UserAuthentication?dataformat=" + SerializationFormat.ToString();
- Dictionary<string, string> formValues = new Dictionary<string, string>();
- formValues["userid"] = userId.ToString();
- if (!string.IsNullOrEmpty(password))
- {
- formValues["password"] = password;
- }
- PostDataAsync(url, formValues, callback, SerializationFormat);
- }
- /// <summary>
- /// Updates a user's favorite status for an item and returns the updated UserItemData object.
- /// </summary>
- public void UpdateFavoriteStatusAsync(Guid itemId, Guid userId, bool isFavorite, Action<DTOUserItemData> callback)
- {
- string url = ApiUrl + "/favoritestatus?id=" + itemId;
- url += "&userid=" + userId;
- url += "&isfavorite=" + (isFavorite ? "1" : "0");
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Updates played status for an item
- /// </summary>
- public void UpdatePlayedStatusAsync(Guid itemId, Guid userId, bool wasPlayed, Action<DTOUserItemData> callback)
- {
- string url = ApiUrl + "/PlayedStatus?id=" + itemId;
- url += "&userid=" + userId;
- url += "&played=" + (wasPlayed ? "1" : "0");
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Clears a user's rating for an item
- /// </summary>
- public void ClearUserItemRatingAsync(Guid itemId, Guid userId, Action<DTOUserItemData> callback)
- {
- string url = ApiUrl + "/UserItemRating?id=" + itemId;
- url += "&userid=" + userId;
- url += "&clear=1";
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Updates a user's rating for an item, based on likes or dislikes
- /// </summary>
- public void UpdateUserItemRatingAsync(Guid itemId, Guid userId, bool likes, Action<DTOUserItemData> callback)
- {
- string url = ApiUrl + "/UserItemRating?id=" + itemId;
- url += "&userid=" + userId;
- url += "&likes=" + (likes ? "1" : "0");
- GetDataAsync(url, callback);
- }
- /// <summary>
- /// Performs a GET request, and deserializes the response stream to an object of Type T
- /// </summary>
- private void GetDataAsync<T>(string url, Action<T> callback)
- where T : class
- {
- GetDataAsync<T>(url, callback, SerializationFormat);
- }
- /// <summary>
- /// Performs a GET request, and deserializes the response stream to an object of Type T
- /// </summary>
- private void GetDataAsync<T>(string url, Action<T> callback, SerializationFormats serializationFormat)
- where T : class
- {
- if (url.IndexOf('?') == -1)
- {
- url += "?dataformat=" + serializationFormat.ToString();
- }
- else
- {
- url += "&dataformat=" + serializationFormat.ToString();
- }
- HttpWebRequest request = GetNewRequest(url);
- request.BeginGetResponse(new AsyncCallback(result =>
- {
- T value;
- using (WebResponse response = (result.AsyncState as HttpWebRequest).EndGetResponse(result))
- {
- using (Stream stream = response.GetResponseStream())
- {
- value = DeserializeFromStream<T>(stream);
- }
- }
- callback(value);
- }), request);
- }
- /// <summary>
- /// Performs a GET request, and deserializes the response stream to an object of Type T
- /// </summary>
- private void GetDataAsync(string url, Action<object> callback, Type type, SerializationFormats serializationFormat)
- {
- if (url.IndexOf('?') == -1)
- {
- url += "?dataformat=" + serializationFormat.ToString();
- }
- else
- {
- url += "&dataformat=" + serializationFormat.ToString();
- }
- HttpWebRequest request = GetNewRequest(url);
- request.BeginGetResponse(new AsyncCallback(result =>
- {
- object value;
- using (WebResponse response = (result.AsyncState as HttpWebRequest).EndGetResponse(result))
- {
- using (Stream stream = response.GetResponseStream())
- {
- value = DataSerializer.DeserializeFromStream(stream, serializationFormat, type);
- }
- }
- callback(value);
- }), request);
- }
- /// <summary>
- /// Performs a POST request, and deserializes the response stream to an object of Type T
- /// </summary>
- private void PostDataAsync<T>(string url, Dictionary<string, string> formValues, Action<T> callback, SerializationFormats serializationFormat)
- where T : class
- {
- if (url.IndexOf('?') == -1)
- {
- url += "?dataformat=" + serializationFormat.ToString();
- }
- else
- {
- url += "&dataformat=" + serializationFormat.ToString();
- }
- HttpWebRequest request = GetNewRequest(url);
- request.Method = "POST";
- request.ContentType = "application/x-www-form-urlencoded";
- // Begin getting request stream
- request.BeginGetRequestStream(new AsyncCallback(beginGetRequestStreamResult =>
- {
- // Once we have the request stream, write the post data
- using (Stream requestStream = request.EndGetRequestStream(beginGetRequestStreamResult))
- {
- // Construct the body
- string postBody = string.Join("&", formValues.Keys.Select(s => string.Format("{0}={1}", s, formValues[s])).ToArray());
- // Convert the string into a byte array.
- byte[] byteArray = Encoding.UTF8.GetBytes(postBody);
- // Write to the request stream.
- requestStream.Write(byteArray, 0, byteArray.Length);
- }
- // Begin getting response stream
- request.BeginGetResponse(new AsyncCallback(result =>
- {
- // Once we have it, deserialize the data and execute the callback
- T value;
- using (WebResponse response = request.EndGetResponse(result))
- {
- using (Stream responseStream = response.GetResponseStream())
- {
- value = DeserializeFromStream<T>(responseStream);
- }
- }
- callback(value);
- }), null);
- }), null);
- }
- }
- }
|