14

我尝试使用此代码检查用户是否在 Application_BeginRequest 和 Application_AuthenticateRequest 中担任角色,但它不起作用。在 BeginRequest 代码永远不会被命中并且 Authenticate 它被一些请求命中并且探查器没有出现。

仅检查 Request.IsLocal 工作正常。

if(Request.IsAuthenticated)
{
  if(User.IsInRole("Admin");
    MiniProfiler.Start(); 
}

任何想法或为什么它不起作用或更好的方法?

[更新]我接受了遮阳篷,但因为我没有完全得到它的工作而取消了它

我做了以下,但探查器一开始没有出现。几次尝试后,它开始出现,即使我尝试使用隐身模式访问该网站,所以没有 cookie。

protected void Application_PostAuthorizeRequest(Object sender, EventArgs e)
{
        if (User.IsInRole("Admin"))
        {
            HttpCookie cookie =   HttpContext.Current.Request.Cookies.Get("RoleProfiler");
            if (cookie == null)
            {
                cookie = new HttpCookie("RoleProfiler");
                cookie.Value = "yes";
                cookie.Expires = DateTime.Now.AddDays(1d);
                Response.Cookies.Add(cookie);
            }
        }
 }

我正在检查

protected void Application_BeginRequest(Object sender, EventArgs e)
{            
        HttpCookie cookie = HttpContext.Current.Request.Cookies.Get("RoleProfiler");
        if ((cookie != null) && (cookie.Value == "yes") )
        {
            MvcMiniProfiler.MiniProfiler.Start();
        }
 }

并在请求结束时结束。

protected void Application_EndRequest()
{
        MvcMiniProfiler.MiniProfiler.Stop();
}

[Update2]结束问题,忽略这个,我被 outputcache 拥有。

4

3 回答 3

18

cookie feanz 提到的是一个方便的技巧,第二种方法是无条件地进行分析,然后为未经身份验证的用户放弃会话:

protected void Application_BeginRequest()
{
   MvcMiniProfiler.MiniProfiler.Start();  
}
protected void Application_AuthenticateRequest(Object sender, EventArgs e)
{
  if(!CurrentUserIsAllowedToSeeProfiler())
  {
    MvcMiniProfiler.MiniProfiler.Stop(discardResults: true);
  }
}
于 2011-06-14T21:42:14.233 回答
8

开始请求发生在用户在请求生命周期中完全通过身份验证之前。

我通过添加一个cookie来解决这个问题,如果用户在请求被验证时是一个角色(在你的情况下是“管理员”),那么你可以在开始请求时检查这个cookie并初始化分析器。

它不会第一次工作,但以后每次都应该。

于 2011-06-14T20:01:46.923 回答
5

这是我的 2cent。

        context.AcquireRequestState += (sender, e) =>
        {
            // Check debug in session. Can be set from Querystring. (?debug=true)
            if (HttpContext.Current.Session != null && HttpContext.Current.Session["Debug"] != null)
            {
                try{
                    bool debug = (bool)HttpContext.Current.Session["Debug"];
                    if (debug == true) 
                        MiniProfiler.Start();
                    else 
                        MiniProfiler.Stop(discardResults: true);
                }
                catch{ 
                    MiniProfiler.Stop(discardResults: true);
                }

            }// Or always show if Administrator.
            else if (HttpContext.Current.User != null && HttpContext.Current.User.Identity.IsAuthenticated)
            {
                bool admin = HttpContext.Current.User.IsInRole("Administrator");
                if (admin == false)
                {
                    MiniProfiler.Stop(discardResults: true);
                }
            }
            else
            {
                MiniProfiler.Stop(discardResults: true);
            }
        };
于 2012-12-11T10:59:00.050 回答