#region namespace using System; using System.Collections.Generic; using System.Text; using System.Configuration.Provider; using System.Web.Security; using System.Collections.Specialized; #endregion namespace umbraco.providers { /// /// Custom Roles Provider for Umbraco /// public class UsersRoleProvider : RoleProvider { #region private string _ApplicationName; #endregion #region Properties /// /// Gets or sets the name of the application to store and retrieve role information for. /// /// /// The name of the application to store and retrieve role information for. public override string ApplicationName { get { return _ApplicationName; } set { if (string.IsNullOrEmpty(value)) throw new ProviderException("ApplicationName cannot be empty."); if (value.Length > 0x100) throw new ProviderException("Provider application name too long."); _ApplicationName = value; } } #endregion #region Initialization Method /// /// Initializes the provider. /// /// The friendly name of the provider. /// A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider. /// The name of the provider is null. /// An attempt is made to call /// on a provider /// after the provider has already been initialized. /// The name of the provider has a length of zero. public override void Initialize(string name, NameValueCollection config) { // Initialize values from web.config if (config == null) throw new ArgumentNullException("config"); if (name == null || name.Length == 0) name = "UmbracoRoleProvider"; if (String.IsNullOrEmpty(config["description"])) { config.Remove("description"); config.Add("description", "Umbraco Role provider"); } // Initialize the abstract base class. base.Initialize(name, config); this._ApplicationName = config["applicationName"]; if (string.IsNullOrEmpty(this._ApplicationName)) this._ApplicationName = SecUtility.GetDefaultAppName(); } #endregion #region Methods /// /// Adds the specified user names to the specified roles for the configured applicationName. /// /// A string array of user names to be added to the specified roles. /// A string array of the role names to add the specified user names to. public override void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new Exception("The method or operation is not implemented."); } /// /// Adds a new role to the data source for the configured applicationName. /// /// The name of the role to create. public override void CreateRole(string roleName) { throw new Exception("The method or operation is not implemented."); } /// /// Removes a role from the data source for the configured applicationName. /// /// The name of the role to delete. /// If true, throw an exception if roleName has one or more members and do not delete roleName. /// /// true if the role was successfully deleted; otherwise, false. /// public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw new Exception("The method or operation is not implemented."); } /// /// Gets an array of user names in a role where the user name contains the specified user name to match. /// /// The role to search in. /// The user name to search for. /// /// A string array containing the names of all the users where the user name matches usernameToMatch and the user is a member of the specified role. /// public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw new Exception("The method or operation is not implemented."); } /// /// Gets a list of all the roles for the configured applicationName. /// /// /// A string array containing the names of all the roles stored in the data source for the configured applicationName. /// public override string[] GetAllRoles() { throw new Exception("The method or operation is not implemented."); } /// /// Gets a list of the roles that a specified user is in for the configured applicationName. /// /// The user to return a list of roles for. /// /// A string array containing the names of all the roles that the specified user is in for the configured applicationName. /// public override string[] GetRolesForUser(string username) { throw new Exception("The method or operation is not implemented."); } /// /// Gets a list of users in the specified role for the configured applicationName. /// /// The name of the role to get the list of users for. /// /// A string array containing the names of all the users who are members of the specified role for the configured applicationName. /// public override string[] GetUsersInRole(string roleName) { throw new Exception("The method or operation is not implemented."); } /// /// Gets a value indicating whether the specified user is in the specified role for the configured applicationName. /// /// The user name to search for. /// The role to search in. /// /// true if the specified user is in the specified role for the configured applicationName; otherwise, false. /// public override bool IsUserInRole(string username, string roleName) { throw new Exception("The method or operation is not implemented."); } /// /// Removes the specified user names from the specified roles for the configured applicationName. /// /// A string array of user names to be removed from the specified roles. /// A string array of role names to remove the specified user names from. public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { throw new Exception("The method or operation is not implemented."); } /// /// Gets a value indicating whether the specified role name already exists in the role data source for the configured applicationName. /// /// The name of the role to search for in the data source. /// /// true if the role name already exists in the data source for the configured applicationName; otherwise, false. /// public override bool RoleExists(string roleName) { throw new Exception("The method or operation is not implemented."); } #endregion } }