2021-03-09 04:57:38 +00:00
|
|
|
#pragma warning disable CA1711 // Identifiers should not have incorrect suffix
|
|
|
|
|
2021-03-18 19:37:36 +00:00
|
|
|
using System;
|
2019-06-01 20:40:01 +00:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2020-05-15 21:24:01 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2020-08-30 22:50:54 +00:00
|
|
|
using Jellyfin.Data.Interfaces;
|
2019-06-01 20:40:01 +00:00
|
|
|
|
|
|
|
namespace Jellyfin.Data.Entities
|
|
|
|
{
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity representing whether the associated user has a specific permission.
|
|
|
|
/// </summary>
|
2020-09-01 15:04:32 +00:00
|
|
|
public class Permission : IHasConcurrencyToken
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-05-20 02:12:03 +00:00
|
|
|
/// Initializes a new instance of the <see cref="Permission"/> class.
|
2020-05-23 00:20:18 +00:00
|
|
|
/// Public constructor with required data.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <param name="kind">The permission kind.</param>
|
|
|
|
/// <param name="value">The value of this permission.</param>
|
2020-05-15 21:24:01 +00:00
|
|
|
public Permission(PermissionKind kind, bool value)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-05-15 21:24:01 +00:00
|
|
|
Kind = kind;
|
|
|
|
Value = value;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets the id of this permission.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Identity, Indexed, Required.
|
|
|
|
/// </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
|
|
|
|
2021-03-18 19:37:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the id of the associated user.
|
|
|
|
/// </summary>
|
2021-03-19 04:26:07 +00:00
|
|
|
public Guid? UserId { get; set; }
|
2021-03-18 19:37:36 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets the type of this permission.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
2021-03-17 23:08:11 +00:00
|
|
|
public PermissionKind Kind { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-05-23 00:20:18 +00:00
|
|
|
/// Gets or sets a value indicating whether the associated user has this permission.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Required.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
public bool Value { get; set; }
|
|
|
|
|
2020-09-01 15:04:32 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-02 21:56:05 +00:00
|
|
|
[ConcurrencyCheck]
|
2021-03-17 23:08:11 +00:00
|
|
|
public uint RowVersion { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
2020-05-23 00:20:18 +00:00
|
|
|
/// <inheritdoc/>
|
|
|
|
public void OnSavingChanges()
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-05-23 00:20:18 +00:00
|
|
|
RowVersion++;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|