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

84 lines
2.2 KiB
C#
Raw Normal View History

2020-09-01 17:36:45 +02:00
#pragma warning disable CA2227
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Enums;
using Jellyfin.Data.Interfaces;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing artwork.
/// </summary>
public class Artwork : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Artwork"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="path">The path.</param>
/// <param name="kind">The kind of art.</param>
/// <param name="owner">The owner.</param>
public Artwork(string path, ArtKind kind, IHasArtwork owner)
2020-05-02 23:56:05 +02:00
{
2020-06-20 10:35:29 +02:00
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
}
Path = path;
Kind = kind;
2020-05-02 23:56:05 +02:00
owner?.Artwork.Add(this);
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="Artwork"/> 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 Artwork()
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>
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the path.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required, Max length = 65535.
/// </remarks>
2020-05-02 23:56:05 +02:00
[Required]
[MaxLength(65535)]
[StringLength(65535)]
public string Path { get; set; }
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the kind of artwork.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public ArtKind Kind { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
[ConcurrencyCheck]
public uint RowVersion { get; set; }
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}