Exemple #1
0
        public async Task <TVDBBannerResponse> SeriesBannerInformation(uint tvdbID, int season, BannerType bannerType)
        {
            string apiCallURL   = string.Format("{0}/api/{1}/series/{2}/banners.xml", _baseURL, _apiKey, tvdbID);
            string tvdbResponse = string.Empty;

            TVDBBannerResponse tvdbBannerResponse = new TVDBBannerResponse();

            try
            {
                tvdbResponse = await GetHTTPString(new Uri(apiCallURL));
            }
            catch (HttpRequestException)
            {
                tvdbBannerResponse.serverUnavailable = true;
                return(tvdbBannerResponse);
            }

            // return an empty response if the the tvdb was dead
            if (string.IsNullOrEmpty(tvdbResponse))
            {
                return(null);
            }

            // read the response in through a memory stream and use the xml serializer
            using (MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(tvdbResponse)))
            {
                var serializer = new XmlSerializer(typeof(TVDBBannerResponse));
                tvdbBannerResponse = (serializer.Deserialize(memoryStream) as TVDBBannerResponse);
            }

            // we want all of them so just return this
            if (bannerType == BannerType.All)
            {
                return(tvdbBannerResponse);
            }

            // otherwise we need to make a new list
            tvdbBannerResponse.banners = tvdbBannerResponse.banners.Where(banner => banner.bannerType == bannerType).ToList();
            if (season != -1)
            {
                tvdbBannerResponse.banners = tvdbBannerResponse.banners.Where(banner => banner.season == season).ToList();
            }

            // and return said list
            return(tvdbBannerResponse);
        }
Exemple #2
0
        public async Task<TVDBBannerResponse> SeriesBannerInformation(uint tvdbID)
        {
            string apiCallURL = string.Format("{0}/api/{1}/series/{2}/banners.xml", _baseURL, _apiKey, tvdbID);
            string tvdbResponse = await GetHTTPString(new Uri(apiCallURL));

            // return an empty response if the the tvdb was dead
            if (string.IsNullOrEmpty(tvdbResponse))
                return null;

            // read the response in through a memory stream and use the xml serializer
            TVDBBannerResponse tvdbBannerResponse = new TVDBBannerResponse();
            using (MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(tvdbResponse)))
            {
                var serializer = new XmlSerializer(typeof(TVDBBannerResponse));
                tvdbBannerResponse = (serializer.Deserialize(memoryStream) as TVDBBannerResponse);
            }

            // we should have some info now so return it
            return tvdbBannerResponse;
        }
Exemple #3
0
        public async Task<TVDBBannerResponse> SeriesBannerInformation(uint tvdbID, BannerType bannerType)
        {
            string apiCallURL = string.Format("{0}/api/{1}/series/{2}/banners.xml", _baseURL, _apiKey, tvdbID);
            string tvdbResponse = string.Empty;

            TVDBBannerResponse tvdbBannerResponse = new TVDBBannerResponse();
            try
            {
                tvdbResponse = await GetHTTPString(new Uri(apiCallURL));
            }
            catch (HttpRequestException)
            {
                tvdbBannerResponse.serverUnavailable = true;
                return tvdbBannerResponse;
            }

            // return an empty response if the the tvdb was dead
            if (string.IsNullOrEmpty(tvdbResponse))
                return null;

            // read the response in through a memory stream and use the xml serializer
            using (MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(tvdbResponse)))
            {
                var serializer = new XmlSerializer(typeof(TVDBBannerResponse));
                tvdbBannerResponse = (serializer.Deserialize(memoryStream) as TVDBBannerResponse);
            }

            // we want all of them so just return this
            if (bannerType == BannerType.All)
                return tvdbBannerResponse;

            // otherwise we need to make a new list
            tvdbBannerResponse.banners = tvdbBannerResponse.banners.Where(banner => banner.bannerType == bannerType).ToList();

            // and return said list
            return tvdbBannerResponse;
        }