jellyfin/MediaBrowser.Model/Users/UserPolicy.cs

197 lines
6.4 KiB
C#
Raw Normal View History

#nullable disable
2021-09-09 09:59:13 -04:00
#pragma warning disable CS1591, CA1819
2020-02-03 19:49:27 -05:00
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
2020-05-15 17:24:01 -04:00
using System.Xml.Serialization;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
2020-05-26 20:52:05 -04:00
using AccessSchedule = Jellyfin.Data.Entities.AccessSchedule;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Users
{
public class UserPolicy
{
public UserPolicy()
{
IsHidden = true;
EnableCollectionManagement = false;
EnableSubtitleManagement = false;
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>();
AllowedTags = Array.Empty<string>();
BlockUnratedItems = Array.Empty<UnratedItem>();
EnableUserPreferenceAccess = true;
AccessSchedules = Array.Empty<AccessSchedule>();
LoginAttemptsBeforeLockout = -1;
MaxActiveSessions = 0;
MaxParentalRating = null;
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 18:27:57 -05: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; }
/// <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>
[DefaultValue(false)]
public bool EnableCollectionManagement { get; set; }
/// <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; }
/// <summary>
/// Gets or sets a value indicating whether this user can manage lyrics.
/// </summary>
[DefaultValue(false)]
public bool EnableLyricManagement { get; set; }
2018-12-27 18:27:57 -05: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 17:43:52 -04:00
public string[] AllowedTags { get; set; }
2018-12-27 18:27:57 -05:00
public bool EnableUserPreferenceAccess { get; set; }
2020-06-15 17:43:52 -04:00
2020-05-15 17:24:01 -04:00
public AccessSchedule[] AccessSchedules { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public UnratedItem[] BlockUnratedItems { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableRemoteControlOfOtherUsers { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableSharedDeviceControl { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableRemoteAccess { get; set; }
public bool EnableLiveTvManagement { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableLiveTvAccess { get; set; }
public bool EnableMediaPlayback { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableAudioPlaybackTranscoding { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableVideoPlaybackTranscoding { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnablePlaybackRemuxing { get; set; }
2020-06-15 17:43:52 -04:00
2019-12-15 23:59:46 -05:00
public bool ForceRemoteSourceTranscoding { get; set; }
2018-12-27 18:27:57 -05:00
public bool EnableContentDeletion { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string[] EnableContentDeletionFromFolders { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05: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 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableMediaConversion { get; set; }
public string[] EnabledDevices { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableAllDevices { get; set; }
2020-08-27 12:00:06 -04:00
public Guid[] EnabledChannels { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableAllChannels { get; set; }
2020-08-27 12:00:06 -04:00
public Guid[] EnabledFolders { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool EnableAllFolders { get; set; }
public int InvalidLoginAttemptCount { get; set; }
2020-06-15 17:43:52 -04:00
public int LoginAttemptsBeforeLockout { get; set; }
2018-12-27 18:27:57 -05:00
public int MaxActiveSessions { get; set; }
2018-12-27 18:27:57 -05:00
public bool EnablePublicSharing { get; set; }
2020-08-27 12:00:06 -04:00
public Guid[] BlockedMediaFolders { get; set; }
2020-06-15 17:43:52 -04:00
2020-08-27 12:00:06 -04:00
public Guid[] BlockedChannels { get; set; }
2018-12-27 18:27:57 -05:00
public int RemoteClientBitrateLimit { get; set; }
2020-05-15 17:24:01 -04:00
[XmlElement(ElementName = "AuthenticationProviderId")]
[Required(AllowEmptyStrings = false)]
2020-05-15 17:24:01 -04:00
public string AuthenticationProviderId { get; set; }
2020-06-15 17:43:52 -04:00
[Required(AllowEmptyStrings= false)]
public string PasswordResetProviderId { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
2020-05-06 17:42:53 -04:00
/// Gets or sets a value indicating what SyncPlay features the user can access.
/// </summary>
2020-05-06 17:42:53 -04:00
/// <value>Access level to SyncPlay features.</value>
public SyncPlayUserAccessType SyncPlayAccess { get; set; }
2018-12-27 18:27:57 -05:00
}
2018-12-27 16:43:48 -05:00
}