34 lines
784 B
C#
34 lines
784 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using MediaBrowser.Common.Net.Handlers;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
public abstract class ItemListHandler : BaseJsonHandler
|
|
{
|
|
protected override object GetObjectToSerialize()
|
|
{
|
|
return ItemsToSerialize.Select(i =>
|
|
{
|
|
return ApiService.GetSerializationObject(i, false, UserId);
|
|
|
|
});
|
|
}
|
|
|
|
protected abstract IEnumerable<BaseItem> ItemsToSerialize
|
|
{
|
|
get;
|
|
}
|
|
|
|
protected Guid UserId
|
|
{
|
|
get
|
|
{
|
|
return Guid.Parse(QueryString["userid"]);
|
|
}
|
|
}
|
|
}
|
|
}
|