jellyfin/Jellyfin.Data/Entities/Libraries/CollectionItem.cs

95 lines
2.8 KiB
C#
Raw Normal View History

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