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