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 year
|
|
|
|
|
/// </summary>
|
2012-08-29 12:21:56 +00:00
|
|
|
|
public class YearHandler : BaseJsonHandler<IBNItem>
|
2012-08-18 16:27:34 +00:00
|
|
|
|
{
|
2012-08-23 12:50:41 +00:00
|
|
|
|
protected override Task<IBNItem> 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 year = QueryString["year"];
|
|
|
|
|
|
2012-08-22 02:50:59 +00:00
|
|
|
|
return GetYear(parent, user, int.Parse(year));
|
2012-08-18 16:27:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Year
|
|
|
|
|
/// </summary>
|
2012-08-23 12:50:41 +00:00
|
|
|
|
private async Task<IBNItem> GetYear(Folder parent, User user, int year)
|
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.ProductionYear.HasValue && item.ProductionYear.Value == year)
|
|
|
|
|
{
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the original entity so that we can also supply the PrimaryImagePath
|
2012-08-23 12:50:41 +00:00
|
|
|
|
return ApiService.GetIBNItem(await Kernel.Instance.ItemController.GetYear(year).ConfigureAwait(false), count);
|
2012-08-18 16:27:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|