| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 5 | |
|
| | 6 | | namespace Jellyfin.Database.Implementations.Entities |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// An entity representing a group. |
| | 10 | | /// </summary> |
| | 11 | | public class Group : IHasPermissions, IHasConcurrencyToken |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Initializes a new instance of the <see cref="Group"/> class. |
| | 15 | | /// </summary> |
| | 16 | | /// <param name="name">The name of the group.</param> |
| | 17 | | public Group(string name) |
| | 18 | | { |
| 0 | 19 | | ArgumentException.ThrowIfNullOrEmpty(name); |
| | 20 | |
|
| 0 | 21 | | Name = name; |
| 0 | 22 | | Id = Guid.NewGuid(); |
| | 23 | |
|
| 0 | 24 | | Permissions = new HashSet<Permission>(); |
| 0 | 25 | | Preferences = new HashSet<Preference>(); |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Gets the id of this group. |
| | 30 | | /// </summary> |
| | 31 | | /// <remarks> |
| | 32 | | /// Identity, Indexed, Required. |
| | 33 | | /// </remarks> |
| | 34 | | public Guid Id { get; private set; } |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Gets or sets the group's name. |
| | 38 | | /// </summary> |
| | 39 | | /// <remarks> |
| | 40 | | /// Required, Max length = 255. |
| | 41 | | /// </remarks> |
| | 42 | | [MaxLength(255)] |
| | 43 | | [StringLength(255)] |
| | 44 | | public string Name { get; set; } |
| | 45 | |
|
| | 46 | | /// <inheritdoc /> |
| | 47 | | [ConcurrencyCheck] |
| | 48 | | public uint RowVersion { get; private set; } |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets a collection containing the group's permissions. |
| | 52 | | /// </summary> |
| | 53 | | public virtual ICollection<Permission> Permissions { get; private set; } |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Gets a collection containing the group's preferences. |
| | 57 | | /// </summary> |
| | 58 | | public virtual ICollection<Preference> Preferences { get; private set; } |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| | 61 | | public void OnSavingChanges() |
| | 62 | | { |
| 0 | 63 | | RowVersion++; |
| 0 | 64 | | } |
| | 65 | | } |
| | 66 | | } |