jellyfin/MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs

162 lines
4.9 KiB
C#
Raw Normal View History

2013-12-24 01:00:27 +01:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Net;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.Session;
using MediaBrowser.Model.System;
using System;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Roku
2013-12-24 01:00:27 +01:00
{
public class RokuSessionController : ISessionController
2013-12-24 01:00:27 +01:00
{
private readonly IHttpClient _httpClient;
private readonly IJsonSerializer _json;
private readonly IServerApplicationHost _appHost;
public SessionInfo Session { get; private set; }
public RokuSessionController(IHttpClient httpClient, IJsonSerializer json, IServerApplicationHost appHost, SessionInfo session)
2013-12-24 01:00:27 +01:00
{
_httpClient = httpClient;
_json = json;
_appHost = appHost;
Session = session;
}
public bool SupportsMediaRemoteControl
{
2014-03-29 20:02:43 +01:00
get { return false; }
2013-12-24 01:00:27 +01:00
}
public bool IsSessionActive
{
get
{
return (DateTime.UtcNow - Session.LastActivityDate).TotalMinutes <= 10;
}
}
public Task SendSystemCommand(SystemCommand command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<string>
{
MessageType = "SystemCommand",
Data = command.ToString()
}, cancellationToken);
}
public Task SendMessageCommand(MessageCommand command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<MessageCommand>
{
MessageType = "MessageCommand",
Data = command
}, cancellationToken);
}
public Task SendPlayCommand(PlayRequest command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<PlayRequest>
{
MessageType = "Play",
Data = command
}, cancellationToken);
}
public Task SendBrowseCommand(BrowseRequest command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<BrowseRequest>
{
MessageType = "Browse",
Data = command
}, cancellationToken);
}
public Task SendPlaystateCommand(PlaystateRequest command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<PlaystateRequest>
{
MessageType = "Playstate",
Data = command
}, cancellationToken);
}
2014-02-03 18:44:13 +01:00
private readonly Task _cachedTask = Task.FromResult(true);
2013-12-24 01:00:27 +01:00
public Task SendLibraryUpdateInfo(LibraryUpdateInfo info, CancellationToken cancellationToken)
{
// Roku probably won't care about this
2014-02-03 18:44:13 +01:00
return _cachedTask;
2013-12-24 01:00:27 +01:00
}
public Task SendRestartRequiredNotification(CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<SystemInfo>
{
MessageType = "RestartRequired",
Data = _appHost.GetSystemInfo()
}, cancellationToken);
}
public Task SendUserDataChangeInfo(UserDataChangeInfo info, CancellationToken cancellationToken)
{
// Roku probably won't care about this
2014-02-03 18:44:13 +01:00
return _cachedTask;
2013-12-24 01:00:27 +01:00
}
public Task SendServerShutdownNotification(CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<string>
{
MessageType = "ServerShuttingDown",
Data = string.Empty
}, cancellationToken);
}
public Task SendServerRestartNotification(CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<string>
{
MessageType = "ServerRestarting",
Data = string.Empty
}, cancellationToken);
}
private Task SendCommand(object obj, CancellationToken cancellationToken)
{
var json = _json.SerializeToString(obj);
return _httpClient.Post(new HttpRequestOptions
{
2013-12-26 04:44:26 +01:00
Url = "http://" + Session.RemoteEndPoint + "/mb/remotecontrol",
2013-12-24 01:00:27 +01:00
CancellationToken = cancellationToken,
RequestContent = json,
RequestContentType = "application/json"
});
}
2014-03-28 20:58:18 +01:00
public Task SendGenericCommand(GenericCommand command, CancellationToken cancellationToken)
{
return SendCommand(new WebSocketMessage<GenericCommand>
{
MessageType = "Command",
Data = command
}, cancellationToken);
}
2013-12-24 01:00:27 +01:00
}
}