2012-09-07 16:17:39 +00:00
|
|
|
|
using MediaBrowser.Common.Net.Handlers;
|
2012-07-20 02:22:44 +00:00
|
|
|
|
using MediaBrowser.Controller;
|
2012-09-11 01:34:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2012-08-17 13:16:50 +00:00
|
|
|
|
using MediaBrowser.Model.DTO;
|
2012-09-07 16:17:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-09-08 14:52:13 +00:00
|
|
|
|
using System.ComponentModel.Composition;
|
2012-09-07 16:17:39 +00:00
|
|
|
|
using System.Linq;
|
2012-09-08 14:52:13 +00:00
|
|
|
|
using System.Net;
|
2012-09-07 16:17:39 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2012-07-16 16:50:44 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
|
|
|
{
|
2012-09-08 14:52:13 +00:00
|
|
|
|
[Export(typeof(BaseHandler))]
|
2012-09-02 05:30:25 +00:00
|
|
|
|
public class StudiosHandler : BaseSerializationHandler<IBNItem[]>
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
2012-09-08 14:52:13 +00:00
|
|
|
|
public override bool HandlesRequest(HttpListenerRequest request)
|
|
|
|
|
{
|
|
|
|
|
return ApiService.IsApiUrlMatch("studios", request);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-29 19:37:05 +00:00
|
|
|
|
protected override Task<IBNItem[]> GetObjectToSerialize()
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
2012-08-15 13:20:29 +00:00
|
|
|
|
Folder parent = ApiService.GetItemById(QueryString["id"]) as Folder;
|
2012-09-07 16:17:39 +00:00
|
|
|
|
User user = ApiService.GetUserById(QueryString["userid"], true);
|
2012-08-17 17:37:26 +00:00
|
|
|
|
|
2012-08-22 02:50:59 +00:00
|
|
|
|
return GetAllStudios(parent, user);
|
2012-08-17 19:07:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets all studios from all recursive children of a folder
|
|
|
|
|
/// The CategoryInfo class is used to keep track of the number of times each studio appears
|
|
|
|
|
/// </summary>
|
2012-08-29 19:37:05 +00:00
|
|
|
|
private async Task<IBNItem[]> GetAllStudios(Folder parent, User user)
|
2012-08-17 19:07:21 +00:00
|
|
|
|
{
|
|
|
|
|
Dictionary<string, int> data = new Dictionary<string, int>();
|
|
|
|
|
|
|
|
|
|
// Get all the allowed recursive children
|
|
|
|
|
IEnumerable<BaseItem> allItems = parent.GetParentalAllowedRecursiveChildren(user);
|
|
|
|
|
|
|
|
|
|
foreach (var item in allItems)
|
|
|
|
|
{
|
|
|
|
|
// Add each studio from the item to the data dictionary
|
|
|
|
|
// If the studio already exists, increment the count
|
|
|
|
|
if (item.Studios == null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string val in item.Studios)
|
|
|
|
|
{
|
|
|
|
|
if (!data.ContainsKey(val))
|
|
|
|
|
{
|
|
|
|
|
data.Add(val, 1);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
data[val]++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-29 19:37:05 +00:00
|
|
|
|
// Get the Studio objects
|
2012-09-11 18:20:12 +00:00
|
|
|
|
Studio[] entities = await Task.WhenAll(data.Keys.Select(key => { return Kernel.Instance.ItemController.GetStudio(key); })).ConfigureAwait(false);
|
2012-08-17 19:07:21 +00:00
|
|
|
|
|
2012-08-29 19:37:05 +00:00
|
|
|
|
// Convert to an array of IBNItem
|
|
|
|
|
IBNItem[] items = new IBNItem[entities.Length];
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < entities.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
Studio e = entities[i];
|
|
|
|
|
|
|
|
|
|
items[i] = ApiService.GetIBNItem(e, data[e.Name]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return items;
|
2012-07-16 16:50:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|