微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

当用户没有权限时如何重定向到特殊页面?

如何解决当用户没有权限时如何重定向到特殊页面?

注册一个用户,然后将其设置为停用。我想在用户填写表单时激活用户

  await _userManager.AddClaimAsync(user.Id,new Claim("DeActive","1"));

注册后将用户重定向到管理区域,我想将用户重定向到每个链接菜单中的特殊页面,直到用户填写特殊表单。

如何为该区域的所有控制器操作设置重定向页面

解决方法

public class MyAuthorizeAttribute: AuthorizeAttribute
{
 protected override bool AuthorizeCore(HttpContextBase httpContext)
 {
    var authorized = base.AuthorizeCore(httpContext);
    if (!authorized)
    {
        // The user is not authorized => no need to go any further
        return false;
    }

    // We have an authenticated user,let's get his username
    string authenticatedUser = httpContext.User.Identity.Name;

    // and check if he has completed his profile
    if (!this.IsProfileCompleted(authenticatedUser))
    {
        // we store some key into the current HttpContext so that 
        // the HandleUnauthorizedRequest method would know whether it
        // should redirect to the Login or CompleteProfile page
        httpContext.Items["redirectToCompleteProfile"] = true;
        return false;
    }

    return true;
 }

 protected override void HandleUnauthorizedRequest(AuthorizationContext filterContext)
 {
    if (filterContext.HttpContext.Items.Contains("redirectToCompleteProfile"))
    {
        var routeValues = new RouteValueDictionary(new
        {
            controller = "someController",action = "someAction",});
        filterContext.Result = new RedirectToRouteResult(routeValues);
    }
    else
    {
        base.HandleUnauthorizedRequest(filterContext);
    }
 }

 private bool IsProfileCompleted(string user)
 {
    // You know what to do here => go hit your database to verify if the
    // current user has already completed his profile by checking
    // the corresponding field
    throw new NotImplementedException();
 }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。