2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-08-31 10:26:42 -07:00
|
|
|
using System.Net.Http;
|
2019-01-13 12:54:44 -07:00
|
|
|
using Emby.Dlna.Eventing;
|
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
|
|
|
{
|
2020-08-13 12:47:31 -07:00
|
|
|
public class BaseService : IDlnaEventManager
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2020-08-31 10:26:42 -07:00
|
|
|
protected BaseService(ILogger<BaseService> logger, IHttpClientFactory httpClientFactory)
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
|
|
|
Logger = logger;
|
2020-08-31 10:26:42 -07:00
|
|
|
EventManager = new DlnaEventManager(logger, httpClientFactory);
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
|
2020-08-24 17:04:13 -07:00
|
|
|
protected IDlnaEventManager EventManager { get; }
|
2020-08-20 12:04:57 -07:00
|
|
|
|
|
|
|
protected ILogger Logger { get; }
|
|
|
|
|
2016-10-29 15:22:20 -07:00
|
|
|
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
|
|
|
|
{
|
2020-08-20 12:04:57 -07:00
|
|
|
return EventManager.CancelEventSubscription(subscriptionId);
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
|
2021-02-14 07:11:46 -07:00
|
|
|
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl)
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2021-02-14 07:11:46 -07:00
|
|
|
return EventManager.RenewEventSubscription(subscriptionId, notificationType, requestedTimeoutString, callbackUrl);
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
|
2021-02-14 07:11:46 -07:00
|
|
|
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl)
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2021-02-14 07:11:46 -07:00
|
|
|
return EventManager.CreateEventSubscription(notificationType, requestedTimeoutString, callbackUrl);
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|