2012-07-16 16:50:44 +00:00
|
|
|
|
using System;
|
2012-08-15 13:20:29 +00:00
|
|
|
|
using MediaBrowser.Common.Net.Handlers;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
|
|
|
{
|
2012-08-15 13:20:29 +00:00
|
|
|
|
public class ItemHandler : BaseJsonHandler
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-15 13:20:29 +00:00
|
|
|
|
protected sealed override object GetObjectToSerialize()
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-15 13:20:29 +00:00
|
|
|
|
Guid userId = Guid.Parse(QueryString["userid"]);
|
|
|
|
|
|
|
|
|
|
BaseItem item = ItemToSerialize;
|
2012-07-16 16:50:44 +00:00
|
|
|
|
|
2012-08-15 13:20:29 +00:00
|
|
|
|
if (item == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
2012-08-15 13:20:29 +00:00
|
|
|
|
|
|
|
|
|
return ApiService.GetSerializationObject(item, true, userId);
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-13 03:50:50 +00:00
|
|
|
|
protected virtual BaseItem ItemToSerialize
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-07-13 03:50:50 +00:00
|
|
|
|
get
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-07-13 03:50:50 +00:00
|
|
|
|
return ApiService.GetItemById(QueryString["id"]);
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|