Table of Contents

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
object
UserInfoProvider
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:

  1. User defined by settings key CMSDefaultUserID
  2. User with username 'administrator'
  3. Any other global admin
public static UserInfo AdministratorUser { get; }

Property Value

UserInfo

AdministratorUserName

Gets the default system administrator user name in the listed order of preferences:

  1. User defined by settings key CMSDefaultUserID
  2. User with username 'administrator'
  3. Any other global admin
  4. 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 UserInfo

Object 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 string

Source user name

fullname string

Source full name

Returns

string

GetRolesForUser(string)

Returns all roles for specified user.

public static string[] GetRolesForUser(string userName)

Parameters

userName string

User 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 UserInfo

User info for retrieving the role table

where string

Where condition

orderBy string

Order by

topN int

Top N records

columns string

Columns 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 string

User name

roleName string

Role 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 UserInfo

Info 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 UserInfo

Info 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

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 UserInfo

User info object to check

Returns

bool