12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364 |
- using System.IO;
- using MediaBrowser.Common.Events;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Drawing;
- using MediaBrowser.Controller.Dto;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.Audio;
- using MediaBrowser.Controller.Entities.TV;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.LiveTv;
- using MediaBrowser.Controller.Persistence;
- using MediaBrowser.Controller.Session;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Library;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.Session;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Server.Implementations.Session
- {
- /// <summary>
- /// Class SessionManager
- /// </summary>
- public class SessionManager : ISessionManager
- {
- /// <summary>
- /// The _user data repository
- /// </summary>
- private readonly IUserDataManager _userDataRepository;
- /// <summary>
- /// The _user repository
- /// </summary>
- private readonly IUserRepository _userRepository;
- /// <summary>
- /// The _logger
- /// </summary>
- private readonly ILogger _logger;
- private readonly ILibraryManager _libraryManager;
- private readonly IUserManager _userManager;
- private readonly IMusicManager _musicManager;
- private readonly IDtoService _dtoService;
- private readonly IImageProcessor _imageProcessor;
- /// <summary>
- /// Gets or sets the configuration manager.
- /// </summary>
- /// <value>The configuration manager.</value>
- private readonly IServerConfigurationManager _configurationManager;
- /// <summary>
- /// The _active connections
- /// </summary>
- private readonly ConcurrentDictionary<string, SessionInfo> _activeConnections =
- new ConcurrentDictionary<string, SessionInfo>(StringComparer.OrdinalIgnoreCase);
- /// <summary>
- /// Occurs when [playback start].
- /// </summary>
- public event EventHandler<PlaybackProgressEventArgs> PlaybackStart;
- /// <summary>
- /// Occurs when [playback progress].
- /// </summary>
- public event EventHandler<PlaybackProgressEventArgs> PlaybackProgress;
- /// <summary>
- /// Occurs when [playback stopped].
- /// </summary>
- public event EventHandler<PlaybackStopEventArgs> PlaybackStopped;
- public event EventHandler<SessionEventArgs> SessionStarted;
- public event EventHandler<SessionEventArgs> SessionEnded;
- private IEnumerable<ISessionControllerFactory> _sessionFactories = new List<ISessionControllerFactory>();
- private readonly SemaphoreSlim _sessionLock = new SemaphoreSlim(1, 1);
- /// <summary>
- /// Initializes a new instance of the <see cref="SessionManager" /> class.
- /// </summary>
- /// <param name="userDataRepository">The user data repository.</param>
- /// <param name="configurationManager">The configuration manager.</param>
- /// <param name="logger">The logger.</param>
- /// <param name="userRepository">The user repository.</param>
- /// <param name="libraryManager">The library manager.</param>
- public SessionManager(IUserDataManager userDataRepository, IServerConfigurationManager configurationManager, ILogger logger, IUserRepository userRepository, ILibraryManager libraryManager, IUserManager userManager, IMusicManager musicManager, IDtoService dtoService, IImageProcessor imageProcessor)
- {
- _userDataRepository = userDataRepository;
- _configurationManager = configurationManager;
- _logger = logger;
- _userRepository = userRepository;
- _libraryManager = libraryManager;
- _userManager = userManager;
- _musicManager = musicManager;
- _dtoService = dtoService;
- _imageProcessor = imageProcessor;
- }
- /// <summary>
- /// Adds the parts.
- /// </summary>
- /// <param name="sessionFactories">The session factories.</param>
- public void AddParts(IEnumerable<ISessionControllerFactory> sessionFactories)
- {
- _sessionFactories = sessionFactories.ToList();
- }
- /// <summary>
- /// Gets all connections.
- /// </summary>
- /// <value>All connections.</value>
- public IEnumerable<SessionInfo> Sessions
- {
- get { return _activeConnections.Values.OrderByDescending(c => c.LastActivityDate).ToList(); }
- }
- private void OnSessionStarted(SessionInfo info)
- {
- EventHelper.QueueEventIfNotNull(SessionStarted, this, new SessionEventArgs
- {
- SessionInfo = info
- }, _logger);
- }
- private async void OnSessionEnded(SessionInfo info)
- {
- try
- {
- await SendSessionEndedNotification(info, CancellationToken.None).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendSessionEndedNotification", ex);
- }
- EventHelper.QueueEventIfNotNull(SessionEnded, this, new SessionEventArgs
- {
- SessionInfo = info
- }, _logger);
- var disposable = info.SessionController as IDisposable;
- if (disposable != null)
- {
- try
- {
- disposable.Dispose();
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error disposing session controller", ex);
- }
- }
- }
- /// <summary>
- /// Logs the user activity.
- /// </summary>
- /// <param name="clientType">Type of the client.</param>
- /// <param name="appVersion">The app version.</param>
- /// <param name="deviceId">The device id.</param>
- /// <param name="deviceName">Name of the device.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <param name="user">The user.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">user</exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- public async Task<SessionInfo> LogSessionActivity(string clientType, string appVersion, string deviceId, string deviceName, string remoteEndPoint, User user)
- {
- if (string.IsNullOrEmpty(clientType))
- {
- throw new ArgumentNullException("clientType");
- }
- if (string.IsNullOrEmpty(appVersion))
- {
- throw new ArgumentNullException("appVersion");
- }
- if (string.IsNullOrEmpty(deviceId))
- {
- throw new ArgumentNullException("deviceId");
- }
- if (string.IsNullOrEmpty(deviceName))
- {
- throw new ArgumentNullException("deviceName");
- }
- if (user != null && user.Configuration.IsDisabled)
- {
- throw new UnauthorizedAccessException(string.Format("The {0} account is currently disabled. Please consult with your administrator.", user.Name));
- }
- var activityDate = DateTime.UtcNow;
- var userId = user == null ? (Guid?)null : user.Id;
- var username = user == null ? null : user.Name;
- var session = await GetSessionInfo(clientType, appVersion, deviceId, deviceName, remoteEndPoint, userId, username).ConfigureAwait(false);
- session.LastActivityDate = activityDate;
- if (user == null)
- {
- return session;
- }
- var lastActivityDate = user.LastActivityDate;
- user.LastActivityDate = activityDate;
- // Don't log in the db anymore frequently than 10 seconds
- if (lastActivityDate.HasValue && (activityDate - lastActivityDate.Value).TotalSeconds < 10)
- {
- return session;
- }
- // Save this directly. No need to fire off all the events for this.
- await _userRepository.SaveUser(user, CancellationToken.None).ConfigureAwait(false);
- return session;
- }
- public async Task ReportSessionEnded(Guid sessionId)
- {
- await _sessionLock.WaitAsync(CancellationToken.None).ConfigureAwait(false);
- try
- {
- var session = GetSession(sessionId);
- if (session == null)
- {
- throw new ArgumentException("Session not found");
- }
- var key = GetSessionKey(session.Client, session.ApplicationVersion, session.DeviceId);
- SessionInfo removed;
- if (_activeConnections.TryRemove(key, out removed))
- {
- OnSessionEnded(removed);
- }
- }
- finally
- {
- _sessionLock.Release();
- }
- }
- /// <summary>
- /// Updates the now playing item id.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="item">The item.</param>
- /// <param name="mediaSourceId">The media version identifier.</param>
- /// <param name="isPaused">if set to <c>true</c> [is paused].</param>
- /// <param name="currentPositionTicks">The current position ticks.</param>
- private void UpdateNowPlayingItem(SessionInfo session, BaseItem item, string mediaSourceId, bool isPaused, long? currentPositionTicks = null)
- {
- session.IsPaused = isPaused;
- session.NowPlayingPositionTicks = currentPositionTicks;
- session.NowPlayingItem = item;
- session.LastActivityDate = DateTime.UtcNow;
- session.NowPlayingMediaSourceId = mediaSourceId;
- if (string.IsNullOrWhiteSpace(mediaSourceId))
- {
- session.NowPlayingRunTimeTicks = item.RunTimeTicks;
- }
- else
- {
- var version = _libraryManager.GetItemById(new Guid(mediaSourceId));
- session.NowPlayingRunTimeTicks = version.RunTimeTicks;
- }
- }
- /// <summary>
- /// Removes the now playing item id.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="item">The item.</param>
- private void RemoveNowPlayingItem(SessionInfo session, BaseItem item)
- {
- if (item == null)
- {
- throw new ArgumentNullException("item");
- }
- if (session.NowPlayingItem != null && session.NowPlayingItem.Id == item.Id)
- {
- session.NowPlayingItem = null;
- session.NowPlayingPositionTicks = null;
- session.IsPaused = false;
- session.NowPlayingRunTimeTicks = null;
- session.NowPlayingMediaSourceId = null;
- }
- }
- private string GetSessionKey(string clientType, string appVersion, string deviceId)
- {
- return clientType + deviceId + appVersion;
- }
- /// <summary>
- /// Gets the connection.
- /// </summary>
- /// <param name="clientType">Type of the client.</param>
- /// <param name="appVersion">The app version.</param>
- /// <param name="deviceId">The device id.</param>
- /// <param name="deviceName">Name of the device.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <param name="userId">The user identifier.</param>
- /// <param name="username">The username.</param>
- /// <returns>SessionInfo.</returns>
- private async Task<SessionInfo> GetSessionInfo(string clientType, string appVersion, string deviceId, string deviceName, string remoteEndPoint, Guid? userId, string username)
- {
- var key = GetSessionKey(clientType, appVersion, deviceId);
- await _sessionLock.WaitAsync(CancellationToken.None).ConfigureAwait(false);
- try
- {
- var connection = _activeConnections.GetOrAdd(key, keyName =>
- {
- var sessionInfo = new SessionInfo
- {
- Client = clientType,
- DeviceId = deviceId,
- ApplicationVersion = appVersion,
- Id = Guid.NewGuid()
- };
- OnSessionStarted(sessionInfo);
- return sessionInfo;
- });
- connection.DeviceName = deviceName;
- connection.UserId = userId;
- connection.UserName = username;
- connection.RemoteEndPoint = remoteEndPoint;
- if (!userId.HasValue)
- {
- connection.AdditionalUsers.Clear();
- }
- if (connection.SessionController == null)
- {
- connection.SessionController = _sessionFactories
- .Select(i => i.GetSessionController(connection))
- .FirstOrDefault(i => i != null);
- }
- return connection;
- }
- finally
- {
- _sessionLock.Release();
- }
- }
- private List<User> GetUsers(SessionInfo session)
- {
- var users = new List<User>();
- if (session.UserId.HasValue)
- {
- var user = _userManager.GetUserById(session.UserId.Value);
- if (user == null)
- {
- throw new InvalidOperationException("User not found");
- }
- users.Add(user);
- var additionalUsers = session.AdditionalUsers
- .Select(i => _userManager.GetUserById(new Guid(i.UserId)))
- .Where(i => i != null);
- users.AddRange(additionalUsers);
- }
- return users;
- }
- /// <summary>
- /// Used to report that playback has started for an item
- /// </summary>
- /// <param name="info">The info.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">info</exception>
- public async Task OnPlaybackStart(PlaybackInfo info)
- {
- if (info == null)
- {
- throw new ArgumentNullException("info");
- }
- if (info.SessionId == Guid.Empty)
- {
- throw new ArgumentNullException("info");
- }
- var session = Sessions.First(i => i.Id.Equals(info.SessionId));
- var item = info.Item;
- var mediaSourceId = GetMediaSourceId(item, info.MediaSourceId);
- UpdateNowPlayingItem(session, item, mediaSourceId, false);
- session.CanSeek = info.CanSeek;
- session.QueueableMediaTypes = info.QueueableMediaTypes;
- session.NowPlayingAudioStreamIndex = info.AudioStreamIndex;
- session.NowPlayingSubtitleStreamIndex = info.SubtitleStreamIndex;
- var key = item.GetUserDataKey();
- var users = GetUsers(session);
- foreach (var user in users)
- {
- await OnPlaybackStart(user.Id, key, item).ConfigureAwait(false);
- }
- // Nothing to save here
- // Fire events to inform plugins
- EventHelper.QueueEventIfNotNull(PlaybackStart, this, new PlaybackProgressEventArgs
- {
- Item = item,
- Users = users,
- MediaSourceId = info.MediaSourceId
- }, _logger);
- await SendPlaybackStartNotification(session, CancellationToken.None).ConfigureAwait(false);
- }
- /// <summary>
- /// Called when [playback start].
- /// </summary>
- /// <param name="userId">The user identifier.</param>
- /// <param name="userDataKey">The user data key.</param>
- /// <param name="item">The item.</param>
- /// <returns>Task.</returns>
- private async Task OnPlaybackStart(Guid userId, string userDataKey, IHasUserData item)
- {
- var data = _userDataRepository.GetUserData(userId, userDataKey);
- data.PlayCount++;
- data.LastPlayedDate = DateTime.UtcNow;
- if (!(item is Video))
- {
- data.Played = true;
- }
- await _userDataRepository.SaveUserData(userId, item, data, UserDataSaveReason.PlaybackStart, CancellationToken.None).ConfigureAwait(false);
- }
- /// <summary>
- /// Used to report playback progress for an item
- /// </summary>
- /// <param name="info">The info.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- /// <exception cref="System.ArgumentOutOfRangeException">positionTicks</exception>
- public async Task OnPlaybackProgress(Controller.Session.PlaybackProgressInfo info)
- {
- if (info == null)
- {
- throw new ArgumentNullException("info");
- }
- if (info.PositionTicks.HasValue && info.PositionTicks.Value < 0)
- {
- throw new ArgumentOutOfRangeException("positionTicks");
- }
- var session = Sessions.First(i => i.Id.Equals(info.SessionId));
- var mediaSourceId = GetMediaSourceId(info.Item, info.MediaSourceId);
- UpdateNowPlayingItem(session, info.Item, mediaSourceId, info.IsPaused, info.PositionTicks);
- session.IsMuted = info.IsMuted;
- session.VolumeLevel = info.VolumeLevel;
- session.NowPlayingAudioStreamIndex = info.AudioStreamIndex;
- session.NowPlayingSubtitleStreamIndex = info.SubtitleStreamIndex;
- var key = info.Item.GetUserDataKey();
- var users = GetUsers(session);
- foreach (var user in users)
- {
- await OnPlaybackProgress(user.Id, key, info.Item, info.PositionTicks).ConfigureAwait(false);
- }
- EventHelper.QueueEventIfNotNull(PlaybackProgress, this, new PlaybackProgressEventArgs
- {
- Item = info.Item,
- Users = users,
- PlaybackPositionTicks = info.PositionTicks,
- MediaSourceId = mediaSourceId
- }, _logger);
- }
- private async Task OnPlaybackProgress(Guid userId, string userDataKey, BaseItem item, long? positionTicks)
- {
- var data = _userDataRepository.GetUserData(userId, userDataKey);
- if (positionTicks.HasValue)
- {
- UpdatePlayState(item, data, positionTicks.Value);
- await _userDataRepository.SaveUserData(userId, item, data, UserDataSaveReason.PlaybackProgress, CancellationToken.None).ConfigureAwait(false);
- }
- }
- /// <summary>
- /// Used to report that playback has ended for an item
- /// </summary>
- /// <param name="info">The info.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">info</exception>
- /// <exception cref="System.ArgumentOutOfRangeException">positionTicks</exception>
- public async Task OnPlaybackStopped(Controller.Session.PlaybackStopInfo info)
- {
- if (info == null)
- {
- throw new ArgumentNullException("info");
- }
- if (info.Item == null)
- {
- throw new ArgumentException("PlaybackStopInfo.Item cannot be null");
- }
- if (info.SessionId == Guid.Empty)
- {
- throw new ArgumentException("PlaybackStopInfo.SessionId cannot be Guid.Empty");
- }
- if (info.PositionTicks.HasValue && info.PositionTicks.Value < 0)
- {
- throw new ArgumentOutOfRangeException("positionTicks");
- }
- var session = Sessions.First(i => i.Id.Equals(info.SessionId));
- RemoveNowPlayingItem(session, info.Item);
- var key = info.Item.GetUserDataKey();
- var users = GetUsers(session);
- var playedToCompletion = false;
- foreach (var user in users)
- {
- playedToCompletion = await OnPlaybackStopped(user.Id, key, info.Item, info.PositionTicks).ConfigureAwait(false);
- }
- var mediaSourceId = GetMediaSourceId(info.Item, info.MediaSourceId);
- EventHelper.QueueEventIfNotNull(PlaybackStopped, this, new PlaybackStopEventArgs
- {
- Item = info.Item,
- Users = users,
- PlaybackPositionTicks = info.PositionTicks,
- PlayedToCompletion = playedToCompletion,
- MediaSourceId = mediaSourceId
- }, _logger);
- await SendPlaybackStoppedNotification(session, CancellationToken.None).ConfigureAwait(false);
- }
- private string GetMediaSourceId(BaseItem item, string reportedMediaSourceId)
- {
- if (string.IsNullOrWhiteSpace(reportedMediaSourceId))
- {
- if (item is Video || item is Audio)
- {
- reportedMediaSourceId = item.Id.ToString("N");
- }
- }
- return reportedMediaSourceId;
- }
- private async Task<bool> OnPlaybackStopped(Guid userId, string userDataKey, BaseItem item, long? positionTicks)
- {
- var data = _userDataRepository.GetUserData(userId, userDataKey);
- bool playedToCompletion;
- if (positionTicks.HasValue)
- {
- playedToCompletion = UpdatePlayState(item, data, positionTicks.Value);
- }
- else
- {
- // If the client isn't able to report this, then we'll just have to make an assumption
- data.PlayCount++;
- data.Played = true;
- data.PlaybackPositionTicks = 0;
- playedToCompletion = true;
- }
- await _userDataRepository.SaveUserData(userId, item, data, UserDataSaveReason.PlaybackFinished, CancellationToken.None).ConfigureAwait(false);
- return playedToCompletion;
- }
- /// <summary>
- /// Updates playstate position for an item but does not save
- /// </summary>
- /// <param name="item">The item</param>
- /// <param name="data">User data for the item</param>
- /// <param name="positionTicks">The current playback position</param>
- private bool UpdatePlayState(BaseItem item, UserItemData data, long positionTicks)
- {
- var playedToCompletion = false;
- var hasRuntime = item.RunTimeTicks.HasValue && item.RunTimeTicks > 0;
- // If a position has been reported, and if we know the duration
- if (positionTicks > 0 && hasRuntime)
- {
- var pctIn = Decimal.Divide(positionTicks, item.RunTimeTicks.Value) * 100;
- // Don't track in very beginning
- if (pctIn < _configurationManager.Configuration.MinResumePct)
- {
- positionTicks = 0;
- }
- // If we're at the end, assume completed
- else if (pctIn > _configurationManager.Configuration.MaxResumePct || positionTicks >= item.RunTimeTicks.Value)
- {
- positionTicks = 0;
- data.Played = playedToCompletion = true;
- }
- else
- {
- // Enforce MinResumeDuration
- var durationSeconds = TimeSpan.FromTicks(item.RunTimeTicks.Value).TotalSeconds;
- if (durationSeconds < _configurationManager.Configuration.MinResumeDurationSeconds)
- {
- positionTicks = 0;
- data.Played = playedToCompletion = true;
- }
- }
- }
- else if (!hasRuntime)
- {
- // If we don't know the runtime we'll just have to assume it was fully played
- data.Played = playedToCompletion = true;
- positionTicks = 0;
- }
- if (item is Audio)
- {
- positionTicks = 0;
- }
- data.PlaybackPositionTicks = positionTicks;
- return playedToCompletion;
- }
- /// <summary>
- /// Gets the session.
- /// </summary>
- /// <param name="sessionId">The session identifier.</param>
- /// <returns>SessionInfo.</returns>
- /// <exception cref="ResourceNotFoundException"></exception>
- private SessionInfo GetSession(Guid sessionId)
- {
- var session = Sessions.First(i => i.Id.Equals(sessionId));
- if (session == null)
- {
- throw new ResourceNotFoundException(string.Format("Session {0} not found.", sessionId));
- }
- return session;
- }
- /// <summary>
- /// Gets the session for remote control.
- /// </summary>
- /// <param name="sessionId">The session id.</param>
- /// <returns>SessionInfo.</returns>
- /// <exception cref="ResourceNotFoundException"></exception>
- private SessionInfo GetSessionForRemoteControl(Guid sessionId)
- {
- var session = GetSession(sessionId);
- if (!session.SupportsRemoteControl)
- {
- throw new ArgumentException(string.Format("Session {0} does not support remote control.", session.Id));
- }
- return session;
- }
- public Task SendMessageCommand(Guid controllingSessionId, Guid sessionId, MessageCommand command, CancellationToken cancellationToken)
- {
- var session = GetSessionForRemoteControl(sessionId);
- var controllingSession = GetSession(controllingSessionId);
- AssertCanControl(session, controllingSession);
- return session.SessionController.SendMessageCommand(command, cancellationToken);
- }
- public Task SendGeneralCommand(Guid controllingSessionId, Guid sessionId, GeneralCommand command, CancellationToken cancellationToken)
- {
- var session = GetSessionForRemoteControl(sessionId);
- var controllingSession = GetSession(controllingSessionId);
- AssertCanControl(session, controllingSession);
- return session.SessionController.SendGeneralCommand(command, cancellationToken);
- }
- public Task SendPlayCommand(Guid controllingSessionId, Guid sessionId, PlayRequest command, CancellationToken cancellationToken)
- {
- var session = GetSessionForRemoteControl(sessionId);
- var user = session.UserId.HasValue ? _userManager.GetUserById(session.UserId.Value) : null;
- List<BaseItem> items;
- if (command.PlayCommand == PlayCommand.PlayInstantMix)
- {
- items = command.ItemIds.SelectMany(i => TranslateItemForInstantMix(i, user))
- .Where(i => i.LocationType != LocationType.Virtual)
- .ToList();
- command.PlayCommand = PlayCommand.PlayNow;
- }
- else
- {
- items = command.ItemIds.SelectMany(i => TranslateItemForPlayback(i, user))
- .Where(i => i.LocationType != LocationType.Virtual)
- .ToList();
- }
- if (command.PlayCommand == PlayCommand.PlayShuffle)
- {
- items = items.OrderBy(i => Guid.NewGuid()).ToList();
- command.PlayCommand = PlayCommand.PlayNow;
- }
- command.ItemIds = items.Select(i => i.Id.ToString("N")).ToArray();
- if (user != null)
- {
- if (items.Any(i => i.GetPlayAccess(user) != PlayAccess.Full))
- {
- throw new ArgumentException(string.Format("{0} is not allowed to play media.", user.Name));
- }
- }
- if (command.PlayCommand != PlayCommand.PlayNow)
- {
- if (items.Any(i => !session.QueueableMediaTypes.Contains(i.MediaType, StringComparer.OrdinalIgnoreCase)))
- {
- throw new ArgumentException(string.Format("{0} is unable to queue the requested media type.", session.DeviceName ?? session.Id.ToString()));
- }
- }
- else
- {
- if (items.Any(i => !session.PlayableMediaTypes.Contains(i.MediaType, StringComparer.OrdinalIgnoreCase)))
- {
- throw new ArgumentException(string.Format("{0} is unable to play the requested media type.", session.DeviceName ?? session.Id.ToString()));
- }
- }
- var controllingSession = GetSession(controllingSessionId);
- AssertCanControl(session, controllingSession);
- if (controllingSession.UserId.HasValue)
- {
- command.ControllingUserId = controllingSession.UserId.Value.ToString("N");
- }
- return session.SessionController.SendPlayCommand(command, cancellationToken);
- }
- private IEnumerable<BaseItem> TranslateItemForPlayback(string id, User user)
- {
- var item = _libraryManager.GetItemById(new Guid(id));
- if (item.IsFolder)
- {
- var folder = (Folder)item;
- var items = user == null ? folder.RecursiveChildren :
- folder.GetRecursiveChildren(user);
- items = items.Where(i => !i.IsFolder);
- items = items.OrderBy(i => i.SortName);
- return items;
- }
- return new[] { item };
- }
- private IEnumerable<BaseItem> TranslateItemForInstantMix(string id, User user)
- {
- var item = _libraryManager.GetItemById(new Guid(id));
- var audio = item as Audio;
- if (audio != null)
- {
- return _musicManager.GetInstantMixFromSong(audio, user);
- }
- var artist = item as MusicArtist;
- if (artist != null)
- {
- return _musicManager.GetInstantMixFromArtist(artist.Name, user);
- }
- var album = item as MusicAlbum;
- if (album != null)
- {
- return _musicManager.GetInstantMixFromAlbum(album, user);
- }
- var genre = item as MusicGenre;
- if (genre != null)
- {
- return _musicManager.GetInstantMixFromGenres(new[] { genre.Name }, user);
- }
- return new BaseItem[] { };
- }
- public Task SendBrowseCommand(Guid controllingSessionId, Guid sessionId, BrowseRequest command, CancellationToken cancellationToken)
- {
- var generalCommand = new GeneralCommand
- {
- Name = GeneralCommandType.DisplayContent.ToString()
- };
- generalCommand.Arguments["Context"] = command.Context;
- generalCommand.Arguments["ItemId"] = command.ItemId;
- generalCommand.Arguments["ItemName"] = command.ItemName;
- generalCommand.Arguments["ItemType"] = command.ItemType;
- return SendGeneralCommand(controllingSessionId, sessionId, generalCommand, cancellationToken);
- }
- public Task SendPlaystateCommand(Guid controllingSessionId, Guid sessionId, PlaystateRequest command, CancellationToken cancellationToken)
- {
- var session = GetSessionForRemoteControl(sessionId);
- if (command.Command == PlaystateCommand.Seek && !session.CanSeek)
- {
- throw new ArgumentException(string.Format("Session {0} is unable to seek.", session.Id));
- }
- var controllingSession = GetSession(controllingSessionId);
- AssertCanControl(session, controllingSession);
- if (controllingSession.UserId.HasValue)
- {
- command.ControllingUserId = controllingSession.UserId.Value.ToString("N");
- }
- return session.SessionController.SendPlaystateCommand(command, cancellationToken);
- }
- private void AssertCanControl(SessionInfo session, SessionInfo controllingSession)
- {
- if (session == null)
- {
- throw new ArgumentNullException("session");
- }
- if (controllingSession == null)
- {
- throw new ArgumentNullException("controllingSession");
- }
- }
- /// <summary>
- /// Sends the restart required message.
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- public Task SendRestartRequiredNotification(CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendRestartRequiredNotification(cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendRestartRequiredNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- /// <summary>
- /// Sends the server shutdown notification.
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- public Task SendServerShutdownNotification(CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendServerShutdownNotification(cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendServerShutdownNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- /// <summary>
- /// Sends the server restart notification.
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- public Task SendServerRestartNotification(CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendServerRestartNotification(cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendServerRestartNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- public Task SendSessionEndedNotification(SessionInfo sessionInfo, CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var dto = GetSessionInfoDto(sessionInfo);
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendSessionEndedNotification(dto, cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendSessionEndedNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- public Task SendPlaybackStartNotification(SessionInfo sessionInfo, CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var dto = GetSessionInfoDto(sessionInfo);
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendPlaybackStartNotification(dto, cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendPlaybackStartNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- public Task SendPlaybackStoppedNotification(SessionInfo sessionInfo, CancellationToken cancellationToken)
- {
- var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var dto = GetSessionInfoDto(sessionInfo);
- var tasks = sessions.Select(session => Task.Run(async () =>
- {
- try
- {
- await session.SessionController.SendPlaybackStoppedNotification(dto, cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error in SendPlaybackStoppedNotification.", ex);
- }
- }, cancellationToken));
- return Task.WhenAll(tasks);
- }
- /// <summary>
- /// Adds the additional user.
- /// </summary>
- /// <param name="sessionId">The session identifier.</param>
- /// <param name="userId">The user identifier.</param>
- /// <exception cref="System.UnauthorizedAccessException">Cannot modify additional users without authenticating first.</exception>
- /// <exception cref="System.ArgumentException">The requested user is already the primary user of the session.</exception>
- public void AddAdditionalUser(Guid sessionId, Guid userId)
- {
- var session = GetSession(sessionId);
- if (!session.UserId.HasValue)
- {
- throw new UnauthorizedAccessException("Cannot modify additional users without authenticating first.");
- }
- if (session.UserId.Value == userId)
- {
- throw new ArgumentException("The requested user is already the primary user of the session.");
- }
- if (session.AdditionalUsers.All(i => new Guid(i.UserId) != userId))
- {
- var user = _userManager.GetUserById(userId);
- session.AdditionalUsers.Add(new SessionUserInfo
- {
- UserId = userId.ToString("N"),
- UserName = user.Name
- });
- }
- }
- /// <summary>
- /// Removes the additional user.
- /// </summary>
- /// <param name="sessionId">The session identifier.</param>
- /// <param name="userId">The user identifier.</param>
- /// <exception cref="System.UnauthorizedAccessException">Cannot modify additional users without authenticating first.</exception>
- /// <exception cref="System.ArgumentException">The requested user is already the primary user of the session.</exception>
- public void RemoveAdditionalUser(Guid sessionId, Guid userId)
- {
- var session = GetSession(sessionId);
- if (!session.UserId.HasValue)
- {
- throw new UnauthorizedAccessException("Cannot modify additional users without authenticating first.");
- }
- if (session.UserId.Value == userId)
- {
- throw new ArgumentException("The requested user is already the primary user of the session.");
- }
- var user = session.AdditionalUsers.FirstOrDefault(i => new Guid(i.UserId) == userId);
- if (user != null)
- {
- session.AdditionalUsers.Remove(user);
- }
- }
- /// <summary>
- /// Authenticates the new session.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="password">The password.</param>
- /// <param name="clientType">Type of the client.</param>
- /// <param name="appVersion">The application version.</param>
- /// <param name="deviceId">The device identifier.</param>
- /// <param name="deviceName">Name of the device.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns>Task{SessionInfo}.</returns>
- /// <exception cref="UnauthorizedAccessException"></exception>
- public async Task<SessionInfo> AuthenticateNewSession(User user, string password, string clientType, string appVersion, string deviceId, string deviceName, string remoteEndPoint)
- {
- var result = await _userManager.AuthenticateUser(user, password).ConfigureAwait(false);
- if (!result)
- {
- throw new UnauthorizedAccessException("Invalid user or password entered.");
- }
- return await LogSessionActivity(clientType, appVersion, deviceId, deviceName, remoteEndPoint, user).ConfigureAwait(false);
- }
- /// <summary>
- /// Reports the capabilities.
- /// </summary>
- /// <param name="sessionId">The session identifier.</param>
- /// <param name="capabilities">The capabilities.</param>
- public void ReportCapabilities(Guid sessionId, SessionCapabilities capabilities)
- {
- var session = GetSession(sessionId);
- session.PlayableMediaTypes = capabilities.PlayableMediaTypes;
- session.SupportedCommands = capabilities.SupportedCommands;
- }
- public SessionInfoDto GetSessionInfoDto(SessionInfo session)
- {
- var dto = new SessionInfoDto
- {
- Client = session.Client,
- DeviceId = session.DeviceId,
- DeviceName = session.DeviceName,
- Id = session.Id.ToString("N"),
- LastActivityDate = session.LastActivityDate,
- NowPlayingPositionTicks = session.NowPlayingPositionTicks,
- SupportsRemoteControl = session.SupportsRemoteControl,
- IsPaused = session.IsPaused,
- IsMuted = session.IsMuted,
- NowViewingContext = session.NowViewingContext,
- NowViewingItemId = session.NowViewingItemId,
- NowViewingItemName = session.NowViewingItemName,
- NowViewingItemType = session.NowViewingItemType,
- ApplicationVersion = session.ApplicationVersion,
- CanSeek = session.CanSeek,
- QueueableMediaTypes = session.QueueableMediaTypes,
- PlayableMediaTypes = session.PlayableMediaTypes,
- RemoteEndPoint = session.RemoteEndPoint,
- AdditionalUsers = session.AdditionalUsers,
- SupportedCommands = session.SupportedCommands,
- NowPlayingAudioStreamIndex = session.NowPlayingAudioStreamIndex,
- NowPlayingSubtitleStreamIndex = session.NowPlayingSubtitleStreamIndex,
- UserName = session.UserName,
- VolumeLevel = session.VolumeLevel
- };
- if (session.NowPlayingItem != null)
- {
- dto.NowPlayingItem = GetNowPlayingInfo(session.NowPlayingItem, session.NowPlayingMediaSourceId, session.NowPlayingRunTimeTicks);
- }
- if (session.UserId.HasValue)
- {
- dto.UserId = session.UserId.Value.ToString("N");
- var user = _userManager.GetUserById(session.UserId.Value);
- if (user != null)
- {
- dto.UserPrimaryImageTag = GetImageCacheTag(user, ImageType.Primary);
- }
- }
- return dto;
- }
- /// <summary>
- /// Converts a BaseItem to a BaseItemInfo
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="mediaSourceId">The media version identifier.</param>
- /// <param name="nowPlayingRuntimeTicks">The now playing runtime ticks.</param>
- /// <returns>BaseItemInfo.</returns>
- /// <exception cref="System.ArgumentNullException">item</exception>
- private BaseItemInfo GetNowPlayingInfo(BaseItem item, string mediaSourceId, long? nowPlayingRuntimeTicks)
- {
- if (item == null)
- {
- throw new ArgumentNullException("item");
- }
- var info = new BaseItemInfo
- {
- Id = GetDtoId(item),
- Name = item.Name,
- MediaType = item.MediaType,
- Type = item.GetClientTypeName(),
- RunTimeTicks = nowPlayingRuntimeTicks,
- MediaSourceId = mediaSourceId,
- IndexNumber = item.IndexNumber,
- ParentIndexNumber = item.ParentIndexNumber,
- PremiereDate = item.PremiereDate,
- ProductionYear = item.ProductionYear
- };
- info.PrimaryImageTag = GetImageCacheTag(item, ImageType.Primary);
- if (info.PrimaryImageTag.HasValue)
- {
- info.PrimaryImageItemId = GetDtoId(item);
- }
- var episode = item as Episode;
- if (episode != null)
- {
- info.IndexNumberEnd = episode.IndexNumberEnd;
- }
- var hasSeries = item as IHasSeries;
- if (hasSeries != null)
- {
- info.SeriesName = hasSeries.SeriesName;
- }
- var recording = item as ILiveTvRecording;
- if (recording != null && recording.RecordingInfo != null)
- {
- if (recording.RecordingInfo.IsSeries)
- {
- info.Name = recording.RecordingInfo.EpisodeTitle;
- info.SeriesName = recording.RecordingInfo.Name;
- if (string.IsNullOrWhiteSpace(info.Name))
- {
- info.Name = recording.RecordingInfo.Name;
- }
- }
- }
- var audio = item as Audio;
- if (audio != null)
- {
- info.Album = audio.Album;
- info.Artists = audio.Artists;
- if (!info.PrimaryImageTag.HasValue)
- {
- var album = audio.Parents.OfType<MusicAlbum>().FirstOrDefault();
- if (album != null && album.HasImage(ImageType.Primary))
- {
- info.PrimaryImageTag = GetImageCacheTag(album, ImageType.Primary);
- if (info.PrimaryImageTag.HasValue)
- {
- info.PrimaryImageItemId = GetDtoId(album);
- }
- }
- }
- }
- var musicVideo = item as MusicVideo;
- if (musicVideo != null)
- {
- info.Album = musicVideo.Album;
- if (!string.IsNullOrWhiteSpace(musicVideo.Artist))
- {
- info.Artists.Add(musicVideo.Artist);
- }
- }
-
- var backropItem = item.HasImage(ImageType.Backdrop) ? item : null;
- var thumbItem = item.HasImage(ImageType.Thumb) ? item : null;
- if (thumbItem == null)
- {
- if (episode != null)
- {
- var series = episode.Series;
- if (series != null && series.HasImage(ImageType.Thumb))
- {
- thumbItem = series;
- }
- }
- }
- if (backropItem == null)
- {
- if (episode != null)
- {
- var series = episode.Series;
- if (series != null && series.HasImage(ImageType.Backdrop))
- {
- backropItem = series;
- }
- }
- }
- if (backropItem == null)
- {
- backropItem = item.Parents.FirstOrDefault(i => i.HasImage(ImageType.Backdrop));
- }
- if (thumbItem == null)
- {
- thumbItem = item.Parents.FirstOrDefault(i => i.HasImage(ImageType.Thumb));
- }
- if (thumbItem != null)
- {
- info.ThumbImageTag = GetImageCacheTag(thumbItem, ImageType.Thumb);
- info.ThumbItemId = GetDtoId(thumbItem);
- }
- if (backropItem != null)
- {
- info.BackdropImageTag = GetImageCacheTag(backropItem, ImageType.Backdrop);
- info.BackdropItemId = GetDtoId(backropItem);
- }
- return info;
- }
- private Guid? GetImageCacheTag(BaseItem item, ImageType type)
- {
- try
- {
- return _imageProcessor.GetImageCacheTag(item, type);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error getting {0} image info", ex, type);
- return null;
- }
- }
- private string GetDtoId(BaseItem item)
- {
- return _dtoService.GetDtoId(item);
- }
- }
- }
|