asp.net-mvc-4 - 当 AuthorizeAttribute 与角色一起应用时,自定义 RoleProvider 失败

标签 asp.net-mvc-4 acs

我在 ASP.net MVC4 中遇到自定义角色提供程序的问题。我实现了一个非常轻量级的 RoleProvider,在我更改之前它似乎工作正常

[Authorize]
public class BlahController:....
}

[Authorize(Roles="Administrator")]
public class BlahController:....
}

一旦我进行了更改,用户就不再经过身份验证,并且收到 401 错误。这很奇怪,因为我的 RoleProvider 基本上为 IsUSerInRole 返回 true ,并为 GetUserRoles 返回包含“Administrator”的列表。我在自定义 RoleProvider 中的每个方法上都设置了断点,发现没有一个方法被调用。

接下来,我实现了自己的授权属性,该属性继承自 AuthorizeAttribute。在此我添加了断点,以便我可以看到发生了什么。事实证明,底层属性调用的 User.IsInRole() 返回 false。

我确信角色提供程序已正确设置。我的配置文件中有这个

<roleManager enabled="true" defaultProvider="SimplicityRoleProvider">
  <providers>
    <clear />
    <add name="SimplicityRoleProvider" type="Simplicity.Authentication.SimplicityRoleProvider" applicationName="Simplicity" />
  </providers>
</roleManager>

并使用此处描述的方法检查当前的角色提供者是哪个:Reference current RoleProvider instance?产生正确的结果。但是 User.IsInRole 仍然返回 false。

我正在使用 Azure 访问控制服务,但我不明白这与自定义角色提供程序有何不兼容。

如何更正 IPrincipal User,以便 IsInRole 从我的自定义 RoleProvider 返回值?


角色提供者来源:

公共(public)类 SimplicityRoleProvider :RoleProvider { 私有(private) ILog 日志 { 获取;放; }

    public SimplicityRoleProvider()
    {
        log = LogManager.GetLogger("ff");
    }        

    public override void AddUsersToRoles(string[] usernames, string[] roleNames)
    {
        log.Warn(usernames);
        log.Warn(roleNames);
    }

    public override string ApplicationName
    {
        get
        {
            return "Simplicity";
        }
        set
        {

        }
    }

    public override void CreateRole(string roleName)
    {

    }

    public override bool DeleteRole(string roleName, bool throwOnPopulatedRole)
    {
        return true;
    }

    public override string[] FindUsersInRole(string roleName, string usernameToMatch)
    {
        log.Warn(roleName);
        log.Warn(usernameToMatch);
        return new string[0];
    }

    public override string[] GetAllRoles()
    {
        log.Warn("all roles");
        return new string[0];
    }

    public override string[] GetRolesForUser(string username)
    {
        log.Warn(username);
        return new String[] { "Administrator" };
    }

    public override string[] GetUsersInRole(string roleName)
    {
        log.Warn(roleName);
        return new string[0];
    }

    public override bool IsUserInRole(string username, string roleName)
    {
        log.Warn(username);
        log.Warn(roleName);
        return true;
    }

    public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames)
    {

    }

    public override bool RoleExists(string roleName)
    {
        log.Warn(roleName);
        return true;
    }
}

最佳答案

当您拥有自定义 AuthorizeAttribute 和自定义 RoleProvider 时,System.Web.Security.Roles.GetRolesForUser(Username) 似乎不会自动连接。

因此,在自定义 AuthorizeAttribute 中,您需要从数据源检索角色列表,然后将它们与作为参数传递给 AuthorizeAttribute 的角色进行比较。

我在几篇博客文章中看到评论,这些评论暗示手动比较角色是不必要的,但是当我们重写 AuthorizeAttribute 时,我们似乎正在抑制这种行为,需要自己提供它。


无论如何,我将介绍对我有用的内容。希望对大家有所帮助。

我欢迎评论是否有更好的方法来实现这一目标。

请注意,在我的例子中,AuthorizeAttribute 被应用于 ApiController,尽管我不确定这是一条相关信息。

   public class RequestHashAuthorizeAttribute : AuthorizeAttribute
    {
        bool requireSsl = true;

        public bool RequireSsl
        {
            get { return requireSsl; }
            set { requireSsl = value; }
        }

        bool requireAuthentication = true;

        public bool RequireAuthentication
        {
            get { return requireAuthentication; }
            set { requireAuthentication = value; }
        }

        public override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext ActionContext)
        {
            if (Authenticate(ActionContext) || !RequireAuthentication)
            {
                return;
            }
            else
            {
                HandleUnauthorizedRequest(ActionContext);
            }
        }

        protected override void HandleUnauthorizedRequest(HttpActionContext ActionContext)
        {
            var challengeMessage = new System.Net.Http.HttpResponseMessage(HttpStatusCode.Unauthorized);
            challengeMessage.Headers.Add("WWW-Authenticate", "Basic");
            throw new HttpResponseException(challengeMessage);
        }

        private bool Authenticate(System.Web.Http.Controllers.HttpActionContext ActionContext)
        {
            if (RequireSsl && !HttpContext.Current.Request.IsSecureConnection && !HttpContext.Current.Request.IsLocal)
            {
                //TODO: Return false to require SSL in production - disabled for testing before cert is purchased
                //return false;
            }

            if (!HttpContext.Current.Request.Headers.AllKeys.Contains("Authorization")) return false;

            string authHeader = HttpContext.Current.Request.Headers["Authorization"];

            IPrincipal principal;
            if (TryGetPrincipal(authHeader, out principal))
            {
                HttpContext.Current.User = principal;
                return true;
            }
            return false;
        }

        private bool TryGetPrincipal(string AuthHeader, out IPrincipal Principal)
        {
            var creds = ParseAuthHeader(AuthHeader);
            if (creds != null)
            {
                if (TryGetPrincipal(creds[0], creds[1], creds[2], out Principal)) return true;
            }

            Principal = null;
            return false;
        }

        private string[] ParseAuthHeader(string authHeader)
        {
            if (authHeader == null || authHeader.Length == 0 || !authHeader.StartsWith("Basic")) return null;

            string base64Credentials = authHeader.Substring(6);
            string[] credentials = Encoding.ASCII.GetString(Convert.FromBase64String(base64Credentials)).Split(new char[] { ':' });

            if (credentials.Length != 3 || string.IsNullOrEmpty(credentials[0]) || string.IsNullOrEmpty(credentials[1]) || string.IsNullOrEmpty(credentials[2])) return null;

            return credentials;
        }

        private bool TryGetPrincipal(string Username, string ApiKey, string RequestHash, out IPrincipal Principal)
        {
            Username = Username.Trim();
            ApiKey = ApiKey.Trim();
            RequestHash = RequestHash.Trim();

            //is valid username?
            IUserRepository userRepository = new UserRepository();
            UserModel user = null;
            try
            {
                user = userRepository.GetUserByUsername(Username);
            }
            catch (UserNotFoundException)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Unauthorized));
            }

            //is valid apikey?
            IApiRepository apiRepository = new ApiRepository();
            ApiModel api = null;
            try
            {
                api = apiRepository.GetApi(new Guid(ApiKey));
            }
            catch (ApiNotFoundException)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Unauthorized));
            }

            if (user != null)
            {
                //check if in allowed role
                bool isAllowedRole = false;
                string[] userRoles = System.Web.Security.Roles.GetRolesForUser(user.Username);
                string[] allowedRoles = Roles.Split(',');  //Roles is the inherited AuthorizeAttribute.Roles member
                foreach(string userRole in userRoles)
                {
                    foreach (string allowedRole in allowedRoles)
                    {
                        if (userRole == allowedRole)
                        {
                            isAllowedRole = true;
                        }
                    }
                }

                if (!isAllowedRole)
                {
                    throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Unauthorized));
                }

                Principal = new GenericPrincipal(new GenericIdentity(user.Username), userRoles);                
                Thread.CurrentPrincipal = Principal;

                return true;
            }
            else
            {
                Principal = null;
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Unauthorized));
            }
        }
    }

自定义授权属性管理以下 Controller :

public class RequestKeyAuthorizeTestController : ApiController
{
    [RequestKeyAuthorizeAttribute(Roles="Admin,Bob,Administrator,Clue")]
    public HttpResponseMessage Get()
    {
        return Request.CreateResponse(HttpStatusCode.OK, "RequestKeyAuthorizeTestController");
    }
}

在自定义RoleProvider中,我有这个方法:

public override string[] GetRolesForUser(string Username)
{
    IRoleRepository roleRepository = new RoleRepository();
    RoleModel[] roleModels = roleRepository.GetRolesForUser(Username);

    List<string> roles = new List<string>();

    foreach (RoleModel roleModel in roleModels)
    {
        roles.Add(roleModel.Name);
    }

    return roles.ToArray<string>();
}

关于asp.net-mvc-4 - 当 AuthorizeAttribute 与角色一起应用时,自定义 RoleProvider 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10180925/

相关文章:

使用 Google ID 进行 Azure ACS 身份验证不断出现问题

c# - 具有进度可视化的 MVC 4 中的异步操作

c# - 未将对象引用设置为对象(从 View 调用 Razor 模型)

c# - MVC 4 部分 View 导致页面在提交时无响应

windows - 在 Windows 窗体应用程序上使用 Azure ACS

azure - 将 Live ID 中的 Azure ACS 名称标识符与已知用户列表相匹配吗?

acs - 从 Azure ACS 下载登录页面后,如何使返回 URL 再次正常工作?

asp.net-mvc-4 - ASP.NET MVC 4 session 超时

c# - 如何在 ASP.NET MVC 中有效地提供图像

asp.net-mvc-4 - 使用 ASP.NET 将多个基于声明的身份提供者关联到一个用户