jellyfin/Emby.Dlna/Service/BaseService.cs

37 lines
1.2 KiB
C#
Raw Normal View History

using Emby.Dlna.Eventing;
2019-01-13 19:16:19 +00:00
using MediaBrowser.Common.Net;
using Microsoft.Extensions.Logging;
2016-10-29 22:22:20 +00:00
2016-10-29 22:34:54 +00:00
namespace Emby.Dlna.Service
2016-10-29 22:22:20 +00:00
{
public class BaseService : IEventManager
{
protected IEventManager EventManager;
protected IHttpClient HttpClient;
protected ILogger Logger;
protected BaseService(ILogger logger, IHttpClient httpClient)
{
Logger = logger;
2019-01-07 23:27:46 +00:00
HttpClient = httpClient;
2016-10-29 22:22:20 +00:00
EventManager = new EventManager(Logger, HttpClient);
}
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
{
return EventManager.CancelEventSubscription(subscriptionId);
}
2017-10-04 18:51:26 +00:00
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string timeoutString, string callbackUrl)
2016-10-29 22:22:20 +00:00
{
2017-10-04 18:51:26 +00:00
return EventManager.RenewEventSubscription(subscriptionId, notificationType, timeoutString, callbackUrl);
2016-10-29 22:22:20 +00:00
}
2017-07-20 20:37:13 +00:00
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl)
2016-10-29 22:22:20 +00:00
{
2017-07-20 20:37:13 +00:00
return EventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-29 22:22:20 +00:00
}
}
}