| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 | using MediaBrowser.Model.Authentication;using MediaBrowser.Model.Configuration;using MediaBrowser.Model.DTO;using MediaBrowser.Model.Weather;using System;using System.IO;using System.Net;using System.Text;using System.Threading.Tasks;#if WINDOWS_PHONEusing SharpGIS;#elseusing System.Net.Http;#endifnamespace MediaBrowser.ApiInteraction{    /// <summary>    /// Provides api methods centered around an HttpClient    /// </summary>    public abstract class BaseHttpApiClient : BaseApiClient    {#if WINDOWS_PHONE        public BaseHttpApiClient()        {            HttpClient = new GZipWebClient();        }        private WebClient HttpClient { get; set; }#else        public BaseHttpApiClient(HttpClientHandler handler)            : base()        {            handler.AutomaticDecompression = DecompressionMethods.Deflate;            HttpClient = new HttpClient(handler);        }        private HttpClient HttpClient { get; set; }#endif        /// <summary>        /// Gets an image stream based on a url        /// </summary>        public Task<Stream> GetImageStreamAsync(string url)        {            return GetStreamAsync(url);        }        /// <summary>        /// Gets a BaseItem        /// </summary>        public async Task<DTOBaseItem> GetItemAsync(Guid id, Guid userId)        {            string url = ApiUrl + "/item?userId=" + userId.ToString();            if (id != Guid.Empty)            {                url += "&id=" + id.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem>(stream);            }        }        /// <summary>        /// Gets all Users        /// </summary>        public async Task<DTOUser[]> GetAllUsersAsync()        {            string url = ApiUrl + "/users";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUser[]>(stream);            }        }        /// <summary>        /// Gets all Genres        /// </summary>        public async Task<IBNItem[]> GetAllGenresAsync(Guid userId)        {            string url = ApiUrl + "/genres?userId=" + userId.ToString();            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem[]>(stream);            }        }        /// <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 async Task<DTOBaseItem[]> GetInProgressItemsItemsAsync(Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=inprogressitems&userId=" + userId.ToString();            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <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 async Task<DTOBaseItem[]> GetRecentlyAddedItemsAsync(Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=recentlyaddeditems&userId=" + userId.ToString();            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <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 async Task<DTOBaseItem[]> GetFavoriteItemsAsync(Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=favorites&userId=" + userId.ToString();            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <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 async Task<DTOBaseItem[]> GetRecentlyAddedUnplayedItemsAsync(Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=recentlyaddedunplayeditems&userId=" + userId.ToString();            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets all Years        /// </summary>        public async Task<IBNItem[]> GetAllYearsAsync(Guid userId)        {            string url = ApiUrl + "/years?userId=" + userId.ToString();            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem[]>(stream);            }        }        /// <summary>        /// Gets all items that contain a given Year        /// </summary>        /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>        public async Task<DTOBaseItem[]> GetItemsWithYearAsync(string name, Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=itemswithyear&userId=" + userId.ToString() + "&name=" + name;            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets all items that contain a given Genre        /// </summary>        /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>        public async Task<DTOBaseItem[]> GetItemsWithGenreAsync(string name, Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=itemswithgenre&userId=" + userId.ToString() + "&name=" + name;            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets all items that contain a given Person        /// </summary>        /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>        public async Task<DTOBaseItem[]> GetItemsWithPersonAsync(string name, Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=itemswithperson&userId=" + userId.ToString() + "&name=" + name;            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets all items that contain a given Person        /// </summary>        /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>        public async Task<DTOBaseItem[]> GetItemsWithPersonAsync(string name, string personType, Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=itemswithperson&userId=" + userId.ToString() + "&name=" + name;            url += "&persontype=" + personType;            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets all studious        /// </summary>        public async Task<IBNItem[]> GetAllStudiosAsync(Guid userId)        {            string url = ApiUrl + "/studios?userId=" + userId.ToString();            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem[]>(stream);            }        }        /// <summary>        /// Gets all items that contain a given Studio        /// </summary>        /// <param name="folderId">(Optional) Specify a folder Id to localize the search to a specific folder.</param>        public async Task<DTOBaseItem[]> GetItemsWithStudioAsync(string name, Guid userId, Guid? folderId = null)        {            string url = ApiUrl + "/itemlist?listtype=itemswithstudio&userId=" + userId.ToString() + "&name=" + name;            if (folderId.HasValue)            {                url += "&id=" + folderId.ToString();            }            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Gets a studio        /// </summary>        public async Task<IBNItem> GetStudioAsync(Guid userId, string name)        {            string url = ApiUrl + "/studio?userId=" + userId.ToString() + "&name=" + name;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem>(stream);            }        }        /// <summary>        /// Gets a genre        /// </summary>        public async Task<IBNItem> GetGenreAsync(Guid userId, string name)        {            string url = ApiUrl + "/genre?userId=" + userId.ToString() + "&name=" + name;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem>(stream);            }        }        /// <summary>        /// Gets a person        /// </summary>        public async Task<IBNItem> GetPersonAsync(Guid userId, string name)        {            string url = ApiUrl + "/person?userId=" + userId.ToString() + "&name=" + name;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem>(stream);            }        }        /// <summary>        /// Gets a year        /// </summary>        public async Task<IBNItem> GetYearAsync(Guid userId, int year)        {            string url = ApiUrl + "/year?userId=" + userId.ToString() + "&year=" + year;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<IBNItem>(stream);            }        }        /// <summary>        /// Gets a list of plugins installed on the server        /// </summary>        public async Task<PluginInfo[]> GetInstalledPluginsAsync()        {            string url = ApiUrl + "/plugins";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<PluginInfo[]>(stream);            }        }        /// <summary>        /// Gets a list of plugins installed on the server        /// </summary>        public Task<Stream> GetPluginAssemblyAsync(PluginInfo plugin)        {            string url = ApiUrl + "/pluginassembly?assemblyfilename=" + plugin.AssemblyFileName;            return GetStreamAsync(url);        }        /// <summary>        /// Gets the current server configuration        /// </summary>        public async Task<ServerConfiguration> GetServerConfigurationAsync()        {            string url = ApiUrl + "/ServerConfiguration";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<ServerConfiguration>(stream);            }        }        /// <summary>        /// Gets weather information for the default location as set in configuration        /// </summary>        public async Task<object> GetPluginConfigurationAsync(PluginInfo plugin, Type configurationType)        {            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;            using (Stream stream = await GetSerializedStreamAsync(url, format).ConfigureAwait(false))            {                return DataSerializer.DeserializeFromStream(stream, format, configurationType);            }        }        /// <summary>        /// Gets the default user        /// </summary>        public async Task<DTOUser> GetDefaultUserAsync()        {            string url = ApiUrl + "/user";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUser>(stream);            }        }        /// <summary>        /// Gets a user by id        /// </summary>        public async Task<DTOUser> GetUserAsync(Guid id)        {            string url = ApiUrl + "/user?id=" + id.ToString();            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUser>(stream);            }        }        /// <summary>        /// Gets weather information for the default location as set in configuration        /// </summary>        public async Task<WeatherInfo> GetWeatherInfoAsync()        {            string url = ApiUrl + "/weather";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<WeatherInfo>(stream);            }        }        /// <summary>        /// Gets weather information for a specific zip code        /// </summary>        public async Task<WeatherInfo> GetWeatherInfoAsync(string zipCode)        {            string url = ApiUrl + "/weather?zipcode=" + zipCode;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<WeatherInfo>(stream);            }        }        /// <summary>        /// Gets special features for a Movie        /// </summary>        public async Task<DTOBaseItem[]> GetMovieSpecialFeaturesAsync(Guid itemId, Guid userId)        {            string url = ApiUrl + "/MovieSpecialFeatures?id=" + itemId;            url += "&userid=" + userId;            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOBaseItem[]>(stream);            }        }        /// <summary>        /// Updates played status for an item        /// </summary>        public async Task<DTOUserItemData> UpdatePlayedStatusAsync(Guid itemId, Guid userId, bool wasPlayed)        {            string url = ApiUrl + "/PlayedStatus?id=" + itemId;            url += "&userid=" + userId;            url += "&played=" + (wasPlayed ? "1" : "0");            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUserItemData>(stream);            }        }        /// <summary>        /// Updates a user's favorite status for an item and returns the updated UserItemData object.        /// </summary>        public async Task<DTOUserItemData> UpdateFavoriteStatusAsync(Guid itemId, Guid userId, bool isFavorite)        {            string url = ApiUrl + "/favoritestatus?id=" + itemId;            url += "&userid=" + userId;            url += "&isfavorite=" + (isFavorite ? "1" : "0");            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUserItemData>(stream);            }        }        /// <summary>        /// Clears a user's rating for an item        /// </summary>        public async Task<DTOUserItemData> ClearUserItemRatingAsync(Guid itemId, Guid userId)        {            string url = ApiUrl + "/UserItemRating?id=" + itemId;            url += "&userid=" + userId;            url += "&clear=1";            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUserItemData>(stream);            }        }        /// <summary>        /// Updates a user's rating for an item, based on likes or dislikes        /// </summary>        public async Task<DTOUserItemData> UpdateUserItemRatingAsync(Guid itemId, Guid userId, bool likes)        {            string url = ApiUrl + "/UserItemRating?id=" + itemId;            url += "&userid=" + userId;            url += "&likes=" + (likes ? "1" : "0");            using (Stream stream = await GetSerializedStreamAsync(url).ConfigureAwait(false))            {                return DeserializeFromStream<DTOUserItemData>(stream);            }        }        /// <summary>        /// Authenticates a user and returns the result        /// </summary>        public async Task<AuthenticationResult> AuthenticateUserAsync(Guid userId, string password)        {            string url = ApiUrl + "/UserAuthentication?dataformat=" + SerializationFormat.ToString();            // Create the post body            string postContent = string.Format("userid={0}", userId);            if (!string.IsNullOrEmpty(password))            {                postContent += "&password=" + password;            }#if WINDOWS_PHONE            HttpClient.Headers["Content-Type"] = "application/x-www-form-urlencoded";            var result = await HttpClient.UploadStringTaskAsync(url, "POST", postContent);            var byteArray = Encoding.UTF8.GetBytes(result);            using (MemoryStream stream = new MemoryStream(byteArray))            {                return DeserializeFromStream<AuthenticationResult>(stream);            }#else            HttpContent content = new StringContent(postContent, Encoding.UTF8, "application/x-www-form-urlencoded");            HttpResponseMessage msg = await HttpClient.PostAsync(url, content).ConfigureAwait(false);            using (Stream stream = await msg.Content.ReadAsStreamAsync().ConfigureAwait(false))            {                return DeserializeFromStream<AuthenticationResult>(stream);            }#endif        }        /// <summary>        /// This is a helper around getting a stream from the server that contains serialized data        /// </summary>        private Task<Stream> GetSerializedStreamAsync(string url)        {            return GetSerializedStreamAsync(url, SerializationFormat);        }        /// <summary>        /// This is a helper around getting a stream from the server that contains serialized data        /// </summary>        private Task<Stream> GetSerializedStreamAsync(string url, SerializationFormats serializationFormat)        {            if (url.IndexOf('?') == -1)            {                url += "?dataformat=" + serializationFormat.ToString();            }            else            {                url += "&dataformat=" + serializationFormat.ToString();            }            return GetStreamAsync(url);        }        /// <summary>        /// This is just a helper around HttpClient        /// </summary>        private Task<Stream> GetStreamAsync(string url)        {#if WINDOWS_PHONE            return HttpClient.OpenReadTaskAsync(url);#else            return HttpClient.GetStreamAsync(url);#endif        }        public override void Dispose()        {#if !WINDOWS_PHONE            HttpClient.Dispose();#endif        }    }}
 |