zoukankan      html  css  js  c++  java
  • 利用Claims实现菜单访问控制

    整体数据表结构示意图

    其中

    AspNetUsers, AspNetUserLogins, AspNetRoles, AspNetUserRoles, and ApplicationUserClaims 是 Identity 中默认带的表结构

    我们在这里增加

    AspNetRoleMenu, MenuPermissions, Permissions, and AspNetMenu 4个数据表

    why traverse the whole menu and permission tree when we haven't even used the most obvious choice.

    当我们还没有使用最明显的选择时,为什么要遍历整个菜单和权限树呢?

    用这种方法时间菜单访问控制,有一个表很重要就是ApplicationUserClaims!

    Identity中的Claims有两个好处:

    1.加载用户时,会自动加载Claims。

    2.避免增加其他表。

    Identity/MenuManager.cs

    public ICollection<MenuPermissionGetMenuPermissionsByUser(ApplicationUser user)
    {
        if (user == null)
        {
            return new Collection<MenuPermission>();
        }
    
        return _context.Roles         .Include(role => role.MenuItems.Select(menu => menu.Permissions))         .Where(role => role.Users.Any(tableUser => tableUser.UserId == user.Id))         .SelectMany(role => role.MenuItems.SelectMany(roleMenu => roleMenu.Permissions))         .ToList(); }

    public ICollection<MenuItemGetMenuByUser(ApplicationUser user,     Func<MenuPermissionboolfilterFunc null) {     var items GetMenuPermissionsByUser(user);
        var records filterFunc == null          items.ToList()          items.Where(filterFunc).ToList();
        return records         .GroupBy(menuPermission => menuPermission.RoleMenu.MenuItem)         .Select(grouping => grouping.Key)         .ToList(); }

    Identity/ApplicationDbInitializer.cs

    .
    .
    // Let's get our updated Ids var menuManager new MenuManager(context);
    // DevPerms - No, it's not a new developer hairstyle. :-p var devPerms menuManager.GetMenuPermissionsByUser(devUser);
    // Add our claims to each role.
    // Developer foreach (var menuPermission in devPerms) {     devUser.Claims.Add(new ApplicationUserClaim     {         UserId devUser.Id,         ClaimType menuPermission.RoleMenu.MenuId.ToString(),         ClaimValue menuPermission.Permission.Name     }); } context.SaveChanges();

    // Administrator var adminPerms menuManager.GetMenuPermissionsByUser(adminUser);
    foreach (var menuPermission in adminPerms) {     adminUser.Claims.Add(new ApplicationUserClaim     {         UserId adminUser.Id,         ClaimType menuPermission.RoleMenu.MenuId.ToString(),         ClaimValue menuPermission.Permission.Name     }); } context.SaveChanges();

    Our goal here was to add Claims to each user based on their roles so we have an easy way to reference what they can and can't do.

    The ApplicationUserClaim is made up of the following properties:

    • UserId - Who is the owner of this Claim?
    • ClaimType - This will be the MenuItem's Id.
    • ClaimValue - What do they have permission to do on this menu item?

    This makes our menu system even easier.

    Here's the good news:

    • We don't need to change anything in the controller
    • This makes our Menu System even more flexible by adding any permission we want and we merely check the user's claim instead of hitting the database.

    Minimal changes for a maximum impact.

    If we run our application and log in as Frank, you can see we now have claims to check against our application as to what Frank can and can't do.

    Screenshot of Debugging Microsoft Identity with Frank's Claims.

  • 相关阅读:
    零售定价(最终价格计算)(三)
    SAP数据表(一)商品表
    BizTalk 2006 R2 如何实现EDI报文的接收处理
    Simulate a Windows Service using ASP.NET to run scheduled jobs
    看曾士强评胡雪岩
    Smart Client Software Factory 初试
    Asp.net Dynamic Data之四定义字段的显示/编辑模板和自定义验证逻辑
    To set a 64bit mode IIS installation to 32bit mode
    集中日志查询平台方案(Draft)
    .net开发框架比较
  • 原文地址:https://www.cnblogs.com/dog12345/p/6962893.html
Copyright © 2011-2022 走看看