2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
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
|
|
|
|
{
|
|
|
|
/// <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 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
|
|
|
|
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>
|
|
|
|
public SyncPlayAccess SyncPlayAccess { get; set; }
|
2020-04-04 15:59:16 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public UserPolicy()
|
|
|
|
{
|
2019-09-19 19:16:57 +00:00
|
|
|
IsHidden = true;
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2019-02-28 12:50:32 +00:00
|
|
|
EnableContentDeletion = false;
|
2018-12-27 21:43:48 +00:00
|
|
|
EnableContentDeletionFromFolders = Array.Empty<string>();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
EnableSyncTranscoding = true;
|
|
|
|
EnableMediaConversion = true;
|
|
|
|
|
|
|
|
EnableMediaPlayback = true;
|
|
|
|
EnableAudioPlaybackTranscoding = true;
|
|
|
|
EnableVideoPlaybackTranscoding = true;
|
|
|
|
EnablePlaybackRemuxing = true;
|
2019-12-16 04:59:46 +00:00
|
|
|
ForceRemoteSourceTranscoding = false;
|
2018-12-27 23:27:57 +00:00
|
|
|
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;
|
|
|
|
|
2018-12-27 21:43:48 +00:00
|
|
|
BlockedTags = Array.Empty<string>();
|
|
|
|
BlockUnratedItems = Array.Empty<UnratedItem>();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
EnableUserPreferenceAccess = true;
|
|
|
|
|
2018-12-27 21:43:48 +00:00
|
|
|
AccessSchedules = Array.Empty<AccessSchedule>();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-03-16 07:18:52 +00:00
|
|
|
LoginAttemptsBeforeLockout = -1;
|
|
|
|
|
2020-10-05 00:24:35 +00:00
|
|
|
MaxActiveSessions = 0;
|
2020-10-04 15:50:00 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
EnableAllChannels = true;
|
2020-08-27 16:00:06 +00:00
|
|
|
EnabledChannels = Array.Empty<Guid>();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
EnableAllFolders = true;
|
2020-08-27 16:00:06 +00:00
|
|
|
EnabledFolders = Array.Empty<Guid>();
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2018-12-27 21:43:48 +00:00
|
|
|
EnabledDevices = Array.Empty<string>();
|
2018-12-27 23:27:57 +00:00
|
|
|
EnableAllDevices = true;
|
|
|
|
|
|
|
|
EnableContentDownloading = true;
|
|
|
|
EnablePublicSharing = true;
|
|
|
|
EnableRemoteAccess = true;
|
2020-05-06 21:42:53 +00:00
|
|
|
SyncPlayAccess = SyncPlayAccess.CreateAndJoinGroups;
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-27 21:43:48 +00:00
|
|
|
}
|