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

142 lines
4.2 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
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 abstract class that holds metadata.
/// </summary>
2020-09-01 17:38:09 +02:00
public abstract class ItemMetadata : IHasArtwork, IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
2020-09-01 17:38:09 +02:00
/// Initializes a new instance of the <see cref="ItemMetadata"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
2020-06-19 12:21:49 +02:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
2020-09-01 17:38:09 +02:00
protected ItemMetadata(string title, string language)
2020-05-02 23:56:05 +02:00
{
ArgumentException.ThrowIfNullOrEmpty(title);
ArgumentException.ThrowIfNullOrEmpty(language);
2020-06-20 10:35:29 +02:00
Title = title;
Language = language;
DateAdded = DateTime.UtcNow;
DateModified = DateAdded;
2020-05-02 23:56:05 +02:00
PersonRoles = new HashSet<PersonRole>();
Genres = new HashSet<Genre>();
Artwork = new HashSet<Artwork>();
Ratings = new HashSet<Rating>();
Sources = new HashSet<MetadataProviderId>();
2020-05-02 23:56:05 +02:00
}
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets the id.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Identity, Indexed, Required.
/// </remarks>
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2021-03-18 00:08:11 +01:00
public int Id { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the title.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required, Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(1024)]
[StringLength(1024)]
public string Title { get; set; }
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the original title.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(1024)]
[StringLength(1024)]
public string? OriginalTitle { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the sort title.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(1024)]
[StringLength(1024)]
public string? SortTitle { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the language.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required, Min length = 3, Max length = 3.
/// ISO-639-3 3-character language codes.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MinLength(3)]
[MaxLength(3)]
[StringLength(3)]
public string Language { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the release date.
2020-05-02 23:56:05 +02:00
/// </summary>
public DateTimeOffset? ReleaseDate { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets the date added.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2021-03-18 00:08:11 +01:00
public DateTime DateAdded { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the date modified.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public DateTime DateModified { get; set; }
2020-05-02 23:56:05 +02:00
2021-03-18 00:08:11 +01:00
/// <inheritdoc />
[ConcurrencyCheck]
2021-03-18 00:08:11 +01:00
public uint RowVersion { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the person roles for this item.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<PersonRole> PersonRoles { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the genres for this item.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<Genre> Genres { get; private set; }
/// <inheritdoc />
2021-03-18 00:08:11 +01:00
public virtual ICollection<Artwork> Artwork { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the ratings for this item.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<Rating> Ratings { get; private set; }
2020-05-02 23:56:05 +02:00
/// <summary>
2021-03-18 00:08:11 +01:00
/// Gets a collection containing the metadata sources for this item.
2020-05-02 23:56:05 +02:00
/// </summary>
2021-03-18 00:08:11 +01:00
public virtual ICollection<MetadataProviderId> Sources { get; private set; }
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}