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