| | 1 | | using System; |
| | 2 | | using System.ComponentModel; |
| | 3 | | using System.Linq; |
| | 4 | | using Jellyfin.Database.Implementations.Entities; |
| | 5 | | using Jellyfin.Database.Implementations.Enums; |
| | 6 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 7 | |
|
| | 8 | | namespace Jellyfin.Data; |
| | 9 | |
|
| | 10 | | /// <summary> |
| | 11 | | /// Contains extension methods for manipulation of <see cref="User"/> entities. |
| | 12 | | /// </summary> |
| | 13 | | public static class UserEntityExtensions |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// The values being delimited here are Guids, so commas work as they do not appear in Guids. |
| | 17 | | /// </summary> |
| | 18 | | private const char Delimiter = ','; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Checks whether the user has the specified permission. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="entity">The entity to update.</param> |
| | 24 | | /// <param name="kind">The permission kind.</param> |
| | 25 | | /// <returns><c>True</c> if the user has the specified permission.</returns> |
| | 26 | | public static bool HasPermission(this IHasPermissions entity, PermissionKind kind) |
| | 27 | | { |
| 1152 | 28 | | return entity.Permissions.FirstOrDefault(p => p.Kind == kind)?.Value ?? false; |
| | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Sets the given permission kind to the provided value. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="entity">The entity to update.</param> |
| | 35 | | /// <param name="kind">The permission kind.</param> |
| | 36 | | /// <param name="value">The value to set.</param> |
| | 37 | | public static void SetPermission(this IHasPermissions entity, PermissionKind kind, bool value) |
| | 38 | | { |
| 69 | 39 | | var currentPermission = entity.Permissions.FirstOrDefault(p => p.Kind == kind); |
| 69 | 40 | | if (currentPermission is null) |
| | 41 | | { |
| 0 | 42 | | entity.Permissions.Add(new Permission(kind, value)); |
| | 43 | | } |
| | 44 | | else |
| | 45 | | { |
| 69 | 46 | | currentPermission.Value = value; |
| | 47 | | } |
| 69 | 48 | | } |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets the user's preferences for the given preference kind. |
| | 52 | | /// </summary> |
| | 53 | | /// <param name="entity">The entity to update.</param> |
| | 54 | | /// <param name="preference">The preference kind.</param> |
| | 55 | | /// <returns>A string array containing the user's preferences.</returns> |
| | 56 | | public static string[] GetPreference(this User entity, PreferenceKind preference) |
| | 57 | | { |
| 204 | 58 | | var val = entity.Preferences.FirstOrDefault(p => p.Kind == preference)?.Value; |
| | 59 | |
|
| 204 | 60 | | return string.IsNullOrEmpty(val) ? Array.Empty<string>() : val.Split(Delimiter); |
| | 61 | | } |
| | 62 | |
|
| | 63 | | /// <summary> |
| | 64 | | /// Gets the user's preferences for the given preference kind. |
| | 65 | | /// </summary> |
| | 66 | | /// <param name="entity">The entity to update.</param> |
| | 67 | | /// <param name="preference">The preference kind.</param> |
| | 68 | | /// <typeparam name="T">Type of preference.</typeparam> |
| | 69 | | /// <returns>A {T} array containing the user's preference.</returns> |
| | 70 | | public static T[] GetPreferenceValues<T>(this User entity, PreferenceKind preference) |
| | 71 | | { |
| 344 | 72 | | var val = entity.Preferences.FirstOrDefault(p => p.Kind == preference)?.Value; |
| 344 | 73 | | if (string.IsNullOrEmpty(val)) |
| | 74 | | { |
| 344 | 75 | | return Array.Empty<T>(); |
| | 76 | | } |
| | 77 | |
|
| | 78 | | // Convert array of {string} to array of {T} |
| 0 | 79 | | var converter = TypeDescriptor.GetConverter(typeof(T)); |
| 0 | 80 | | var stringValues = val.Split(Delimiter); |
| 0 | 81 | | var convertedCount = 0; |
| 0 | 82 | | var parsedValues = new T[stringValues.Length]; |
| 0 | 83 | | for (var i = 0; i < stringValues.Length; i++) |
| | 84 | | { |
| | 85 | | try |
| | 86 | | { |
| 0 | 87 | | var parsedValue = converter.ConvertFromString(stringValues[i].Trim()); |
| 0 | 88 | | if (parsedValue is not null) |
| | 89 | | { |
| 0 | 90 | | parsedValues[convertedCount++] = (T)parsedValue; |
| | 91 | | } |
| 0 | 92 | | } |
| 0 | 93 | | catch (FormatException) |
| | 94 | | { |
| | 95 | | // Unable to convert value |
| 0 | 96 | | } |
| | 97 | | } |
| | 98 | |
|
| 0 | 99 | | return parsedValues[..convertedCount]; |
| | 100 | | } |
| | 101 | |
|
| | 102 | | /// <summary> |
| | 103 | | /// Sets the specified preference to the given value. |
| | 104 | | /// </summary> |
| | 105 | | /// <param name="entity">The entity to update.</param> |
| | 106 | | /// <param name="preference">The preference kind.</param> |
| | 107 | | /// <param name="values">The values.</param> |
| | 108 | | public static void SetPreference(this User entity, PreferenceKind preference, string[] values) |
| | 109 | | { |
| 0 | 110 | | var value = string.Join(Delimiter, values); |
| 0 | 111 | | var currentPreference = entity.Preferences.FirstOrDefault(p => p.Kind == preference); |
| 0 | 112 | | if (currentPreference is null) |
| | 113 | | { |
| 0 | 114 | | entity.Preferences.Add(new Preference(preference, value)); |
| | 115 | | } |
| | 116 | | else |
| | 117 | | { |
| 0 | 118 | | currentPreference.Value = value; |
| | 119 | | } |
| 0 | 120 | | } |
| | 121 | |
|
| | 122 | | /// <summary> |
| | 123 | | /// Sets the specified preference to the given value. |
| | 124 | | /// </summary> |
| | 125 | | /// <param name="entity">The entity to update.</param> |
| | 126 | | /// <param name="preference">The preference kind.</param> |
| | 127 | | /// <param name="values">The values.</param> |
| | 128 | | /// <typeparam name="T">The type of value.</typeparam> |
| | 129 | | public static void SetPreference<T>(this User entity, PreferenceKind preference, T[] values) |
| | 130 | | { |
| 0 | 131 | | var value = string.Join(Delimiter, values); |
| 0 | 132 | | var currentPreference = entity.Preferences.FirstOrDefault(p => p.Kind == preference); |
| 0 | 133 | | if (currentPreference is null) |
| | 134 | | { |
| 0 | 135 | | entity.Preferences.Add(new Preference(preference, value)); |
| | 136 | | } |
| | 137 | | else |
| | 138 | | { |
| 0 | 139 | | currentPreference.Value = value; |
| | 140 | | } |
| 0 | 141 | | } |
| | 142 | |
|
| | 143 | | /// <summary> |
| | 144 | | /// Checks whether this user is currently allowed to use the server. |
| | 145 | | /// </summary> |
| | 146 | | /// <param name="entity">The entity to update.</param> |
| | 147 | | /// <returns><c>True</c> if the current time is within an access schedule, or there are no access schedules.</return |
| | 148 | | public static bool IsParentalScheduleAllowed(this User entity) |
| | 149 | | { |
| 18 | 150 | | return entity.AccessSchedules.Count == 0 |
| 18 | 151 | | || entity.AccessSchedules.Any(i => IsParentalScheduleAllowed(i, DateTime.UtcNow)); |
| | 152 | | } |
| | 153 | |
|
| | 154 | | /// <summary> |
| | 155 | | /// Checks whether the provided folder is in this user's grouped folders. |
| | 156 | | /// </summary> |
| | 157 | | /// <param name="entity">The entity to update.</param> |
| | 158 | | /// <param name="id">The Guid of the folder.</param> |
| | 159 | | /// <returns><c>True</c> if the folder is in the user's grouped folders.</returns> |
| | 160 | | public static bool IsFolderGrouped(this User entity, Guid id) |
| | 161 | | { |
| 0 | 162 | | return Array.IndexOf(GetPreferenceValues<Guid>(entity, PreferenceKind.GroupedFolders), id) != -1; |
| | 163 | | } |
| | 164 | |
|
| | 165 | | /// <summary> |
| | 166 | | /// Initializes the default permissions for a user. Should only be called on user creation. |
| | 167 | | /// </summary> |
| | 168 | | /// <param name="entity">The entity to update.</param> |
| | 169 | | // TODO: make these user configurable? |
| | 170 | | public static void AddDefaultPermissions(this User entity) |
| | 171 | | { |
| 38 | 172 | | entity.Permissions.Add(new Permission(PermissionKind.IsAdministrator, false)); |
| 38 | 173 | | entity.Permissions.Add(new Permission(PermissionKind.IsDisabled, false)); |
| 38 | 174 | | entity.Permissions.Add(new Permission(PermissionKind.IsHidden, true)); |
| 38 | 175 | | entity.Permissions.Add(new Permission(PermissionKind.EnableAllChannels, true)); |
| 38 | 176 | | entity.Permissions.Add(new Permission(PermissionKind.EnableAllDevices, true)); |
| 38 | 177 | | entity.Permissions.Add(new Permission(PermissionKind.EnableAllFolders, true)); |
| 38 | 178 | | entity.Permissions.Add(new Permission(PermissionKind.EnableContentDeletion, false)); |
| 38 | 179 | | entity.Permissions.Add(new Permission(PermissionKind.EnableContentDownloading, true)); |
| 38 | 180 | | entity.Permissions.Add(new Permission(PermissionKind.EnableMediaConversion, true)); |
| 38 | 181 | | entity.Permissions.Add(new Permission(PermissionKind.EnableMediaPlayback, true)); |
| 38 | 182 | | entity.Permissions.Add(new Permission(PermissionKind.EnablePlaybackRemuxing, true)); |
| 38 | 183 | | entity.Permissions.Add(new Permission(PermissionKind.EnablePublicSharing, true)); |
| 38 | 184 | | entity.Permissions.Add(new Permission(PermissionKind.EnableRemoteAccess, true)); |
| 38 | 185 | | entity.Permissions.Add(new Permission(PermissionKind.EnableSyncTranscoding, true)); |
| 38 | 186 | | entity.Permissions.Add(new Permission(PermissionKind.EnableAudioPlaybackTranscoding, true)); |
| 38 | 187 | | entity.Permissions.Add(new Permission(PermissionKind.EnableLiveTvAccess, true)); |
| 38 | 188 | | entity.Permissions.Add(new Permission(PermissionKind.EnableLiveTvManagement, true)); |
| 38 | 189 | | entity.Permissions.Add(new Permission(PermissionKind.EnableSharedDeviceControl, true)); |
| 38 | 190 | | entity.Permissions.Add(new Permission(PermissionKind.EnableVideoPlaybackTranscoding, true)); |
| 38 | 191 | | entity.Permissions.Add(new Permission(PermissionKind.ForceRemoteSourceTranscoding, false)); |
| 38 | 192 | | entity.Permissions.Add(new Permission(PermissionKind.EnableRemoteControlOfOtherUsers, false)); |
| 38 | 193 | | entity.Permissions.Add(new Permission(PermissionKind.EnableCollectionManagement, false)); |
| 38 | 194 | | entity.Permissions.Add(new Permission(PermissionKind.EnableSubtitleManagement, false)); |
| 38 | 195 | | entity.Permissions.Add(new Permission(PermissionKind.EnableLyricManagement, false)); |
| 38 | 196 | | } |
| | 197 | |
|
| | 198 | | /// <summary> |
| | 199 | | /// Initializes the default preferences. Should only be called on user creation. |
| | 200 | | /// </summary> |
| | 201 | | /// <param name="entity">The entity to update.</param> |
| | 202 | | public static void AddDefaultPreferences(this User entity) |
| | 203 | | { |
| 1064 | 204 | | foreach (var val in Enum.GetValues<PreferenceKind>()) |
| | 205 | | { |
| 494 | 206 | | entity.Preferences.Add(new Preference(val, string.Empty)); |
| | 207 | | } |
| 38 | 208 | | } |
| | 209 | |
|
| | 210 | | private static bool IsParentalScheduleAllowed(AccessSchedule schedule, DateTime date) |
| | 211 | | { |
| 1 | 212 | | var localTime = date.ToLocalTime(); |
| 1 | 213 | | var hour = localTime.TimeOfDay.TotalHours; |
| 1 | 214 | | var currentDayOfWeek = localTime.DayOfWeek; |
| | 215 | |
|
| 1 | 216 | | return schedule.DayOfWeek.Contains(currentDayOfWeek) |
| 1 | 217 | | && hour >= schedule.StartHour |
| 1 | 218 | | && hour <= schedule.EndHour; |
| | 219 | | } |
| | 220 | | } |