2019-06-01 20:40:01 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-08-30 22:50:54 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
|
|
|
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 person's role in media.
|
|
|
|
/// </summary>
|
|
|
|
public class PersonRole : IHasArtwork, 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="PersonRole"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="type">The role type.</param>
|
2021-03-06 22:43:01 +00:00
|
|
|
/// <param name="person">The person.</param>
|
|
|
|
public PersonRole(PersonRoleType type, Person person)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
Type = type;
|
2021-03-06 22:43:01 +00:00
|
|
|
Person = person;
|
|
|
|
Artwork = new HashSet<Artwork>();
|
2020-08-30 22:50:54 +00:00
|
|
|
Sources = new HashSet<MetadataProviderId>();
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets 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)]
|
2021-03-17 23:08:11 +00:00
|
|
|
public int Id { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the name of the person's role.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 1024.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(1024)]
|
|
|
|
[StringLength(1024)]
|
2021-03-06 22:43:01 +00:00
|
|
|
public string? Role { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the person's role type.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
|
|
|
public PersonRoleType Type { get; set; }
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
[ConcurrencyCheck]
|
2021-03-17 23:08:11 +00:00
|
|
|
public uint RowVersion { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the person.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
|
|
|
public virtual Person Person { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
2021-03-17 23:08:11 +00:00
|
|
|
public virtual ICollection<Artwork> Artwork { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets a collection containing the metadata sources for this person role.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
public virtual ICollection<MetadataProviderId> Sources { get; private 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
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|