2013-03-06 22:34:00 -07:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-02-22 08:16:48 -07:00
|
|
|
|
using MediaBrowser.Controller;
|
2014-12-26 12:34:39 -07:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2013-02-21 13:26:35 -07:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 21:23:06 -07:00
|
|
|
|
using MediaBrowser.Model.System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-08-10 15:13:17 -07:00
|
|
|
|
namespace MediaBrowser.Api.System
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class SystemInfoWebSocketListener
|
|
|
|
|
/// </summary>
|
2014-05-10 10:28:03 -07:00
|
|
|
|
public class SystemInfoWebSocketListener : BasePeriodicWebSocketListener<SystemInfo, WebSocketListenerState>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
protected override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "SystemInfo"; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-22 08:16:48 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _kernel
|
|
|
|
|
/// </summary>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
private readonly IServerApplicationHost _appHost;
|
2013-02-22 08:16:48 -07:00
|
|
|
|
|
2013-02-21 13:26:35 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="SystemInfoWebSocketListener" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="logger">The logger.</param>
|
2013-04-10 08:32:09 -07:00
|
|
|
|
/// <param name="appHost">The app host.</param>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
public SystemInfoWebSocketListener(ILogger logger, IServerApplicationHost appHost)
|
2013-02-21 13:26:35 -07:00
|
|
|
|
: base(logger)
|
|
|
|
|
{
|
2013-03-06 22:34:00 -07:00
|
|
|
|
_appHost = appHost;
|
2013-02-21 13:26:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the data to send.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state">The state.</param>
|
|
|
|
|
/// <returns>Task{SystemInfo}.</returns>
|
2014-05-10 10:28:03 -07:00
|
|
|
|
protected override Task<SystemInfo> GetDataToSend(WebSocketListenerState state)
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-03-06 22:34:00 -07:00
|
|
|
|
return Task.FromResult(_appHost.GetSystemInfo());
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|