2019-01-13 19:54:44 +00:00
|
|
|
using System.Linq;
|
2017-08-24 19:52:19 +00:00
|
|
|
using MediaBrowser.Controller.Dlna;
|
2014-07-02 18:34:08 +00:00
|
|
|
using MediaBrowser.Controller.Net;
|
2014-03-26 19:21:29 +00:00
|
|
|
using MediaBrowser.Model.Dlna;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2014-03-26 19:21:29 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Dlna.Api
|
2014-03-26 19:21:29 +00:00
|
|
|
{
|
|
|
|
[Route("/Dlna/ProfileInfos", "GET", Summary = "Gets a list of profiles")]
|
2017-08-19 19:43:35 +00:00
|
|
|
public class GetProfileInfos : IReturn<DeviceProfileInfo[]>
|
2014-03-26 19:21:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[Route("/Dlna/Profiles/{Id}", "DELETE", Summary = "Deletes a profile")]
|
|
|
|
public class DeleteProfile : IReturnVoid
|
|
|
|
{
|
|
|
|
[ApiMember(Name = "Id", Description = "Profile Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
|
|
|
|
public string Id { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
[Route("/Dlna/Profiles/Default", "GET", Summary = "Gets the default profile")]
|
|
|
|
public class GetDefaultProfile : IReturn<DeviceProfile>
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[Route("/Dlna/Profiles/{Id}", "GET", Summary = "Gets a single profile")]
|
|
|
|
public class GetProfile : IReturn<DeviceProfile>
|
|
|
|
{
|
|
|
|
[ApiMember(Name = "Id", Description = "Profile Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
|
|
|
|
public string Id { get; set; }
|
|
|
|
}
|
|
|
|
|
2016-07-23 20:00:56 +00:00
|
|
|
[Route("/Dlna/Profiles/{Id}", "POST", Summary = "Updates a profile")]
|
2014-03-26 20:14:47 +00:00
|
|
|
public class UpdateProfile : DeviceProfile, IReturnVoid
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[Route("/Dlna/Profiles", "POST", Summary = "Creates a profile")]
|
|
|
|
public class CreateProfile : DeviceProfile, IReturnVoid
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-15 02:31:03 +00:00
|
|
|
[Authenticated(Roles = "Admin")]
|
2018-09-12 17:26:21 +00:00
|
|
|
public class DlnaService : IService
|
2014-03-26 19:21:29 +00:00
|
|
|
{
|
|
|
|
private readonly IDlnaManager _dlnaManager;
|
|
|
|
|
|
|
|
public DlnaService(IDlnaManager dlnaManager)
|
|
|
|
{
|
|
|
|
_dlnaManager = dlnaManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
public object Get(GetProfileInfos request)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return _dlnaManager.GetProfileInfos().ToArray();
|
2014-03-26 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public object Get(GetProfile request)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return _dlnaManager.GetProfile(request.Id);
|
2014-03-26 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public object Get(GetDefaultProfile request)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return _dlnaManager.GetDefaultProfile();
|
2014-03-26 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Delete(DeleteProfile request)
|
|
|
|
{
|
|
|
|
_dlnaManager.DeleteProfile(request.Id);
|
|
|
|
}
|
2014-03-26 20:14:47 +00:00
|
|
|
|
|
|
|
public void Post(UpdateProfile request)
|
|
|
|
{
|
|
|
|
_dlnaManager.UpdateProfile(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Post(CreateProfile request)
|
|
|
|
{
|
|
|
|
_dlnaManager.CreateProfile(request);
|
|
|
|
}
|
2014-03-26 19:21:29 +00:00
|
|
|
}
|
2019-01-13 19:29:23 +00:00
|
|
|
}
|