You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
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>
|
|
public class YearHandler : BaseJsonHandler<IBNItem<Year>>
|
|
{
|
|
protected override IBNItem<Year> GetObjectToSerialize()
|
|
{
|
|
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"];
|
|
|
|
return GetYear(parent, user, int.Parse(year));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Year
|
|
/// </summary>
|
|
private IBNItem<Year> GetYear(Folder parent, User user, int year)
|
|
{
|
|
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
|
|
return new IBNItem<Year>()
|
|
{
|
|
Item = Kernel.Instance.ItemController.GetYear(year),
|
|
BaseItemCount = count
|
|
};
|
|
}
|
|
}
|
|
}
|