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

101 lines
2.8 KiB
C#
Raw Normal View History

2020-09-01 17:36:45 +02:00
#pragma warning disable CA2227
using System;
using System.Collections.Generic;
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 a person's role in media.
/// </summary>
public class PersonRole : IHasArtwork, IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="PersonRole"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="type">The role type.</param>
2020-09-01 17:38:09 +02:00
/// <param name="itemMetadata">The metadata.</param>
public PersonRole(PersonRoleType type, ItemMetadata itemMetadata)
2020-05-02 23:56:05 +02:00
{
Type = type;
2020-05-02 23:56:05 +02:00
2020-09-01 17:38:09 +02:00
if (itemMetadata == null)
2020-06-20 10:35:29 +02:00
{
2020-09-01 17:38:09 +02:00
throw new ArgumentNullException(nameof(itemMetadata));
2020-06-20 10:35:29 +02:00
}
2020-09-01 17:38:09 +02:00
itemMetadata.PersonRoles.Add(this);
2020-05-02 23:56:05 +02:00
Sources = new HashSet<MetadataProviderId>();
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="PersonRole"/> 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 PersonRole()
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; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the name of the person's role.
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 Role { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the person's role type.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public PersonRoleType Type { get; set; }
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the person.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
2020-05-02 23:56:05 +02:00
[Required]
public virtual Person Person { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
public virtual ICollection<Artwork> Artwork { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets a collection containing the metadata sources for this person role.
2020-05-02 23:56:05 +02:00
/// </summary>
public virtual ICollection<MetadataProviderId> Sources { get; protected set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}