2012-08-18 16:27:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2012-08-19 20:38:31 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2012-08-18 16:27:34 +00:00
|
|
|
|
using MediaBrowser.Common.Net.Handlers;
|
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
|
using MediaBrowser.Model.DTO;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a single studio
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StudioHandler : BaseJsonHandler<IBNItem<Studio>>
|
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
protected async override Task<IBNItem<Studio>> GetObjectToSerialize()
|
2012-08-18 16:27:34 +00:00
|
|
|
|
{
|
|
|
|
|
Folder parent = ApiService.GetItemById(QueryString["id"]) as Folder;
|
|
|
|
|
Guid userId = Guid.Parse(QueryString["userid"]);
|
|
|
|
|
User user = Kernel.Instance.Users.First(u => u.Id == userId);
|
|
|
|
|
|
|
|
|
|
string name = QueryString["name"];
|
|
|
|
|
|
2012-08-19 20:38:31 +00:00
|
|
|
|
return await GetStudio(parent, user, name);
|
2012-08-18 16:27:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Studio
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
private async Task<IBNItem<Studio>> GetStudio(Folder parent, User user, string name)
|
2012-08-18 16:27:34 +00:00
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
|
|
// Get all the allowed recursive children
|
|
|
|
|
IEnumerable<BaseItem> allItems = parent.GetParentalAllowedRecursiveChildren(user);
|
|
|
|
|
|
|
|
|
|
foreach (var item in allItems)
|
|
|
|
|
{
|
|
|
|
|
if (item.Studios != null && item.Studios.Any(s => s.Equals(name, StringComparison.OrdinalIgnoreCase)))
|
|
|
|
|
{
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the original entity so that we can also supply the PrimaryImagePath
|
|
|
|
|
return new IBNItem<Studio>()
|
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
Item = await Kernel.Instance.ItemController.GetStudio(name),
|
2012-08-18 16:27:34 +00:00
|
|
|
|
BaseItemCount = count
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|