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