Class UserInfoProvider
- Namespace
- CMS.Membership
- Assembly
- CMS.Membership.dll
Class providing UserInfo management.
[ProviderInterface(typeof(IUserInfoProvider))]
public class UserInfoProvider : AbstractInfoProvider<UserInfo, UserInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<UserInfo>, IBulkInfoProvider<UserInfo>, IUserInfoProvider, IInfoProvider<UserInfo>, IInfoByIdProvider<UserInfo>, IInfoByNameProvider<UserInfo>, IInfoByGuidProvider<UserInfo>
- Inheritance
-
objectUserInfoProvider
- Implements
- Inherited Members
- Extension Methods
Constructors
UserInfoProvider()
Creates new instance of UserInfoProvider.
public UserInfoProvider()
Fields
DEFAULT_ADMIN_USERNAME
Administrator user name
public const string DEFAULT_ADMIN_USERNAME = "administrator"
Field Value
- string
Properties
AdministratorUser
Gets the default system administrator user in the listed order of preferences:
- User defined by settings key CMSDefaultUserID
- User with username 'administrator'
- Any other global admin
public static UserInfo AdministratorUser { get; }
Property Value
AdministratorUserName
Gets the default system administrator user name in the listed order of preferences:
- User defined by settings key CMSDefaultUserID
- User with username 'administrator'
- Any other global admin
- Defaults to 'administrator' if no global admin is found
public static string AdministratorUserName { get; }
Property Value
- string
InvalidCodenameErrorMessageKey
Resource key name used to indicate an invalid codename.
protected override string InvalidCodenameErrorMessageKey { get; }
Property Value
- string
PublicUserName
Gets the user name for public user.
public static string PublicUserName { get; }
Property Value
- string
UserEnabledWhereCondition
Where condition indicating that user is enabled
[Obsolete("Property was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static string UserEnabledWhereCondition { get; }
Property Value
- string
Methods
DeleteInfo(UserInfo)
Deletes the object to the database.
protected override void DeleteInfo(UserInfo info)
Parameters
info
UserInfoObject to delete
GetAdministratorCount()
Gets the count administrator of administrators in application.
public static int GetAdministratorCount()
Returns
- int
GetFormattedUserName(string, string)
Returns formatted username in format: fullname (username). Allows you to customize how the usernames will look like throughout the admin UI.
public static string GetFormattedUserName(string username, string fullname)
Parameters
username
stringSource user name
fullname
stringSource full name
Returns
- string
GetRolesForUser(string)
Returns all roles for specified user.
public static string[] GetRolesForUser(string userName)
Parameters
userName
stringUser name.
Returns
- string[]
GetUserRolesInternal(UserInfo, string, string, int, string)
Returns the table of the user roles.
protected virtual DataTable GetUserRolesInternal(UserInfo userInfo, string where, string orderBy, int topN, string columns)
Parameters
userInfo
UserInfoUser info for retrieving the role table
where
stringWhere condition
orderBy
stringOrder by
topN
intTop N records
columns
stringColumns to get
Returns
- DataTable
IsUserInRole(string, string)
Returns true if the user is a member of the role.
[Obsolete("Method was not intended for public use and will be removed in the next version. Use UserInfo.IsInRole(string) method.")]
[ObsoleteSince(28, 2)]
public static bool IsUserInRole(string userName, string roleName)
Parameters
userName
stringUser name
roleName
stringRole name
Returns
- bool
Remarks
The check also accounts for membership roles and global roles.
Set(UserInfo)
Inserts or updates the info
object in the underlying data store.
public override void Set(UserInfo info)
Parameters
info
UserInfoInfo object to be inserted or updated.
Exceptions
- ArgumentNullException
Thrown when
info
is null.
Validate(UserInfo)
Validates whether the info
object's state satisfies domain specific constraints and returns the validation result.
public override InfoValidationResult Validate(UserInfo info)
Parameters
info
UserInfoInfo object to be validated.
Returns
- InfoValidationResult
Returns validation result with IsValid set to true, if
info
is valid. Otherwise returns result with the flag set to false and a corresponding error message.
Remarks
Implement IInfoValidator<TInfo> and register it into the system to perform domain specific validation for UserInfo. The system invokes the registered validators as part of validation performed by this method.
The default implementation validates the code name to contain only allowed characters and to be unique.
Exceptions
- ArgumentNullException
Thrown when
info
is null.
- See Also
-
IInfoValidator<TInfo>
ValidateCodeName(UserInfo)
Validates the user name. Returns true if the user name is valid and follows rules defined by CMS.Membership.UserInfoProvider.UsernameRegExp.
public override bool ValidateCodeName(UserInfo info)
Parameters
info
UserInfoUser info object to check
Returns
- bool