using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Microsoft.Extensions.Logging; namespace Jellyfin.Data.Entities { public partial class ActivityLog { partial void Init(); /// /// Default constructor. Protected due to required properties, but present because EF needs it. /// protected ActivityLog() { Init(); } /// /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving. /// public static ActivityLog CreateActivityLogUnsafe() { return new ActivityLog(); } /// /// Public constructor with required data /// /// /// /// /// /// public ActivityLog(string name, string type, Guid userId) { if (string.IsNullOrEmpty(name)) { throw new ArgumentNullException(nameof(name)); } if (string.IsNullOrEmpty(type)) { throw new ArgumentNullException(nameof(type)); } this.Name = name; this.Type = type; this.UserId = userId; this.DateCreated = DateTime.UtcNow; this.LogSeverity = LogLevel.Trace; Init(); } /// /// Static create function (for use in LINQ queries, etc.) /// /// /// /// /// /// public static ActivityLog Create(string name, string type, Guid userId) { return new ActivityLog(name, type, userId); } /************************************************************************* * Properties *************************************************************************/ /// /// Identity, Indexed, Required /// [Key] [Required] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; protected set; } /// /// Required, Max length = 512 /// [Required] [MaxLength(512)] [StringLength(512)] public string Name { get; set; } /// /// Max length = 512 /// [MaxLength(512)] [StringLength(512)] public string Overview { get; set; } /// /// Max length = 512 /// [MaxLength(512)] [StringLength(512)] public string ShortOverview { get; set; } /// /// Required, Max length = 256 /// [Required] [MaxLength(256)] [StringLength(256)] public string Type { get; set; } /// /// Required /// [Required] public Guid UserId { get; set; } /// /// Max length = 256 /// [MaxLength(256)] [StringLength(256)] public string ItemId { get; set; } /// /// Required /// [Required] public DateTime DateCreated { get; set; } /// /// Required /// [Required] public LogLevel LogSeverity { get; set; } /// /// Required, ConcurrencyToken. /// [ConcurrencyCheck] [Required] public uint RowVersion { get; set; } public void OnSavingChanges() { RowVersion++; } } }