30 lines
796 B
C#
30 lines
796 B
C#
|
using System.Collections.Generic;
|
|||
|
using MediaBrowser.Common.Net;
|
|||
|
using MediaBrowser.Model.Entities;
|
|||
|
|
|||
|
namespace MediaBrowser.Api.HttpHandlers
|
|||
|
{
|
|||
|
class RecentlyAddedItemsHandler : ItemListHandler
|
|||
|
{
|
|||
|
public RecentlyAddedItemsHandler(RequestContext ctx)
|
|||
|
: base(ctx)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override IEnumerable<BaseItem> ItemsToSerialize
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
Folder parent = ApiService.GetItemById(QueryString["id"]) as Folder;
|
|||
|
|
|||
|
if (QueryString["unplayed"] == "1")
|
|||
|
{
|
|||
|
return ApiService.GetRecentlyAddedUnplayedItems(parent);
|
|||
|
}
|
|||
|
|
|||
|
return ApiService.GetRecentlyAddedItems(parent);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|