2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2021-09-09 13:59:13 +00:00
|
|
|
#pragma warning disable CS1591, CA1819
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2023-06-27 11:58:54 +00:00
|
|
|
using System.ComponentModel;
|
2020-05-15 21:24:01 +00:00
|
|
|
using System.Xml.Serialization;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2020-05-27 00:52:05 +00:00
|
|
|
using AccessSchedule = Jellyfin.Data.Entities.AccessSchedule;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Users
|
|
|
|
{
|
|
|
|
public class UserPolicy
|
|
|
|
{
|
2021-02-20 22:13:04 +00:00
|
|
|
public UserPolicy()
|
|
|
|
{
|
|
|
|
IsHidden = true;
|
2023-02-13 14:42:04 +00:00
|
|
|
EnableCollectionManagement = false;
|
2023-10-15 13:53:53 +00:00
|
|
|
EnableSubtitleManagement = false;
|
2021-02-20 22:13:04 +00:00
|
|
|
|
|
|
|
EnableContentDeletion = false;
|
|
|
|
EnableContentDeletionFromFolders = Array.Empty<string>();
|
|
|
|
|
|
|
|
EnableSyncTranscoding = true;
|
|
|
|
EnableMediaConversion = true;
|
|
|
|
|
|
|
|
EnableMediaPlayback = true;
|
|
|
|
EnableAudioPlaybackTranscoding = true;
|
|
|
|
EnableVideoPlaybackTranscoding = true;
|
|
|
|
EnablePlaybackRemuxing = true;
|
|
|
|
ForceRemoteSourceTranscoding = false;
|
|
|
|
EnableLiveTvManagement = true;
|
|
|
|
EnableLiveTvAccess = true;
|
|
|
|
|
|
|
|
// Without this on by default, admins won't be able to do this
|
|
|
|
// Improve in the future
|
|
|
|
EnableLiveTvManagement = true;
|
|
|
|
|
|
|
|
EnableSharedDeviceControl = true;
|
|
|
|
|
|
|
|
BlockedTags = Array.Empty<string>();
|
2023-01-20 02:28:52 +00:00
|
|
|
AllowedTags = Array.Empty<string>();
|
2021-02-20 22:13:04 +00:00
|
|
|
BlockUnratedItems = Array.Empty<UnratedItem>();
|
|
|
|
|
|
|
|
EnableUserPreferenceAccess = true;
|
|
|
|
|
|
|
|
AccessSchedules = Array.Empty<AccessSchedule>();
|
|
|
|
|
|
|
|
LoginAttemptsBeforeLockout = -1;
|
|
|
|
|
|
|
|
MaxActiveSessions = 0;
|
2022-11-28 17:06:56 +00:00
|
|
|
MaxParentalRating = null;
|
2021-02-20 22:13:04 +00:00
|
|
|
|
|
|
|
EnableAllChannels = true;
|
|
|
|
EnabledChannels = Array.Empty<Guid>();
|
|
|
|
|
|
|
|
EnableAllFolders = true;
|
|
|
|
EnabledFolders = Array.Empty<Guid>();
|
|
|
|
|
|
|
|
EnabledDevices = Array.Empty<string>();
|
|
|
|
EnableAllDevices = true;
|
|
|
|
|
|
|
|
EnableContentDownloading = true;
|
|
|
|
EnablePublicSharing = true;
|
|
|
|
EnableRemoteAccess = true;
|
|
|
|
SyncPlayAccess = SyncPlayUserAccessType.CreateAndJoinGroups;
|
|
|
|
}
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance is administrator.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is administrator; otherwise, <c>false</c>.</value>
|
|
|
|
public bool IsAdministrator { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance is hidden.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
|
|
|
|
public bool IsHidden { get; set; }
|
|
|
|
|
2023-02-13 14:42:04 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance can manage collections.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
|
2023-06-27 11:58:54 +00:00
|
|
|
[DefaultValue(false)]
|
2023-02-13 14:42:04 +00:00
|
|
|
public bool EnableCollectionManagement { get; set; }
|
|
|
|
|
2023-10-15 13:53:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance can manage subtitles.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is allowed; otherwise, <c>false</c>.</value>
|
|
|
|
[DefaultValue(false)]
|
|
|
|
public bool EnableSubtitleManagement { get; set; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether this instance is disabled.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is disabled; otherwise, <c>false</c>.</value>
|
|
|
|
public bool IsDisabled { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the max parental rating.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The max parental rating.</value>
|
|
|
|
public int? MaxParentalRating { get; set; }
|
|
|
|
|
|
|
|
public string[] BlockedTags { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2023-01-20 02:28:52 +00:00
|
|
|
public string[] AllowedTags { get; set; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableUserPreferenceAccess { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-15 21:24:01 +00:00
|
|
|
public AccessSchedule[] AccessSchedules { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public UnratedItem[] BlockUnratedItems { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableRemoteControlOfOtherUsers { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableSharedDeviceControl { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableRemoteAccess { get; set; }
|
|
|
|
|
|
|
|
public bool EnableLiveTvManagement { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableLiveTvAccess { get; set; }
|
|
|
|
|
|
|
|
public bool EnableMediaPlayback { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableAudioPlaybackTranscoding { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableVideoPlaybackTranscoding { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnablePlaybackRemuxing { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-12-16 04:59:46 +00:00
|
|
|
public bool ForceRemoteSourceTranscoding { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
public bool EnableContentDeletion { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string[] EnableContentDeletionFromFolders { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableContentDownloading { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether [enable synchronize].
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if [enable synchronize]; otherwise, <c>false</c>.</value>
|
|
|
|
public bool EnableSyncTranscoding { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableMediaConversion { get; set; }
|
|
|
|
|
|
|
|
public string[] EnabledDevices { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableAllDevices { get; set; }
|
|
|
|
|
2020-08-27 16:00:06 +00:00
|
|
|
public Guid[] EnabledChannels { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableAllChannels { get; set; }
|
|
|
|
|
2020-08-27 16:00:06 +00:00
|
|
|
public Guid[] EnabledFolders { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnableAllFolders { get; set; }
|
|
|
|
|
|
|
|
public int InvalidLoginAttemptCount { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-09-13 15:16:33 +00:00
|
|
|
public int LoginAttemptsBeforeLockout { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-10-04 15:50:00 +00:00
|
|
|
public int MaxActiveSessions { get; set; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool EnablePublicSharing { get; set; }
|
|
|
|
|
2020-08-27 16:00:06 +00:00
|
|
|
public Guid[] BlockedMediaFolders { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-08-27 16:00:06 +00:00
|
|
|
public Guid[] BlockedChannels { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
public int RemoteClientBitrateLimit { get; set; }
|
2020-05-15 21:24:01 +00:00
|
|
|
|
|
|
|
[XmlElement(ElementName = "AuthenticationProviderId")]
|
|
|
|
public string AuthenticationProviderId { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
public string PasswordResetProviderId { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-04-04 15:59:16 +00:00
|
|
|
/// <summary>
|
2020-05-06 21:42:53 +00:00
|
|
|
/// Gets or sets a value indicating what SyncPlay features the user can access.
|
2020-04-04 15:59:16 +00:00
|
|
|
/// </summary>
|
2020-05-06 21:42:53 +00:00
|
|
|
/// <value>Access level to SyncPlay features.</value>
|
2020-12-07 09:33:15 +00:00
|
|
|
public SyncPlayUserAccessType SyncPlayAccess { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
2018-12-27 21:43:48 +00:00
|
|
|
}
|