UserRoleNavMappingLogic.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using CZFW.Framework.Logic;
  2. using CZFW.Framework.Model.ViewModel;
  3. using CZKJ.GBRS2.Entity;
  4. using CZKJ.GBRS2.Interface;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Text;
  8. using System.Linq;
  9. using CZFW.Framework.Model.Entity;
  10. namespace CZKJ.GBRS2.Logic
  11. {
  12. public class UserRoleNavMappingLogic : LogicBase<RoleMappingEntity>,IUserRoleNavMapping
  13. {
  14. public ResultModel AddNavByRole(int roleId, IList<int> navIds)
  15. {
  16. var existingIds = Queryable.Where(X=>X.RoleId== roleId).Select(x=>x.NavId).ToList();
  17. var noExistingIds = navIds.Where(x => !existingIds.Contains(x)).ToList();
  18. var roleNavs = new List<RoleMappingEntity>();
  19. foreach (var item in noExistingIds)
  20. {
  21. var entity = new RoleMappingEntity()
  22. {
  23. RoleId= roleId,
  24. NavId=item
  25. };
  26. roleNavs.Add(entity);
  27. }
  28. var res = AddEntities(roleNavs);
  29. return res;
  30. }
  31. public IList<NavigationModel> GetNavigationTreeByRoleId(int roleId)
  32. {
  33. var list = (from x in Queryable where x.RoleId == roleId join nav in DbContext.Set<NavigationEntity>() on x.NavId equals nav.Id
  34. select new NavigationModel()
  35. {
  36. Id=nav.Id,
  37. Icon=nav.Icon,
  38. Mark=nav.Mark,
  39. Name = nav.Name,
  40. Url = nav.Url,
  41. ParentMark=nav.ParentMark,
  42. Description=nav.Description
  43. }
  44. ).ToList();
  45. var res = SetTree(list, "0");
  46. return res;
  47. }
  48. public ResultModel RemoveNavByRole(int roleId,int navId)
  49. {
  50. return RemoveEntities(x => x.RoleId == roleId && x.NavId == navId);
  51. }
  52. public IList<NavigationModel> SetTree(IList<NavigationModel> list, string parentMark)
  53. {
  54. var result = new List<NavigationModel>();
  55. foreach (var item in list)
  56. {
  57. if (item.Mark != "0" && item.ParentMark == parentMark)
  58. {
  59. result.Add(item);
  60. item.Children = SetTree(list, item.Mark);
  61. }
  62. }
  63. result = result.OrderByDescending(x => x.SortOrder).ToList();
  64. return result;
  65. }
  66. }
  67. }