using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Globalization; using System.Linq; using System.Text.Json.Serialization; using Jellyfin.Data.Enums; namespace Jellyfin.Data.Entities { /// /// An entity representing a user. /// public partial class User : IHasPermissions, ISavingChanges { /// /// The values being delimited here are Guids, so commas work as they do not appear in Guids. /// private const char Delimiter = ','; /// /// Initializes a new instance of the class. /// Public constructor with required data. /// /// The username for the new user. /// The authentication provider's Id public User(string username, string authenticationProviderId, string passwordResetProviderId) { if (string.IsNullOrEmpty(username)) { throw new ArgumentNullException(nameof(username)); } if (string.IsNullOrEmpty(authenticationProviderId)) { throw new ArgumentNullException(nameof(authenticationProviderId)); } Username = username; AuthenticationProviderId = authenticationProviderId; PasswordResetProviderId = passwordResetProviderId; Groups = new HashSet(); Permissions = new HashSet(); ProviderMappings = new HashSet(); Preferences = new HashSet(); AccessSchedules = new HashSet(); // Set default values Id = Guid.NewGuid(); InvalidLoginAttemptCount = 0; MustUpdatePassword = false; DisplayMissingEpisodes = false; DisplayCollectionsView = false; HidePlayedInLatest = true; RememberAudioSelections = true; RememberSubtitleSelections = true; EnableNextEpisodeAutoPlay = true; EnableAutoLogin = false; PlayDefaultAudioTrack = true; SubtitleMode = SubtitlePlaybackMode.Default; AddDefaultPermissions(); AddDefaultPreferences(); Init(); } /// /// Initializes a new instance of the class. /// Default constructor. Protected due to required properties, but present because EF needs it. /// protected User() { Groups = new HashSet(); Permissions = new HashSet(); ProviderMappings = new HashSet(); Preferences = new HashSet(); AccessSchedules = new HashSet(); Init(); } /// /// Static create function (for use in LINQ queries, etc.) /// /// The username for the created user. /// The Id of the user's authentication provider. /// The Id of the user's password reset provider. /// The created instance. public static User Create(string username, string authenticationProviderId, string passwordResetProviderId) { return new User(username, authenticationProviderId, passwordResetProviderId); } /************************************************************************* * Properties *************************************************************************/ /// /// Identity, Indexed, Required /// [Key] [Required] [JsonIgnore] public Guid Id { get; set; } /// /// Required, Max length = 255 /// [Required] [MaxLength(255)] [StringLength(255)] public string Username { get; set; } /// /// Max length = 65535 /// [MaxLength(65535)] [StringLength(65535)] public string Password { get; set; } /// /// Max length = 65535. /// [MaxLength(65535)] [StringLength(65535)] public string EasyPassword { get; set; } /// /// Required /// [Required] public bool MustUpdatePassword { get; set; } /// /// Max length = 255. /// [MaxLength(255)] [StringLength(255)] public string AudioLanguagePreference { get; set; } /// /// Required, Max length = 255 /// [Required] [MaxLength(255)] [StringLength(255)] public string AuthenticationProviderId { get; set; } [Required] [MaxLength(255)] [StringLength(255)] public string PasswordResetProviderId { get; set; } /// /// Required /// [Required] public int InvalidLoginAttemptCount { get; set; } public DateTime LastActivityDate { get; set; } public DateTime LastLoginDate { get; set; } public int? LoginAttemptsBeforeLockout { get; set; } /// /// Required. /// [Required] public SubtitlePlaybackMode SubtitleMode { get; set; } /// /// Required /// [Required] public bool PlayDefaultAudioTrack { get; set; } /// /// Gets or sets the subtitle language preference. /// Max length = 255 /// [MaxLength(255)] [StringLength(255)] public string SubtitleLanguagePreference { get; set; } [Required] public bool DisplayMissingEpisodes { get; set; } [Required] public bool DisplayCollectionsView { get; set; } [Required] public bool EnableLocalPassword { get; set; } [Required] public bool HidePlayedInLatest { get; set; } [Required] public bool RememberAudioSelections { get; set; } [Required] public bool RememberSubtitleSelections { get; set; } [Required] public bool EnableNextEpisodeAutoPlay { get; set; } [Required] public bool EnableAutoLogin { get; set; } [Required] public bool EnableUserPreferenceAccess { get; set; } public int? MaxParentalAgeRating { get; set; } public int? RemoteClientBitrateLimit { get; set; } /// /// Gets or sets the internal id. /// This is a temporary stopgap for until the library db is migrated. /// This corresponds to the value of the index of this user in the library db. /// [Required] public long InternalId { get; set; } public virtual ImageInfo ProfileImage { get; set; } /// /// Gets or sets the row version. /// Required, ConcurrenyToken. /// [ConcurrencyCheck] [Required] public uint RowVersion { get; set; } public void OnSavingChanges() { RowVersion++; } /************************************************************************* * Navigation properties *************************************************************************/ [ForeignKey("Group_Groups_Guid")] public virtual ICollection Groups { get; protected set; } [ForeignKey("Permission_Permissions_Guid")] public virtual ICollection Permissions { get; protected set; } [ForeignKey("ProviderMapping_ProviderMappings_Id")] public virtual ICollection ProviderMappings { get; protected set; } [ForeignKey("Preference_Preferences_Guid")] public virtual ICollection Preferences { get; protected set; } public virtual ICollection AccessSchedules { get; protected set; } partial void Init(); public bool HasPermission(PermissionKind permission) { var list = Permissions.Where(p => p.Kind == permission); return list.First().Value; } public void SetPermission(PermissionKind kind, bool value) { var permissionObj = Permissions.First(p => p.Kind == kind); permissionObj.Value = value; } public string[] GetPreference(PreferenceKind preference) { var val = Preferences .Where(p => p.Kind == preference) .Select(p => p.Value) .First(); return Equals(val, string.Empty) ? Array.Empty() : val.Split(Delimiter); } public void SetPreference(PreferenceKind preference, string[] values) { var pref = Preferences.First(p => p.Kind == preference); pref.Value = string.Join(Delimiter.ToString(CultureInfo.InvariantCulture), values); } public bool IsParentalScheduleAllowed() { var schedules = this.AccessSchedules; return schedules.Count == 0 || schedules.Any(i => IsParentalScheduleAllowed(i, DateTime.Now)); } public bool IsFolderGrouped(Guid id) { return GetPreference(PreferenceKind.GroupedFolders).Any(i => new Guid(i) == id); } private bool IsParentalScheduleAllowed(AccessSchedule schedule, DateTime date) { if (date.Kind != DateTimeKind.Utc) { throw new ArgumentException("Utc date expected"); } var localTime = date.ToLocalTime(); return DayOfWeekHelper.GetDaysOfWeek(schedule.DayOfWeek).Contains(localTime.DayOfWeek) && IsWithinTime(schedule, localTime); } private bool IsWithinTime(AccessSchedule schedule, DateTime localTime) { var hour = localTime.TimeOfDay.TotalHours; return hour >= schedule.StartHour && hour <= schedule.EndHour; } // TODO: make these user configurable? private void AddDefaultPermissions() { Permissions.Add(new Permission(PermissionKind.IsAdministrator, false)); Permissions.Add(new Permission(PermissionKind.IsDisabled, false)); Permissions.Add(new Permission(PermissionKind.IsHidden, true)); Permissions.Add(new Permission(PermissionKind.EnableAllChannels, true)); Permissions.Add(new Permission(PermissionKind.EnableAllDevices, true)); Permissions.Add(new Permission(PermissionKind.EnableAllFolders, true)); Permissions.Add(new Permission(PermissionKind.EnableContentDeletion, false)); Permissions.Add(new Permission(PermissionKind.EnableContentDownloading, true)); Permissions.Add(new Permission(PermissionKind.EnableMediaConversion, true)); Permissions.Add(new Permission(PermissionKind.EnableMediaPlayback, true)); Permissions.Add(new Permission(PermissionKind.EnablePlaybackRemuxing, true)); Permissions.Add(new Permission(PermissionKind.EnablePublicSharing, true)); Permissions.Add(new Permission(PermissionKind.EnableRemoteAccess, true)); Permissions.Add(new Permission(PermissionKind.EnableSyncTranscoding, true)); Permissions.Add(new Permission(PermissionKind.EnableAudioPlaybackTranscoding, true)); Permissions.Add(new Permission(PermissionKind.EnableLiveTvAccess, true)); Permissions.Add(new Permission(PermissionKind.EnableLiveTvManagement, true)); Permissions.Add(new Permission(PermissionKind.EnableSharedDeviceControl, true)); Permissions.Add(new Permission(PermissionKind.EnableVideoPlaybackTranscoding, true)); Permissions.Add(new Permission(PermissionKind.ForceRemoteSourceTranscoding, false)); Permissions.Add(new Permission(PermissionKind.EnableRemoteControlOfOtherUsers, false)); } private void AddDefaultPreferences() { foreach (var val in Enum.GetValues(typeof(PreferenceKind)).Cast()) { Preferences.Add(new Preference(val, string.Empty)); } } } }