< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Users.UserPolicy
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Users/UserPolicy.cs
Line coverage
100%
Covered lines: 35
Uncovered lines: 0
Coverable lines: 35
Total lines: 199
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Users/UserPolicy.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591, CA1819
 3
 4using System;
 5using System.ComponentModel;
 6using System.ComponentModel.DataAnnotations;
 7using System.Xml.Serialization;
 8using Jellyfin.Data.Enums;
 9using Jellyfin.Database.Implementations.Enums;
 10using AccessSchedule = Jellyfin.Database.Implementations.Entities.AccessSchedule;
 11
 12namespace MediaBrowser.Model.Users
 13{
 14    public class UserPolicy
 15    {
 16        public UserPolicy()
 17        {
 13118            IsHidden = true;
 13119            EnableCollectionManagement = false;
 13120            EnableSubtitleManagement = false;
 21
 13122            EnableContentDeletion = false;
 13123            EnableContentDeletionFromFolders = Array.Empty<string>();
 24
 13125            EnableSyncTranscoding = true;
 13126            EnableMediaConversion = true;
 27
 13128            EnableMediaPlayback = true;
 13129            EnableAudioPlaybackTranscoding = true;
 13130            EnableVideoPlaybackTranscoding = true;
 13131            EnablePlaybackRemuxing = true;
 13132            ForceRemoteSourceTranscoding = false;
 13133            EnableLiveTvManagement = true;
 13134            EnableLiveTvAccess = true;
 35
 36            // Without this on by default, admins won't be able to do this
 37            // Improve in the future
 13138            EnableLiveTvManagement = true;
 39
 13140            EnableSharedDeviceControl = true;
 41
 13142            BlockedTags = Array.Empty<string>();
 13143            AllowedTags = Array.Empty<string>();
 13144            BlockUnratedItems = Array.Empty<UnratedItem>();
 45
 13146            EnableUserPreferenceAccess = true;
 47
 13148            AccessSchedules = Array.Empty<AccessSchedule>();
 49
 13150            LoginAttemptsBeforeLockout = -1;
 51
 13152            MaxActiveSessions = 0;
 13153            MaxParentalRating = null;
 54
 13155            EnableAllChannels = true;
 13156            EnabledChannels = Array.Empty<Guid>();
 57
 13158            EnableAllFolders = true;
 13159            EnabledFolders = Array.Empty<Guid>();
 60
 13161            EnabledDevices = Array.Empty<string>();
 13162            EnableAllDevices = true;
 63
 13164            EnableContentDownloading = true;
 13165            EnablePublicSharing = true;
 13166            EnableRemoteAccess = true;
 13167            SyncPlayAccess = SyncPlayUserAccessType.CreateAndJoinGroups;
 13168        }
 69
 70        /// <summary>
 71        /// Gets or sets a value indicating whether this instance is administrator.
 72        /// </summary>
 73        /// <value><c>true</c> if this instance is administrator; otherwise, <c>false</c>.</value>
 74        public bool IsAdministrator { get; set; }
 75
 76        /// <summary>
 77        /// Gets or sets a value indicating whether this instance is hidden.
 78        /// </summary>
 79        /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
 80        public bool IsHidden { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets a value indicating whether this instance can manage collections.
 84        /// </summary>
 85        /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
 86        [DefaultValue(false)]
 87        public bool EnableCollectionManagement { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets a value indicating whether this instance can manage subtitles.
 91        /// </summary>
 92        /// <value><c>true</c> if this instance is allowed; otherwise, <c>false</c>.</value>
 93        [DefaultValue(false)]
 94        public bool EnableSubtitleManagement { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets a value indicating whether this user can manage lyrics.
 98        /// </summary>
 99        [DefaultValue(false)]
 100        public bool EnableLyricManagement { get; set; }
 101
 102        /// <summary>
 103        /// Gets or sets a value indicating whether this instance is disabled.
 104        /// </summary>
 105        /// <value><c>true</c> if this instance is disabled; otherwise, <c>false</c>.</value>
 106        public bool IsDisabled { get; set; }
 107
 108        /// <summary>
 109        /// Gets or sets the max parental rating.
 110        /// </summary>
 111        /// <value>The max parental rating.</value>
 112        public int? MaxParentalRating { get; set; }
 113
 114        public int? MaxParentalSubRating { get; set; }
 115
 116        public string[] BlockedTags { get; set; }
 117
 118        public string[] AllowedTags { get; set; }
 119
 120        public bool EnableUserPreferenceAccess { get; set; }
 121
 122        public AccessSchedule[] AccessSchedules { get; set; }
 123
 124        public UnratedItem[] BlockUnratedItems { get; set; }
 125
 126        public bool EnableRemoteControlOfOtherUsers { get; set; }
 127
 128        public bool EnableSharedDeviceControl { get; set; }
 129
 130        public bool EnableRemoteAccess { get; set; }
 131
 132        public bool EnableLiveTvManagement { get; set; }
 133
 134        public bool EnableLiveTvAccess { get; set; }
 135
 136        public bool EnableMediaPlayback { get; set; }
 137
 138        public bool EnableAudioPlaybackTranscoding { get; set; }
 139
 140        public bool EnableVideoPlaybackTranscoding { get; set; }
 141
 142        public bool EnablePlaybackRemuxing { get; set; }
 143
 144        public bool ForceRemoteSourceTranscoding { get; set; }
 145
 146        public bool EnableContentDeletion { get; set; }
 147
 148        public string[] EnableContentDeletionFromFolders { get; set; }
 149
 150        public bool EnableContentDownloading { get; set; }
 151
 152        /// <summary>
 153        /// Gets or sets a value indicating whether [enable synchronize].
 154        /// </summary>
 155        /// <value><c>true</c> if [enable synchronize]; otherwise, <c>false</c>.</value>
 156        public bool EnableSyncTranscoding { get; set; }
 157
 158        public bool EnableMediaConversion { get; set; }
 159
 160        public string[] EnabledDevices { get; set; }
 161
 162        public bool EnableAllDevices { get; set; }
 163
 164        public Guid[] EnabledChannels { get; set; }
 165
 166        public bool EnableAllChannels { get; set; }
 167
 168        public Guid[] EnabledFolders { get; set; }
 169
 170        public bool EnableAllFolders { get; set; }
 171
 172        public int InvalidLoginAttemptCount { get; set; }
 173
 174        public int LoginAttemptsBeforeLockout { get; set; }
 175
 176        public int MaxActiveSessions { get; set; }
 177
 178        public bool EnablePublicSharing { get; set; }
 179
 180        public Guid[] BlockedMediaFolders { get; set; }
 181
 182        public Guid[] BlockedChannels { get; set; }
 183
 184        public int RemoteClientBitrateLimit { get; set; }
 185
 186        [XmlElement(ElementName = "AuthenticationProviderId")]
 187        [Required(AllowEmptyStrings = false)]
 188        public string AuthenticationProviderId { get; set; }
 189
 190        [Required(AllowEmptyStrings= false)]
 191        public string PasswordResetProviderId { get; set; }
 192
 193        /// <summary>
 194        /// Gets or sets a value indicating what SyncPlay features the user can access.
 195        /// </summary>
 196        /// <value>Access level to SyncPlay features.</value>
 197        public SyncPlayUserAccessType SyncPlayAccess { get; set; }
 198    }
 199}

Methods/Properties

.ctor()