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

93 lines
2.6 KiB
C#
Raw Normal View History

using System;
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
{
2020-05-02 23:56:05 +02:00
/// <summary>
/// This is the entity to store review ratings, not age ratings.
2020-05-02 23:56:05 +02:00
/// </summary>
public class RatingSource : IHasConcurrencyToken
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="RatingSource"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <param name="minimumValue">The minimum value.</param>
/// <param name="maximumValue">The maximum value.</param>
/// <param name="rating">The rating.</param>
public RatingSource(double minimumValue, double maximumValue, Rating rating)
2020-05-02 23:56:05 +02:00
{
MinimumValue = minimumValue;
MaximumValue = maximumValue;
2020-05-02 23:56:05 +02:00
if (rating == null)
2020-06-20 10:35:29 +02:00
{
throw new ArgumentNullException(nameof(rating));
2020-06-20 10:35:29 +02:00
}
2020-05-02 23:56:05 +02:00
rating.RatingType = this;
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="RatingSource"/> 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 RatingSource()
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.
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 Name { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the minimum value.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public double MinimumValue { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the maximum value.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Required.
/// </remarks>
public double MaximumValue { get; set; }
2020-06-15 23:43:52 +02:00
/// <inheritdoc />
[ConcurrencyCheck]
public uint RowVersion { get; set; }
2020-05-02 23:56:05 +02:00
/// <summary>
/// Gets or sets the metadata source.
2020-05-02 23:56:05 +02:00
/// </summary>
public virtual MetadataProviderId Source { get; set; }
2020-05-02 23:56:05 +02:00
/// <inheritdoc />
2020-05-02 23:56:05 +02:00
public void OnSavingChanges()
{
RowVersion++;
}
}
}