2019-12-27 07:20:27 -07:00
|
|
|
using System;
|
2014-08-11 07:15:53 -07:00
|
|
|
using System.Threading.Tasks;
|
2020-08-13 17:48:28 -07:00
|
|
|
using Jellyfin.Data.Events;
|
2017-10-04 11:51:26 -07:00
|
|
|
using MediaBrowser.Controller.Net;
|
2019-01-13 12:24:58 -07:00
|
|
|
using MediaBrowser.Model.Activity;
|
2020-09-25 00:25:59 -07:00
|
|
|
using MediaBrowser.Model.Session;
|
2019-01-13 12:24:58 -07:00
|
|
|
using Microsoft.Extensions.Logging;
|
2014-08-11 07:15:53 -07:00
|
|
|
|
2020-08-03 12:09:32 -07:00
|
|
|
namespace Jellyfin.Api.WebSocketListeners
|
2014-08-11 07:15:53 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// Class SessionInfoWebSocketListener.
|
2014-08-11 07:15:53 -07:00
|
|
|
/// </summary>
|
2020-11-28 01:50:16 -07:00
|
|
|
public class ActivityLogWebSocketListener : BasePeriodicWebSocketListener<ActivityLogEntry[], WebSocketListenerState>
|
2014-08-11 07:15:53 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// The _kernel.
|
2014-08-11 07:15:53 -07:00
|
|
|
/// </summary>
|
|
|
|
private readonly IActivityManager _activityManager;
|
|
|
|
|
2020-08-03 12:09:32 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="ActivityLogWebSocketListener"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="logger">Instance of the <see cref="ILogger{ActivityLogWebSocketListener}"/> interface.</param>
|
|
|
|
/// <param name="activityManager">Instance of the <see cref="IActivityManager"/> interface.</param>
|
|
|
|
public ActivityLogWebSocketListener(ILogger<ActivityLogWebSocketListener> logger, IActivityManager activityManager)
|
|
|
|
: base(logger)
|
2014-08-11 07:15:53 -07:00
|
|
|
{
|
|
|
|
_activityManager = activityManager;
|
2019-12-27 07:20:27 -07:00
|
|
|
_activityManager.EntryCreated += OnEntryCreated;
|
2014-08-11 07:15:53 -07:00
|
|
|
}
|
|
|
|
|
2020-09-25 00:25:59 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
protected override SessionMessageType Type => SessionMessageType.ActivityLogEntry;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
protected override SessionMessageType StartType => SessionMessageType.ActivityLogEntryStart;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
protected override SessionMessageType StopType => SessionMessageType.ActivityLogEntryStop;
|
2014-08-11 07:15:53 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the data to send.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Task{SystemInfo}.</returns>
|
2019-12-27 07:20:27 -07:00
|
|
|
protected override Task<ActivityLogEntry[]> GetDataToSend()
|
2014-08-11 07:15:53 -07:00
|
|
|
{
|
2019-12-27 07:20:27 -07:00
|
|
|
return Task.FromResult(Array.Empty<ActivityLogEntry>());
|
2014-08-11 07:15:53 -07:00
|
|
|
}
|
2019-01-07 16:27:46 -07:00
|
|
|
|
2019-12-27 07:20:27 -07:00
|
|
|
/// <inheritdoc />
|
2014-08-11 07:15:53 -07:00
|
|
|
protected override void Dispose(bool dispose)
|
|
|
|
{
|
2019-12-27 07:20:27 -07:00
|
|
|
_activityManager.EntryCreated -= OnEntryCreated;
|
2014-08-11 07:15:53 -07:00
|
|
|
|
|
|
|
base.Dispose(dispose);
|
|
|
|
}
|
2020-08-03 12:09:32 -07:00
|
|
|
|
2020-11-13 09:04:31 -07:00
|
|
|
private void OnEntryCreated(object? sender, GenericEventArgs<ActivityLogEntry> e)
|
2020-08-03 12:09:32 -07:00
|
|
|
{
|
2020-11-28 03:21:53 -07:00
|
|
|
SendData(true).GetAwaiter().GetResult();
|
2020-08-03 12:09:32 -07:00
|
|
|
}
|
2014-08-11 07:15:53 -07:00
|
|
|
}
|
|
|
|
}
|