jellyfin/Emby.Dlna/Service/BaseService.cs

39 lines
1.3 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using Emby.Dlna.Eventing;
2019-01-13 20:16:19 +01:00
using MediaBrowser.Common.Net;
using Microsoft.Extensions.Logging;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Service
2016-10-30 00:22:20 +02:00
{
public class BaseService : IEventManager
{
2020-08-20 17:01:04 +02:00
protected IEventManager _eventManager;
protected IHttpClient _httpClient;
2016-10-30 00:22:20 +02:00
protected ILogger Logger;
2020-06-06 02:29:58 +02:00
protected BaseService(ILogger<BaseService> logger, IHttpClient httpClient)
2016-10-30 00:22:20 +02:00
{
Logger = logger;
2020-08-20 17:01:04 +02:00
_httpClient = httpClient;
2016-10-30 00:22:20 +02:00
2020-08-20 17:01:04 +02:00
_eventManager = new EventManager(logger, _httpClient);
2016-10-30 00:22:20 +02:00
}
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
{
2020-08-20 17:01:04 +02:00
return _eventManager.CancelEventSubscription(subscriptionId);
2016-10-30 00:22:20 +02:00
}
2017-10-04 20:51:26 +02:00
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string timeoutString, string callbackUrl)
2016-10-30 00:22:20 +02:00
{
2020-08-20 17:01:04 +02:00
return _eventManager.RenewEventSubscription(subscriptionId, notificationType, timeoutString, callbackUrl);
2016-10-30 00:22:20 +02:00
}
2017-07-20 22:37:13 +02:00
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl)
2016-10-30 00:22:20 +02:00
{
2020-08-20 17:01:04 +02:00
return _eventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-30 00:22:20 +02:00
}
}
}