2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-08-30 22:50:54 +00:00
|
|
|
using Jellyfin.Data.Interfaces;
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-29 17:30:09 +00:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity representing a collection item.
|
|
|
|
/// </summary>
|
|
|
|
public class CollectionItem : IHasConcurrencyToken
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="CollectionItem"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="collection">The collection.</param>
|
|
|
|
/// <param name="previous">The previous item.</param>
|
|
|
|
/// <param name="next">The next item.</param>
|
|
|
|
public CollectionItem(Collection collection, CollectionItem previous, CollectionItem next)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
if (collection == null)
|
2020-06-20 08:35:29 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
throw new ArgumentNullException(nameof(collection));
|
2020-06-20 08:35:29 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
collection.Items.Add(this);
|
2020-05-02 21:56:05 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
if (next != null)
|
2020-06-20 08:35:29 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
Next = next;
|
|
|
|
next.Previous = this;
|
2020-06-20 08:35:29 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
if (previous != null)
|
2020-06-20 08:35:29 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
Previous = previous;
|
|
|
|
previous.Next = this;
|
2020-06-20 08:35:29 +00:00
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="CollectionItem"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
|
|
/// </remarks>
|
|
|
|
protected CollectionItem()
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the id.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Identity, Indexed, Required.
|
2020-08-30 22:50:54 +00:00
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public int Id { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-02 21:56:05 +00:00
|
|
|
[ConcurrencyCheck]
|
|
|
|
public uint RowVersion { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the library item.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
public virtual LibraryItem LibraryItem { get; set; }
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the next item in the collection.
|
|
|
|
/// </summary>
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <remarks>
|
2020-11-18 13:46:14 +00:00
|
|
|
/// TODO check if this properly updated Dependant and has the proper principal relationship.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </remarks>
|
|
|
|
public virtual CollectionItem Next { get; set; }
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the previous item in the collection.
|
|
|
|
/// </summary>
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <remarks>
|
2020-11-18 13:46:14 +00:00
|
|
|
/// TODO check if this properly updated Dependant and has the proper principal relationship.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </remarks>
|
|
|
|
public virtual CollectionItem Previous { get; set; }
|
2020-08-30 22:50:54 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|