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.
30 lines
883 B
30 lines
883 B
using MediaBrowser.Common.Net.Handlers;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.DTO;
|
|
using System.ComponentModel.Composition;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Api.HttpHandlers
|
|
{
|
|
[Export(typeof(BaseHandler))]
|
|
class UserHandler : BaseSerializationHandler<DtoUser>
|
|
{
|
|
public override bool HandlesRequest(HttpListenerRequest request)
|
|
{
|
|
return ApiService.IsApiUrlMatch("user", request);
|
|
}
|
|
|
|
protected override Task<DtoUser> GetObjectToSerialize()
|
|
{
|
|
string id = QueryString["id"];
|
|
|
|
User user = string.IsNullOrEmpty(id) ? ApiService.GetDefaultUser(false) : ApiService.GetUserById(id, false);
|
|
|
|
DtoUser dto = ApiService.GetDtoUser(user);
|
|
|
|
return Task.FromResult(dto);
|
|
}
|
|
}
|
|
}
|