2020-09-01 15:36:45 +00:00
|
|
|
#pragma warning disable CA2227
|
|
|
|
|
2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-08-30 22:50:54 +00:00
|
|
|
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.
|
|
|
|
/// </summary>
|
|
|
|
public class Person : 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="Person"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="name">The name of the person.</param>
|
|
|
|
public Person(string name)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-06-20 08:35:29 +00:00
|
|
|
if (string.IsNullOrEmpty(name))
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(name));
|
|
|
|
}
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
Name = name;
|
|
|
|
DateAdded = DateTime.UtcNow;
|
|
|
|
DateModified = DateAdded;
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
Sources = new HashSet<MetadataProviderId>();
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets 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)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public int Id { get; protected set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the name.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required, Max length = 1024.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(1024)]
|
|
|
|
[StringLength(1024)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public string Name { get; set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the source id.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 255.
|
|
|
|
/// </remarks>
|
|
|
|
[MaxLength(256)]
|
|
|
|
[StringLength(256)]
|
2021-03-06 22:43:01 +00:00
|
|
|
public string? SourceId { get; set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the date added.
|
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
|
|
|
/// Required.
|
2020-08-30 22:50:54 +00:00
|
|
|
/// </remarks>
|
|
|
|
public DateTime DateAdded { get; protected set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the date modified.
|
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
|
|
|
/// Required.
|
2020-08-30 22:50:54 +00:00
|
|
|
/// </remarks>
|
|
|
|
public DateTime DateModified { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
[ConcurrencyCheck]
|
|
|
|
public uint RowVersion { get; set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets a list of metadata sources for this person.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
public virtual ICollection<MetadataProviderId> Sources { get; protected set; }
|
2019-06-01 20:40:01 +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
|
|
|
}
|