码迷,mamicode.com
首页 > 其他好文 > 详细

NancyFx 2.0的开源框架的使用-Authentication

时间:2017-05-09 22:28:10      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:log   other   author   build   pst   url   startup   views   super   

新建一个空的项目

技术分享

技术分享

新建好了空的项目以后,接着通过NuGet安装一下三个包

  • Nancy
  • Nancy.Hosting.Aspnet
  • Nancy.ViewEnglines.Razor

技术分享

然后在项目中添加Models,Module,Views三个文件夹,并在Models中添加UserModel类

        public string  Username { get; set; }
        public UserModel(string username)
        {
            this.Username = username;
        }

技术分享

然后往Module文件夹里面添加MainModule类

 Get("/", Lexan => { return View["index.cshtml"]; });
            Get("/login", Lexan => { return View["login.cshtml",this.Request.Query.returnUrl]; });

技术分享

再继续添加SecureModule类,AnotherVerySecureModule类

        public SecureModule():base("/secure")
        {
            this.RequiresAuthentication();
            Get("/",Lexan=>
            {
                var model = new UserModel(this.Context.CurrentUser.Identity.Name);
                return View["secure.cshtml",model];
            });
        }

技术分享

 public AnotherVerySecureModule():base("/superSecure")
        {
            this.RequiresClaims(Lexan=>Lexan.Type==ClaimTypes.Role&&Lexan.Value=="SuperSecure");
            Get("/",Lexan=> 
            {
                var model = new UserModel(this.Context.CurrentUser.Identity.Name);
                return View["superSecure.cshtml",model];
            });
        }

技术分享

根目录添加AuthenticationBootstrapper类

        protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
        {
            base.ApplicationStartup(container, pipelines);
            pipelines.BeforeRequest += ctx =>
              {
                  var username = ctx.Request.Query.username;
                  if (username.HasValue)
                  {
                      ctx.CurrentUser = new ClaimsPrincipal(new ClaimsIdentity(BuildClaims(username), "querystring"));
                  }
                  return null;
              };
            pipelines.AfterRequest += ctx =>
              {
                  if (ctx.Response.StatusCode==HttpStatusCode.Unauthorized)
                  {
                      ctx.Response = new RedirectResponse("/login?retutnUrl="+ Uri.EscapeDataString(ctx.Request.Path));
                  }
              };
        }
        private static IEnumerable<Claim> BuildClaims(string userName)
        {
            var claims = new List<Claim>();
            if (String.Equals(userName,"Lexan",StringComparison.OrdinalIgnoreCase))
            {
                claims.Add(new Claim(ClaimTypes.Role,"SuperSecure"));
            }
            return claims;
        }

技术分享

继续在Views里添加视图index,login,secure,superSecure

技术分享

 

技术分享

 

 

技术分享

 

 

技术分享

 

 

再然后修改一下Web.config如下图

技术分享

 

运行如下图

技术分享

 

技术分享

技术分享

 

谢谢观看!

NancyFx 2.0的开源框架的使用-Authentication

标签:log   other   author   build   pst   url   startup   views   super   

原文地址:http://www.cnblogs.com/R00R/p/6832931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!