| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 | 
							- using MediaBrowser.Common.Events;
 
- using MediaBrowser.Common.Net;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Entities.Audio;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.Persistence;
 
- using MediaBrowser.Controller.Session;
 
- using MediaBrowser.Model.Logging;
 
- 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 IUserDataRepository _userDataRepository;
 
-         /// <summary>
 
-         /// The _user repository
 
-         /// </summary>
 
-         private readonly IUserRepository _userRepository;
 
-         /// <summary>
 
-         /// The _logger
 
-         /// </summary>
 
-         private readonly ILogger _logger;
 
-         /// <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<PlaybackProgressEventArgs> PlaybackStopped;
 
-         /// <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>
 
-         public SessionManager(IUserDataRepository userDataRepository, IServerConfigurationManager configurationManager, ILogger logger, IUserRepository userRepository)
 
-         {
 
-             _userDataRepository = userDataRepository;
 
-             _configurationManager = configurationManager;
 
-             _logger = logger;
 
-             _userRepository = userRepository;
 
-         }
 
-         /// <summary>
 
-         /// Gets all connections.
 
-         /// </summary>
 
-         /// <value>All connections.</value>
 
-         public IEnumerable<SessionInfo> Sessions
 
-         {
 
-             get { return _activeConnections.Values.OrderByDescending(c => c.LastActivityDate).ToList(); }
 
-         }
 
-         /// <summary>
 
-         /// The _true task result
 
-         /// </summary>
 
-         private readonly Task _trueTaskResult = Task.FromResult(true);
 
-         /// <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="user">The user.</param>
 
-         /// <returns>Task.</returns>
 
-         /// <exception cref="System.UnauthorizedAccessException"></exception>
 
-         /// <exception cref="System.ArgumentNullException">user</exception>
 
-         public async Task<SessionInfo> LogConnectionActivity(string clientType, string appVersion, string deviceId, string deviceName, 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 session = GetSessionInfo(clientType, appVersion, deviceId, deviceName, user);
 
-             
 
-             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;
 
-         }
 
-         /// <summary>
 
-         /// Updates the now playing item id.
 
-         /// </summary>
 
-         /// <param name="session">The session.</param>
 
-         /// <param name="item">The item.</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, bool isPaused, bool isMuted, long? currentPositionTicks = null)
 
-         {
 
-             session.IsMuted = isMuted;
 
-             session.IsPaused = isPaused;
 
-             session.NowPlayingPositionTicks = currentPositionTicks;
 
-             session.NowPlayingItem = item;
 
-             session.LastActivityDate = DateTime.UtcNow;
 
-         }
 
-         /// <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 (session.NowPlayingItem != null && session.NowPlayingItem.Id == item.Id)
 
-             {
 
-                 session.NowPlayingItem = null;
 
-                 session.NowPlayingPositionTicks = null;
 
-                 session.IsPaused = false;
 
-             }
 
-         }
 
-         /// <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="user">The user.</param>
 
-         /// <returns>SessionInfo.</returns>
 
-         private SessionInfo GetSessionInfo(string clientType, string appVersion, string deviceId, string deviceName, User user)
 
-         {
 
-             var key = clientType + deviceId + appVersion;
 
-             var connection = _activeConnections.GetOrAdd(key, keyName => new SessionInfo
 
-             {
 
-                 Client = clientType,
 
-                 DeviceId = deviceId,
 
-                 ApplicationVersion = appVersion,
 
-                 Id = Guid.NewGuid()
 
-             });
 
-             connection.DeviceName = deviceName;
 
-             connection.User = user;
 
-             return connection;
 
-         }
 
-         /// <summary>
 
-         /// Used to report that playback has started for an item
 
-         /// </summary>
 
-         /// <param name="item">The item.</param>
 
-         /// <param name="sessionId">The session id.</param>
 
-         /// <returns>Task.</returns>
 
-         /// <exception cref="System.ArgumentNullException"></exception>
 
-         public async Task OnPlaybackStart(BaseItem item, Guid sessionId)
 
-         {
 
-             if (item == null)
 
-             {
 
-                 throw new ArgumentNullException();
 
-             }
 
-             var session = Sessions.First(i => i.Id.Equals(sessionId));
 
-             UpdateNowPlayingItem(session, item, false, false);
 
-             var key = item.GetUserDataKey();
 
-             var user = session.User;
 
-             
 
-             var data = _userDataRepository.GetUserData(user.Id, key);
 
-             data.PlayCount++;
 
-             data.LastPlayedDate = DateTime.UtcNow;
 
-             if (!(item is Video))
 
-             {
 
-                 data.Played = true;
 
-             }
 
-             await _userDataRepository.SaveUserData(user.Id, key, data, CancellationToken.None).ConfigureAwait(false);
 
-             // Nothing to save here
 
-             // Fire events to inform plugins
 
-             EventHelper.QueueEventIfNotNull(PlaybackStart, this, new PlaybackProgressEventArgs
 
-             {
 
-                 Item = item,
 
-                 User = user
 
-             }, _logger);
 
-         }
 
-         /// <summary>
 
-         /// Used to report playback progress for an item
 
-         /// </summary>
 
-         /// <param name="item">The item.</param>
 
-         /// <param name="positionTicks">The position ticks.</param>
 
-         /// <param name="isPaused">if set to <c>true</c> [is paused].</param>
 
-         /// <param name="sessionId">The session id.</param>
 
-         /// <returns>Task.</returns>
 
-         /// <exception cref="System.ArgumentNullException"></exception>
 
-         /// <exception cref="System.ArgumentOutOfRangeException">positionTicks</exception>
 
-         public async Task OnPlaybackProgress(BaseItem item, long? positionTicks, bool isPaused, bool isMuted, Guid sessionId)
 
-         {
 
-             if (item == null)
 
-             {
 
-                 throw new ArgumentNullException();
 
-             }
 
-             if (positionTicks.HasValue && positionTicks.Value < 0)
 
-             {
 
-                 throw new ArgumentOutOfRangeException("positionTicks");
 
-             }
 
-             var session = Sessions.First(i => i.Id.Equals(sessionId));
 
-             UpdateNowPlayingItem(session, item, isPaused, isMuted, positionTicks);
 
-             var key = item.GetUserDataKey();
 
-             var user = session.User;
 
-             if (positionTicks.HasValue)
 
-             {
 
-                 var data = _userDataRepository.GetUserData(user.Id, key);
 
-                 UpdatePlayState(item, data, positionTicks.Value);
 
-                 await _userDataRepository.SaveUserData(user.Id, key, data, CancellationToken.None).ConfigureAwait(false);
 
-             }
 
-             EventHelper.QueueEventIfNotNull(PlaybackProgress, this, new PlaybackProgressEventArgs
 
-             {
 
-                 Item = item,
 
-                 User = user,
 
-                 PlaybackPositionTicks = positionTicks
 
-             }, _logger);
 
-         }
 
-         /// <summary>
 
-         /// Used to report that playback has ended for an item
 
-         /// </summary>
 
-         /// <param name="item">The item.</param>
 
-         /// <param name="positionTicks">The position ticks.</param>
 
-         /// <param name="sessionId">The session id.</param>
 
-         /// <returns>Task.</returns>
 
-         /// <exception cref="System.ArgumentNullException"></exception>
 
-         public async Task OnPlaybackStopped(BaseItem item, long? positionTicks, Guid sessionId)
 
-         {
 
-             if (item == null)
 
-             {
 
-                 throw new ArgumentNullException();
 
-             }
 
-             if (positionTicks.HasValue && positionTicks.Value < 0)
 
-             {
 
-                 throw new ArgumentOutOfRangeException("positionTicks");
 
-             }
 
-             
 
-             var session = Sessions.First(i => i.Id.Equals(sessionId));
 
-             RemoveNowPlayingItem(session, item);
 
-             var key = item.GetUserDataKey();
 
-             var user = session.User;
 
-             
 
-             var data = _userDataRepository.GetUserData(user.Id, key);
 
-             if (positionTicks.HasValue)
 
-             {
 
-                 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;
 
-             }
 
-             await _userDataRepository.SaveUserData(user.Id, key, data, CancellationToken.None).ConfigureAwait(false);
 
-             EventHelper.QueueEventIfNotNull(PlaybackStopped, this, new PlaybackProgressEventArgs
 
-             {
 
-                 Item = item,
 
-                 User = user,
 
-                 PlaybackPositionTicks = positionTicks
 
-             }, _logger);
 
-         }
 
-         /// <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 void UpdatePlayState(BaseItem item, UserItemData data, long positionTicks)
 
-         {
 
-             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 = true;
 
-                 }
 
-                 else
 
-                 {
 
-                     // Enforce MinResumeDuration
 
-                     var durationSeconds = TimeSpan.FromTicks(item.RunTimeTicks.Value).TotalSeconds;
 
-                     if (durationSeconds < _configurationManager.Configuration.MinResumeDurationSeconds)
 
-                     {
 
-                         positionTicks = 0;
 
-                         data.Played = true;
 
-                     }
 
-                 }
 
-             }
 
-             else if (!hasRuntime)
 
-             {
 
-                 // If we don't know the runtime we'll just have to assume it was fully played
 
-                 data.Played = true;
 
-                 positionTicks = 0;
 
-             }
 
-             if (item is Audio)
 
-             {
 
-                 positionTicks = 0;
 
-             }
 
-             data.PlaybackPositionTicks = positionTicks;
 
-         }
 
-     }
 
- }
 
 
  |