jellyfin/Emby.Dlna/Service/BaseService.cs

41 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 : IDlnaEventManager
2016-10-30 00:22:20 +02:00
{
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;
2019-01-08 00:27:46 +01:00
HttpClient = httpClient;
2016-10-30 00:22:20 +02:00
EventManager = new DlnaEventManager(logger, HttpClient);
2016-10-30 00:22:20 +02:00
}
protected IDlnaEventManager EventManager { get; }
2020-08-20 21:04:57 +02:00
protected IHttpClient HttpClient { get; }
protected ILogger Logger { get; }
2016-10-30 00:22:20 +02:00
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
{
2020-08-20 21:04:57 +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 21:04:57 +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 21:04:57 +02:00
return EventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-30 00:22:20 +02:00
}
}
}