| | 1 | | #pragma warning disable RS0030 // Do not use banned APIs |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Globalization; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading; |
| | 8 | | using BitFaster.Caching.Lru; |
| | 9 | | using Jellyfin.Database.Implementations; |
| | 10 | | using Jellyfin.Database.Implementations.Entities; |
| | 11 | | using MediaBrowser.Controller.Configuration; |
| | 12 | | using MediaBrowser.Controller.Dto; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Controller.Library; |
| | 15 | | using MediaBrowser.Model.Dto; |
| | 16 | | using MediaBrowser.Model.Entities; |
| | 17 | | using Microsoft.EntityFrameworkCore; |
| | 18 | | using AudioBook = MediaBrowser.Controller.Entities.AudioBook; |
| | 19 | | using Book = MediaBrowser.Controller.Entities.Book; |
| | 20 | |
|
| | 21 | | namespace Emby.Server.Implementations.Library |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// Class UserDataManager. |
| | 25 | | /// </summary> |
| | 26 | | public class UserDataManager : IUserDataManager |
| | 27 | | { |
| | 28 | | private readonly IServerConfigurationManager _config; |
| | 29 | | private readonly IDbContextFactory<JellyfinDbContext> _repository; |
| | 30 | | private readonly FastConcurrentLru<string, UserItemData> _cache; |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Initializes a new instance of the <see cref="UserDataManager"/> class. |
| | 34 | | /// </summary> |
| | 35 | | /// <param name="config">Instance of the <see cref="IServerConfigurationManager"/> interface.</param> |
| | 36 | | /// <param name="repository">Instance of the <see cref="IDbContextFactory{JellyfinDbContext}"/> interface.</para |
| | 37 | | public UserDataManager( |
| | 38 | | IServerConfigurationManager config, |
| | 39 | | IDbContextFactory<JellyfinDbContext> repository) |
| | 40 | | { |
| 21 | 41 | | _config = config; |
| 21 | 42 | | _repository = repository; |
| 21 | 43 | | _cache = new FastConcurrentLru<string, UserItemData>(Environment.ProcessorCount, _config.Configuration.Cache |
| 21 | 44 | | } |
| | 45 | |
|
| | 46 | | /// <inheritdoc /> |
| | 47 | | public event EventHandler<UserDataSaveEventArgs>? UserDataSaved; |
| | 48 | |
|
| | 49 | | /// <inheritdoc /> |
| | 50 | | public void SaveUserData(User user, BaseItem item, UserItemData userData, UserDataSaveReason reason, Cancellatio |
| | 51 | | { |
| 0 | 52 | | ArgumentNullException.ThrowIfNull(userData); |
| | 53 | |
|
| 0 | 54 | | ArgumentNullException.ThrowIfNull(item); |
| | 55 | |
|
| 0 | 56 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 57 | |
|
| 0 | 58 | | var keys = item.GetUserDataKeys(); |
| | 59 | |
|
| 0 | 60 | | using var dbContext = _repository.CreateDbContext(); |
| 0 | 61 | | using var transaction = dbContext.Database.BeginTransaction(); |
| | 62 | |
|
| 0 | 63 | | foreach (var key in keys) |
| | 64 | | { |
| 0 | 65 | | userData.Key = key; |
| 0 | 66 | | var userDataEntry = Map(userData, user.Id, item.Id); |
| 0 | 67 | | if (dbContext.UserData.Any(f => f.ItemId == userDataEntry.ItemId && f.UserId == userDataEntry.UserId && |
| | 68 | | { |
| 0 | 69 | | dbContext.UserData.Attach(userDataEntry).State = EntityState.Modified; |
| | 70 | | } |
| | 71 | | else |
| | 72 | | { |
| 0 | 73 | | dbContext.UserData.Add(userDataEntry); |
| | 74 | | } |
| | 75 | | } |
| | 76 | |
|
| 0 | 77 | | dbContext.SaveChanges(); |
| 0 | 78 | | transaction.Commit(); |
| | 79 | |
|
| 0 | 80 | | var userId = user.InternalId; |
| 0 | 81 | | var cacheKey = GetCacheKey(userId, item.Id); |
| 0 | 82 | | _cache.AddOrUpdate(cacheKey, userData); |
| | 83 | |
|
| 0 | 84 | | UserDataSaved?.Invoke(this, new UserDataSaveEventArgs |
| 0 | 85 | | { |
| 0 | 86 | | Keys = keys, |
| 0 | 87 | | UserData = userData, |
| 0 | 88 | | SaveReason = reason, |
| 0 | 89 | | UserId = user.Id, |
| 0 | 90 | | Item = item |
| 0 | 91 | | }); |
| 0 | 92 | | } |
| | 93 | |
|
| | 94 | | /// <inheritdoc /> |
| | 95 | | public void SaveUserData(User user, BaseItem item, UpdateUserItemDataDto userDataDto, UserDataSaveReason reason) |
| | 96 | | { |
| 0 | 97 | | ArgumentNullException.ThrowIfNull(user); |
| 0 | 98 | | ArgumentNullException.ThrowIfNull(item); |
| 0 | 99 | | ArgumentNullException.ThrowIfNull(userDataDto); |
| | 100 | |
|
| 0 | 101 | | var userData = GetUserData(user, item) ?? throw new InvalidOperationException("UserData should not be null." |
| | 102 | |
|
| 0 | 103 | | if (userDataDto.PlaybackPositionTicks.HasValue) |
| | 104 | | { |
| 0 | 105 | | userData.PlaybackPositionTicks = userDataDto.PlaybackPositionTicks.Value; |
| | 106 | | } |
| | 107 | |
|
| 0 | 108 | | if (userDataDto.PlayCount.HasValue) |
| | 109 | | { |
| 0 | 110 | | userData.PlayCount = userDataDto.PlayCount.Value; |
| | 111 | | } |
| | 112 | |
|
| 0 | 113 | | if (userDataDto.IsFavorite.HasValue) |
| | 114 | | { |
| 0 | 115 | | userData.IsFavorite = userDataDto.IsFavorite.Value; |
| | 116 | | } |
| | 117 | |
|
| 0 | 118 | | if (userDataDto.Likes.HasValue) |
| | 119 | | { |
| 0 | 120 | | userData.Likes = userDataDto.Likes.Value; |
| | 121 | | } |
| | 122 | |
|
| 0 | 123 | | if (userDataDto.Played.HasValue) |
| | 124 | | { |
| 0 | 125 | | userData.Played = userDataDto.Played.Value; |
| | 126 | | } |
| | 127 | |
|
| 0 | 128 | | if (userDataDto.LastPlayedDate.HasValue) |
| | 129 | | { |
| 0 | 130 | | userData.LastPlayedDate = userDataDto.LastPlayedDate.Value; |
| | 131 | | } |
| | 132 | |
|
| 0 | 133 | | if (userDataDto.Rating.HasValue) |
| | 134 | | { |
| 0 | 135 | | userData.Rating = userDataDto.Rating.Value; |
| | 136 | | } |
| | 137 | |
|
| 0 | 138 | | SaveUserData(user, item, userData, reason, CancellationToken.None); |
| 0 | 139 | | } |
| | 140 | |
|
| | 141 | | private UserData Map(UserItemData dto, Guid userId, Guid itemId) |
| | 142 | | { |
| 0 | 143 | | return new UserData() |
| 0 | 144 | | { |
| 0 | 145 | | ItemId = itemId, |
| 0 | 146 | | CustomDataKey = dto.Key, |
| 0 | 147 | | Item = null, |
| 0 | 148 | | User = null, |
| 0 | 149 | | AudioStreamIndex = dto.AudioStreamIndex, |
| 0 | 150 | | IsFavorite = dto.IsFavorite, |
| 0 | 151 | | LastPlayedDate = dto.LastPlayedDate, |
| 0 | 152 | | Likes = dto.Likes, |
| 0 | 153 | | PlaybackPositionTicks = dto.PlaybackPositionTicks, |
| 0 | 154 | | PlayCount = dto.PlayCount, |
| 0 | 155 | | Played = dto.Played, |
| 0 | 156 | | Rating = dto.Rating, |
| 0 | 157 | | UserId = userId, |
| 0 | 158 | | SubtitleStreamIndex = dto.SubtitleStreamIndex, |
| 0 | 159 | | }; |
| | 160 | | } |
| | 161 | |
|
| | 162 | | private UserItemData Map(UserData dto) |
| | 163 | | { |
| 0 | 164 | | return new UserItemData() |
| 0 | 165 | | { |
| 0 | 166 | | Key = dto.CustomDataKey!, |
| 0 | 167 | | AudioStreamIndex = dto.AudioStreamIndex, |
| 0 | 168 | | IsFavorite = dto.IsFavorite, |
| 0 | 169 | | LastPlayedDate = dto.LastPlayedDate, |
| 0 | 170 | | Likes = dto.Likes, |
| 0 | 171 | | PlaybackPositionTicks = dto.PlaybackPositionTicks, |
| 0 | 172 | | PlayCount = dto.PlayCount, |
| 0 | 173 | | Played = dto.Played, |
| 0 | 174 | | Rating = dto.Rating, |
| 0 | 175 | | SubtitleStreamIndex = dto.SubtitleStreamIndex, |
| 0 | 176 | | }; |
| | 177 | | } |
| | 178 | |
|
| | 179 | | private UserItemData? GetUserData(User user, Guid itemId, List<string> keys) |
| | 180 | | { |
| 9 | 181 | | var cacheKey = GetCacheKey(user.InternalId, itemId); |
| | 182 | |
|
| 9 | 183 | | if (_cache.TryGet(cacheKey, out var data)) |
| | 184 | | { |
| 7 | 185 | | return data; |
| | 186 | | } |
| | 187 | |
|
| 2 | 188 | | data = GetUserDataInternal(user.Id, itemId, keys); |
| | 189 | |
|
| 2 | 190 | | if (data is null) |
| | 191 | | { |
| 0 | 192 | | return new UserItemData() |
| 0 | 193 | | { |
| 0 | 194 | | Key = keys[0], |
| 0 | 195 | | }; |
| | 196 | | } |
| | 197 | |
|
| 2 | 198 | | return _cache.GetOrAdd(cacheKey, _ => data); |
| | 199 | | } |
| | 200 | |
|
| | 201 | | private UserItemData? GetUserDataInternal(Guid userId, Guid itemId, List<string> keys) |
| | 202 | | { |
| 2 | 203 | | if (keys.Count == 0) |
| | 204 | | { |
| 0 | 205 | | return null; |
| | 206 | | } |
| | 207 | |
|
| 2 | 208 | | using var context = _repository.CreateDbContext(); |
| 2 | 209 | | var userData = context.UserData.AsNoTracking().Where(e => e.ItemId == itemId && keys.Contains(e.CustomDataKe |
| | 210 | |
|
| 2 | 211 | | if (userData.Length > 0) |
| | 212 | | { |
| 0 | 213 | | var directDataReference = userData.FirstOrDefault(e => e.CustomDataKey == itemId.ToString("N")); |
| 0 | 214 | | if (directDataReference is not null) |
| | 215 | | { |
| 0 | 216 | | return Map(directDataReference); |
| | 217 | | } |
| | 218 | |
|
| 0 | 219 | | return Map(userData.First()); |
| | 220 | | } |
| | 221 | |
|
| 2 | 222 | | return new UserItemData |
| 2 | 223 | | { |
| 2 | 224 | | Key = keys.Last()! |
| 2 | 225 | | }; |
| 2 | 226 | | } |
| | 227 | |
|
| | 228 | | /// <summary> |
| | 229 | | /// Gets the internal key. |
| | 230 | | /// </summary> |
| | 231 | | /// <returns>System.String.</returns> |
| | 232 | | private static string GetCacheKey(long internalUserId, Guid itemId) |
| | 233 | | { |
| 9 | 234 | | return internalUserId.ToString(CultureInfo.InvariantCulture) + "-" + itemId.ToString("N", CultureInfo.Invari |
| | 235 | | } |
| | 236 | |
|
| | 237 | | /// <inheritdoc /> |
| | 238 | | public UserItemData? GetUserData(User user, BaseItem item) |
| | 239 | | { |
| 9 | 240 | | return GetUserData(user, item.Id, item.GetUserDataKeys()); |
| | 241 | | } |
| | 242 | |
|
| | 243 | | /// <inheritdoc /> |
| | 244 | | public UserItemDataDto? GetUserDataDto(BaseItem item, User user) |
| 0 | 245 | | => GetUserDataDto(item, null, user, new DtoOptions()); |
| | 246 | |
|
| | 247 | | /// <inheritdoc /> |
| | 248 | | public UserItemDataDto? GetUserDataDto(BaseItem item, BaseItemDto? itemDto, User user, DtoOptions options) |
| | 249 | | { |
| 9 | 250 | | var userData = GetUserData(user, item); |
| 9 | 251 | | if (userData is null) |
| | 252 | | { |
| 0 | 253 | | return null; |
| | 254 | | } |
| | 255 | |
|
| 9 | 256 | | var dto = GetUserItemDataDto(userData, item.Id); |
| | 257 | |
|
| 9 | 258 | | item.FillUserDataDtoValues(dto, userData, itemDto, user, options); |
| 9 | 259 | | return dto; |
| | 260 | | } |
| | 261 | |
|
| | 262 | | /// <summary> |
| | 263 | | /// Converts a UserItemData to a DTOUserItemData. |
| | 264 | | /// </summary> |
| | 265 | | /// <param name="data">The data.</param> |
| | 266 | | /// <param name="itemId">The reference key to an Item.</param> |
| | 267 | | /// <returns>DtoUserItemData.</returns> |
| | 268 | | /// <exception cref="ArgumentNullException"><paramref name="data"/> is <c>null</c>.</exception> |
| | 269 | | private UserItemDataDto GetUserItemDataDto(UserItemData data, Guid itemId) |
| | 270 | | { |
| 9 | 271 | | ArgumentNullException.ThrowIfNull(data); |
| | 272 | |
|
| 9 | 273 | | return new UserItemDataDto |
| 9 | 274 | | { |
| 9 | 275 | | IsFavorite = data.IsFavorite, |
| 9 | 276 | | Likes = data.Likes, |
| 9 | 277 | | PlaybackPositionTicks = data.PlaybackPositionTicks, |
| 9 | 278 | | PlayCount = data.PlayCount, |
| 9 | 279 | | Rating = data.Rating, |
| 9 | 280 | | Played = data.Played, |
| 9 | 281 | | LastPlayedDate = data.LastPlayedDate, |
| 9 | 282 | | ItemId = itemId, |
| 9 | 283 | | Key = data.Key |
| 9 | 284 | | }; |
| | 285 | | } |
| | 286 | |
|
| | 287 | | /// <inheritdoc /> |
| | 288 | | public bool UpdatePlayState(BaseItem item, UserItemData data, long? reportedPositionTicks) |
| | 289 | | { |
| 0 | 290 | | var playedToCompletion = false; |
| | 291 | |
|
| 0 | 292 | | var runtimeTicks = item.GetRunTimeTicksForPlayState(); |
| | 293 | |
|
| 0 | 294 | | var positionTicks = reportedPositionTicks ?? runtimeTicks; |
| 0 | 295 | | var hasRuntime = runtimeTicks > 0; |
| | 296 | |
|
| | 297 | | // If a position has been reported, and if we know the duration |
| 0 | 298 | | if (positionTicks > 0 && hasRuntime && item is not AudioBook && item is not Book) |
| | 299 | | { |
| 0 | 300 | | var pctIn = decimal.Divide(positionTicks, runtimeTicks) * 100; |
| | 301 | |
|
| 0 | 302 | | if (pctIn < _config.Configuration.MinResumePct) |
| | 303 | | { |
| | 304 | | // ignore progress during the beginning |
| 0 | 305 | | positionTicks = 0; |
| | 306 | | } |
| 0 | 307 | | else if (pctIn > _config.Configuration.MaxResumePct || positionTicks >= runtimeTicks) |
| | 308 | | { |
| | 309 | | // mark as completed close to the end |
| 0 | 310 | | positionTicks = 0; |
| 0 | 311 | | data.Played = playedToCompletion = true; |
| | 312 | | } |
| | 313 | | else |
| | 314 | | { |
| | 315 | | // Enforce MinResumeDuration |
| 0 | 316 | | var durationSeconds = TimeSpan.FromTicks(runtimeTicks).TotalSeconds; |
| 0 | 317 | | if (durationSeconds < _config.Configuration.MinResumeDurationSeconds) |
| | 318 | | { |
| 0 | 319 | | positionTicks = 0; |
| 0 | 320 | | data.Played = playedToCompletion = true; |
| | 321 | | } |
| | 322 | | } |
| | 323 | | } |
| 0 | 324 | | else if (positionTicks > 0 && hasRuntime && item is AudioBook) |
| | 325 | | { |
| 0 | 326 | | var playbackPositionInMinutes = TimeSpan.FromTicks(positionTicks).TotalMinutes; |
| 0 | 327 | | var remainingTimeInMinutes = TimeSpan.FromTicks(runtimeTicks - positionTicks).TotalMinutes; |
| | 328 | |
|
| 0 | 329 | | if (playbackPositionInMinutes < _config.Configuration.MinAudiobookResume) |
| | 330 | | { |
| | 331 | | // ignore progress during the beginning |
| 0 | 332 | | positionTicks = 0; |
| | 333 | | } |
| 0 | 334 | | else if (remainingTimeInMinutes < _config.Configuration.MaxAudiobookResume || positionTicks >= runtimeTi |
| | 335 | | { |
| | 336 | | // mark as completed close to the end |
| 0 | 337 | | positionTicks = 0; |
| 0 | 338 | | data.Played = playedToCompletion = true; |
| | 339 | | } |
| | 340 | | } |
| 0 | 341 | | else if (!hasRuntime) |
| | 342 | | { |
| | 343 | | // If we don't know the runtime we'll just have to assume it was fully played |
| 0 | 344 | | data.Played = playedToCompletion = true; |
| 0 | 345 | | positionTicks = 0; |
| | 346 | | } |
| | 347 | |
|
| 0 | 348 | | if (!item.SupportsPlayedStatus) |
| | 349 | | { |
| 0 | 350 | | positionTicks = 0; |
| 0 | 351 | | data.Played = false; |
| | 352 | | } |
| | 353 | |
|
| 0 | 354 | | if (!item.SupportsPositionTicksResume) |
| | 355 | | { |
| 0 | 356 | | positionTicks = 0; |
| | 357 | | } |
| | 358 | |
|
| 0 | 359 | | data.PlaybackPositionTicks = positionTicks; |
| | 360 | |
|
| 0 | 361 | | return playedToCompletion; |
| | 362 | | } |
| | 363 | | } |
| | 364 | | } |