using MediaBrowser.Common.Net.Handlers; using MediaBrowser.Controller; using MediaBrowser.Model.DTO; using MediaBrowser.Model.Entities; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using System.Net; using System.Threading.Tasks; namespace MediaBrowser.Api.HttpHandlers { [Export(typeof(BaseHandler))] public class GenresHandler : BaseSerializationHandler { public override bool HandlesRequest(HttpListenerRequest request) { return ApiService.IsApiUrlMatch("genres", request); } protected override Task GetObjectToSerialize() { Folder parent = ApiService.GetItemById(QueryString["id"]) as Folder; User user = ApiService.GetUserById(QueryString["userid"], true); return GetAllGenres(parent, user); } /// /// Gets all genres from all recursive children of a folder /// The CategoryInfo class is used to keep track of the number of times each genres appears /// private async Task GetAllGenres(Folder parent, User user) { Dictionary data = new Dictionary(); // Get all the allowed recursive children IEnumerable allItems = parent.GetParentalAllowedRecursiveChildren(user); foreach (var item in allItems) { // Add each genre from the item to the data dictionary // If the genre already exists, increment the count if (item.Genres == null) { continue; } foreach (string val in item.Genres) { if (!data.ContainsKey(val)) { data.Add(val, 1); } else { data[val]++; } } } // Get the Genre objects Genre[] entities = await Task.WhenAll(data.Keys.Select(key => { return Kernel.Instance.ItemController.GetGenre(key); })).ConfigureAwait(false); // Convert to an array of IBNItem IBNItem[] items = new IBNItem[entities.Length]; for (int i = 0; i < entities.Length; i++) { Genre e = entities[i]; items[i] = ApiService.GetIBNItem(e, data[e.Name]); } return items; } } }