Try our conversational search powered by Generative AI!

Views: 25307
Number of votes: 3
Average rating:

Membership and Roles in EPiServer CMS 5

Contents

Introduction

EPiServer CMS 5 uses the built-in Membership and Role provider feature in ASP.NET. This feature was introduced with ASP.NET 2.0 and exposes a pluggable authentication and authorization architecture. In previous versions of EPiServer this information was stored in the EPiServer database, even if you used the configurable authentication chain to allow users in other systems to log on, EPiServer would create a wrapper object for these users in order to be able to store information about the user, and to assign a unique ID used to secure resources in the system. With the use of the membership and role provider system this has changed. EPiServer is more losely coupled to the user and roles, which scales better and allows for even more customization.

When you log in to EPiServer, the username and password you provide will be sent to the membership handler in ASP.NET. It will check the configuration to see which provider should be responsible for authenticating the user. If the user can be authenticated the next step is to look up which roles this user should be a member of. The roles correspond to the groups in EPiServer. The core role API will look up the responsible role provider by looking for the default provider in web.config and ask the provider which roles the user should be a member of. You can write your own providers, intercepting this logic and both authenticate and authorize users.

Available Membership and Role Providers

The providers (both membership and role) available when installing EPiServer are:

  • WindowsProvider
  • SqlServerProvider
  • MultiplexingProvider

The Windows provider allows authentication and authorization of local windows accounts and domain accounts available on the server. The role provider will give you the windows groups you're a member of.

The SQL Server provider allows you to authenticate and authorize against accounts stored in an SQL Server or SQL Server Express database. The tables needed to store this information can be added by using the %systemroot%\Microsoft.NET\Framework\vNNN\aspnet_regsql.exe application. The EPiServer CMS 5 database has already been configured with the neccessary tables. If you want to store these users somewhere else, run the application and change the provider configuration to point to another data source.

The Multiplexing provider replaces the authentication chain in EPiServer 4. The job of the Multiplexing membership and role providers are to allow more than one provider to take part in the authentication and authorization process. By default, ASP.NET only allow one provider at a time. With the Multiplexing provider you can have as many as you'd like.

Configuration

The membership and role providers are specified in different configuration sections in web.config.

This example shows three membership and role providers, with the WindowsMembershipProvider and WindowsRoleProvider set as default providers. This means that the other providers will not be used for authentication or authorization

<system.web>
  <roleManager enabled="true"
               defaultProvider="WindowsRoleProvider"
               cacheRolesInCookie="true">
    <providers>
      <clear/>
      <add name="MultiplexingRoleProvider"
           type="EPiServer.Security.MultiplexingRoleProvider, EPiServer"
           defaultProviderName="SqlServerRoleProvider"
           provider1="WindowsRoleProvider"
           provider2="SqlServerRoleProvider"
           providerMap1="WindowsMembershipProvider"
           providerMap2="SqlServermembershipProvider" />
      <add name="WindowsRoleProvider"
           applicationName="EPiServerSample"
           type="EPiServer.Security.WindowsRoleProvider, EPiServer" />
      <add name="SqlServerRoleProvider"
           connectionStringName="EPiServerDB"
           applicationName="EPiServerSample"
           type="System.Web.Security.SqlRoleProvider,
            System.Web, Version=2.0.0.0, Culture=neutral,
            PublicKeyToken=b03f5f7f11d50a3a" />
    </providers>
  </roleManager>

  <membership defaultProvider="WindowsMembershipProvider"
              userIsOnlineTimeWindow="10">
    <providers>
      <clear/>
      <add name="MultiplexingMembershipProvider"
           type="EPiServer.Security.MultiplexingMembershipProvider, EPiServer"
           defaultProviderName="SqlServerMembershipProvider"
           provider1="WindowsMembershipProvider"
           provider2="SqlServerMembershipProvider" />
      <add name="WindowsMembershipProvider"
           type="EPiServer.Security.WindowsMembershipProvider, EPiServer"
           deletePrefix="BUILTIN\" />
      <add name="SqlServerMembershipProvider"
           type="System.Web.Security.SqlMembershipProvider, System.Web,
           Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
           connectionStringName="EPiServerDB"
           requiresQuestionAndAnswer="false"
           applicationName="EPiServerSample"
           requiresUniqueEmail="true"
           passwordFormat="Hashed"
           maxInvalidPasswordAttempts="5"
           minRequiredPasswordLength="7"
           minRequiredNonalphanumericCharacters="0"
           passwordAttemptWindow="10"
           passwordStrengthRegularExpression="" />
    </providers>
  </membership>
</system.web>
 

Before adding new providers you usually have to clear the provider collection from existing providers. Because ASP.NET makes applications inherit configuration settings from the levels above them in the application hierarchy you will get any providers configured in machine.config and the machine wide web.config files. You can clear the collection with the <clear /> element.

Creating Users and Groups

You can create users and groups from admin mode in EPiServer and any other interface that can talk to the provider base classes. However, not all providers allow this. E.g. the WindowsProvider does not allow you to create new users, but it will allow you to log on as an existing one.

The default provider, as specified in web.config, will be used when you attempt to create a new user in Admin mode. If you're using the MultiplexingProvider, its default provider will be used.

Virtual Roles

In EPiServer CMS 5 you have the possibility to create virtual roles in addition to the standard roles. A virtual role is a role who is created programmatically. This means that it is not dependant on static settings in the database and that the criterias for access rights for this role can change on the fly (in accordance to your code). You could, for example, create a role that gives certain permissions during certain hours of the day. Another possible scenario would be to give a user permissions based on the criteria that he/she is member of both role1 and role2.

The virtual roles are configured in the <virtualRoles> section of the web.config. See the following example of an "Anonymous" role:

<virtualRoles replacePrincipal="true">
  <providers>
    <add name="Anonymous"
    type="EPiServer.Security.AnonymousRole, EPiServer" />
  </providers>
</virtualRoles>

Predefined Virtual Roles in EPiServer CMS 5

EPiServer delivers four virtual roles out of the box:

  1. Anonymous
  2. Authenticated
  3. Creator
  4. Everyone
  5. Administrator

Apart from the obvious roles here, Administrator and Creator could use some explanation. The reason for the virtual role Administrator is to create localized versions of the administrator account depending on language. The swedish word would, for example, be Administratör.

Creator is only used when evaluating AccessControlLists in EPiServer and it will return true if the current principal is the same as the Creator for an ACL.

See the sub topic Virtual Roles in the Membership and role Providers section of the SDK documentation.

<<A name=Creating_your_own_provider>

Creating Your Own Provider

If you wish to create your own providers we recommend you to read the article Building Custom Providers for ASP.NET 2.0 Membership on MSDN.com.

Comments

Please login to comment.