| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using Jellyfin.Data.Enums; |
| | 5 | | using Jellyfin.Database.Implementations.Entities; |
| | 6 | | using MediaBrowser.Controller.Entities; |
| | 7 | | using MediaBrowser.Controller.Library; |
| | 8 | | using MediaBrowser.Controller.Sorting; |
| | 9 | | using MediaBrowser.Model.Querying; |
| | 10 | |
|
| | 11 | | namespace Emby.Server.Implementations.Sorting |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Class DatePlayedComparer. |
| | 15 | | /// </summary> |
| | 16 | | public class DatePlayedComparer : IUserBaseItemComparer |
| | 17 | | { |
| | 18 | | /// <summary> |
| | 19 | | /// Gets or sets the user. |
| | 20 | | /// </summary> |
| | 21 | | /// <value>The user.</value> |
| | 22 | | public User User { get; set; } |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Gets or sets the user manager. |
| | 26 | | /// </summary> |
| | 27 | | /// <value>The user manager.</value> |
| | 28 | | public IUserManager UserManager { get; set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Gets or sets the user data repository. |
| | 32 | | /// </summary> |
| | 33 | | /// <value>The user data repository.</value> |
| | 34 | | public IUserDataManager UserDataRepository { get; set; } |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Gets the name. |
| | 38 | | /// </summary> |
| | 39 | | /// <value>The name.</value> |
| 1 | 40 | | public ItemSortBy Type => ItemSortBy.DatePlayed; |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Compares the specified x. |
| | 44 | | /// </summary> |
| | 45 | | /// <param name="x">The x.</param> |
| | 46 | | /// <param name="y">The y.</param> |
| | 47 | | /// <returns>System.Int32.</returns> |
| | 48 | | public int Compare(BaseItem x, BaseItem y) |
| | 49 | | { |
| 0 | 50 | | return GetDate(x).CompareTo(GetDate(y)); |
| | 51 | | } |
| | 52 | |
|
| | 53 | | /// <summary> |
| | 54 | | /// Gets the date. |
| | 55 | | /// </summary> |
| | 56 | | /// <param name="x">The x.</param> |
| | 57 | | /// <returns>DateTime.</returns> |
| | 58 | | private DateTime GetDate(BaseItem x) |
| | 59 | | { |
| 0 | 60 | | var userdata = UserDataRepository.GetUserData(User, x); |
| | 61 | |
|
| 0 | 62 | | if (userdata is not null && userdata.LastPlayedDate.HasValue) |
| | 63 | | { |
| 0 | 64 | | return userdata.LastPlayedDate.Value; |
| | 65 | | } |
| | 66 | |
|
| 0 | 67 | | return DateTime.MinValue; |
| | 68 | | } |
| | 69 | | } |
| | 70 | | } |