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.
89 lines
3.0 KiB
89 lines
3.0 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
|
|
{
|
|
public class ItemListHandler : BaseJsonHandler<IEnumerable<DTOBaseItem>>
|
|
{
|
|
protected override IEnumerable<DTOBaseItem> GetObjectToSerialize()
|
|
{
|
|
User user = Kernel.Instance.Users.First(u => u.Id == UserId);
|
|
|
|
return ItemsToSerialize.Select(i =>
|
|
{
|
|
return ApiService.GetDTOBaseItem(i, user, includeChildren: false, includePeople: false);
|
|
});
|
|
}
|
|
|
|
protected IEnumerable<BaseItem> ItemsToSerialize
|
|
{
|
|
get
|
|
{
|
|
Folder parent = ApiService.GetItemById(ItemId) as Folder;
|
|
|
|
User user = Kernel.Instance.Users.First(u => u.Id == UserId);
|
|
|
|
if (ListType.Equals("inprogressitems", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetInProgressItems(user);
|
|
}
|
|
else if (ListType.Equals("recentlyaddeditems", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetRecentlyAddedItems(user);
|
|
}
|
|
else if (ListType.Equals("recentlyaddedunplayeditems", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetRecentlyAddedUnplayedItems(user);
|
|
}
|
|
else if (ListType.Equals("itemswithgenre", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetItemsWithGenre(QueryString["name"], user);
|
|
}
|
|
else if (ListType.Equals("itemswithyear", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetItemsWithYear(int.Parse(QueryString["year"]), user);
|
|
}
|
|
else if (ListType.Equals("itemswithstudio", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetItemsWithStudio(QueryString["name"], user);
|
|
}
|
|
else if (ListType.Equals("itemswithperson", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return parent.GetItemsWithPerson(QueryString["name"], null, user);
|
|
}
|
|
|
|
throw new InvalidOperationException();
|
|
}
|
|
}
|
|
|
|
protected string ItemId
|
|
{
|
|
get
|
|
{
|
|
return QueryString["id"];
|
|
}
|
|
}
|
|
|
|
protected Guid UserId
|
|
{
|
|
get
|
|
{
|
|
return Guid.Parse(QueryString["userid"]);
|
|
}
|
|
}
|
|
|
|
private string ListType
|
|
{
|
|
get
|
|
{
|
|
return QueryString["listtype"] ?? string.Empty;
|
|
}
|
|
}
|
|
}
|
|
}
|