jellyfin/MediaBrowser.Model/Users/UserPolicy.cs

111 lines
3.9 KiB
C#
Raw Normal View History

2014-12-20 07:06:27 +01:00
using MediaBrowser.Model.Configuration;
2014-11-30 20:01:33 +01:00
namespace MediaBrowser.Model.Users
{
public class UserPolicy
{
2014-12-20 07:06:27 +01: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 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; }
public bool EnableUserPreferenceAccess { get; set; }
public AccessSchedule[] AccessSchedules { get; set; }
public UnratedItem[] BlockUnratedItems { get; set; }
public bool EnableRemoteControlOfOtherUsers { get; set; }
public bool EnableSharedDeviceControl { get; set; }
public bool EnableLiveTvManagement { get; set; }
public bool EnableLiveTvAccess { get; set; }
public bool EnableMediaPlayback { get; set; }
2015-04-09 07:20:23 +02:00
public bool EnableAudioPlaybackTranscoding { get; set; }
public bool EnableVideoPlaybackTranscoding { get; set; }
2016-08-14 00:27:14 +02:00
public bool EnablePlaybackRemuxing { get; set; }
2015-04-15 05:41:29 +02:00
2014-12-20 07:06:27 +01:00
public bool EnableContentDeletion { get; set; }
2015-02-06 06:39:07 +01:00
public bool EnableContentDownloading { get; set; }
2014-12-20 07:06:27 +01:00
/// <summary>
/// Gets or sets a value indicating whether [enable synchronize].
/// </summary>
/// <value><c>true</c> if [enable synchronize]; otherwise, <c>false</c>.</value>
2014-12-16 06:01:57 +01:00
public bool EnableSync { get; set; }
2015-04-05 17:01:57 +02:00
public bool EnableSyncTranscoding { get; set; }
2014-12-20 07:06:27 +01:00
2014-12-29 21:18:48 +01:00
public string[] EnabledDevices { get; set; }
public bool EnableAllDevices { get; set; }
public string[] EnabledChannels { get; set; }
public bool EnableAllChannels { get; set; }
2015-01-20 06:19:13 +01:00
public string[] EnabledFolders { get; set; }
public bool EnableAllFolders { get; set; }
2015-02-09 07:17:11 +01:00
2015-02-28 14:42:47 +01:00
public int InvalidLoginAttemptCount { get; set; }
2015-04-10 16:01:16 +02:00
public bool EnablePublicSharing { get; set; }
2015-04-15 05:41:29 +02:00
public string[] BlockedMediaFolders { get; set; }
public string[] BlockedChannels { get; set; }
2014-12-20 07:06:27 +01:00
public UserPolicy()
{
2015-04-03 00:26:39 +02:00
EnableSync = true;
2015-04-05 17:01:57 +02:00
EnableSyncTranscoding = true;
2014-12-20 07:06:27 +01:00
EnableMediaPlayback = true;
2015-04-09 07:20:23 +02:00
EnableAudioPlaybackTranscoding = true;
EnableVideoPlaybackTranscoding = true;
2016-08-14 00:27:14 +02:00
EnablePlaybackRemuxing = true;
2015-04-15 05:41:29 +02:00
2015-04-05 17:01:57 +02:00
EnableLiveTvManagement = true;
2014-12-20 07:06:27 +01:00
EnableLiveTvAccess = true;
2015-04-05 17:01:57 +02:00
2015-07-26 23:02:23 +02:00
// Without this on by default, admins won't be able to do this
// Improve in the future
EnableLiveTvManagement = true;
2014-12-20 07:06:27 +01:00
EnableSharedDeviceControl = true;
2015-02-09 07:56:45 +01:00
BlockedTags = new string[] { };
2014-12-20 07:06:27 +01:00
BlockUnratedItems = new UnratedItem[] { };
EnableUserPreferenceAccess = true;
AccessSchedules = new AccessSchedule[] { };
2014-12-29 21:18:48 +01:00
2015-01-20 06:19:13 +01:00
EnableAllChannels = true;
EnabledChannels = new string[] { };
EnableAllFolders = true;
EnabledFolders = new string[] { };
2014-12-29 21:18:48 +01:00
EnabledDevices = new string[] { };
EnableAllDevices = true;
2015-02-06 06:39:07 +01:00
EnableContentDownloading = true;
2015-04-10 16:01:16 +02:00
EnablePublicSharing = true;
2014-12-20 07:06:27 +01:00
}
2014-11-30 20:01:33 +01:00
}
2015-02-09 07:56:45 +01:00
}